/* =============================================
   SPEED SE STYLE - LAYOUT MODERNO
   ============================================= */

/* Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 16px;
color: #333;
background: #f8f9fa;
line-height: 1.6;
}

a {
color: inherit;
text-decoration: none;
transition: all 0.3s ease;
}

img {
max-width: 100%;
height: auto;
border: 0;
}

/* =============================================
   TOP BAR - INFORMAÇÕES
   ============================================= */
.info-bar {
background: #1a1a2e;
color: #fff;
padding: 12px 0;
font-size: 14px;
}

.info-bar-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 15px;
}

.info-bar a {
color: #fff;
font-weight: 500;
}

.info-bar a:hover {
color: #00d4ff;
}

/* =============================================
   MENU PRINCIPAL - GRADIENTE ROXO/ROSA
   ============================================= */
#menu_funcionalidades {
background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 1000;
display: flex;
justify-content: center;
align-items: center;
min-height: 70px;
}

#menu_funcionalidades > div {
flex: 1;
max-width: 200px;
text-align: center;
color: #fff;
font-weight: 600;
font-size: 14px;
padding: 25px 15px;
cursor: pointer;
position: relative;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 0.5px;
}

#menu_funcionalidades > div:hover {
background: rgba(255,255,255,0.15);
color: #00d4ff;
}

#menu_funcionalidades > div::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 3px;
background: #00d4ff;
transition: width 0.3s ease;
}

#menu_funcionalidades > div:hover::after {
width: 80%;
}

/* =============================================
   HERO BANNER
   ============================================= */
.header-banner {
position: relative;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 350px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.header-banner img {
width: 100%;
display: block;
object-fit: cover;
}

/* =============================================
   LOGIN BAR
   ============================================= */
.login-bar {
background: #fff;
padding: 20px 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.login-bar form {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
align-items: center;
gap: 10px;
flex-wrap: wrap;
justify-content: center;
}

.login-bar img {
display: inline-block;
vertical-align: middle;
}

.cp_user, .cp_senha {
padding: 12px 16px;
border: 2px solid #e0e0e0;
border-radius: 25px;
font-size: 14px;
transition: all 0.3s;
min-width: 150px;
}

.cp_user:focus, .cp_senha:focus {
outline: none;
border-color: #6366f1;
box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}

/* =============================================
   CONTENT WRAPPER
   ============================================= */
.content-wrapper {
max-width: 1200px;
margin: 0 auto;
padding: 60px 20px;
display: grid;
grid-template-columns: 300px 1fr;
gap: 40px;
}

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar {
position: sticky;
top: 90px;
align-self: start;
}

.modern-sidebar {
background: #fff;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
margin-bottom: 30px;
}

.sidebar-menu {
list-style: none;
}

.sidebar-menu li {
border-bottom: 1px solid #f0f0f0;
}

.sidebar-menu li:last-child {
border-bottom: none;
}

.sidebar-menu a {
display: flex;
align-items: center;
padding: 16px 20px;
color: #333;
font-weight: 500;
transition: all 0.3s;
}

.sidebar-menu a:hover {
background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
color: #fff;
padding-left: 30px;
}

/* =============================================
   MAIN CONTENT
   ============================================= */
.main-content {
min-height: 400px;
}

.content-section {
background: #fff;
padding: 30px;
border-radius: 15px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
margin-bottom: 30px;
transition: all 0.3s;
}

.content-section:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.content-section h2 {
font-size: 28px;
font-weight: 700;
background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 25px;
}

.content-section h3 {
font-size: 20px;
color: #333;
margin-bottom: 15px;
font-weight: 600;
}

/* =============================================
   NOTÍCIAS
   ============================================= */
.noticias {
display: grid;
gap: 15px;
}

.noticias a {
display: block;
padding: 20px;
background: #f8f9fa;
border-radius: 10px;
color: #333;
font-weight: 500;
transition: all 0.3s;
border-left: 4px solid transparent;
}

.noticias a:hover {
background: linear-gradient(135deg, rgba(99,102,241,0.1) 0%, rgba(139,92,246,0.1) 100%);
border-left-color: #6366f1;
transform: translateX(10px);
}

/* =============================================
   FORMULÁRIOS
   ============================================= */
.form-group {
margin-bottom: 20px;
}

.form-label {
display: block;
margin-bottom: 8px;
font-weight: 600;
color: #333;
font-size: 14px;
}

.form-input {
width: 100%;
padding: 14px 18px;
border: 2px solid #e0e0e0;
border-radius: 10px;
font-size: 14px;
transition: all 0.3s;
}

.form-input:focus {
outline: none;
border-color: #6366f1;
box-shadow: 0 0 0 4px rgba(99,102,241,0.1);
}

/* =============================================
   BOTÕES
   ============================================= */
.botao {
background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
color: #fff;
padding: 14px 32px;
border: none;
border-radius: 25px;
cursor: pointer;
font-size: 16px;
font-weight: 600;
transition: all 0.3s;
box-shadow: 0 4px 15px rgba(99,102,241,0.3);
}

.botao:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(99,102,241,0.5);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
color: #fff;
padding: 50px 20px 30px;
text-align: center;
}

.site-footer a {
color: #00d4ff;
}

.site-footer a:hover {
color: #fff;
}

/* =============================================
   FEATURES GRID
   ============================================= */
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
margin-top: 30px;
}

.feature-card {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 30px;
border-radius: 15px;
color: #fff;
text-align: center;
transition: all 0.3s;
}

.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 35px rgba(102,126,234,0.4);
}

.feature-card h3 {
color: #fff;
margin-bottom: 15px;
font-size: 22px;
}

.feature-card p {
font-size: 14px;
opacity: 0.9;
}

/* =============================================
   RESPONSIVO
   ============================================= */
@media (max-width: 768px) {
.content-wrapper {
s: 1fr;
g: 30px 15px;
}

.sidebar {
: static;
}

#menu_funcionalidades {
wrap;
}

#menu_funcionalidades > div {
1 1 50%;
g: 20px 10px;
t-size: 12px;
}

.info-bar-content {
: column;
: center;
}

.login-bar form {
: column;
-items: stretch;
}

.cp_user, .cp_senha {
100%;
}
}

/* Hero Content */
.hero-content {
position: relative;
z-index: 1;
text-align: center;
color: #fff;
padding: 60px 20px;
max-width: 900px;
}

.hero-content h1 {
font-size: 48px;
font-weight: 700;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
font-size: 22px;
margin-bottom: 30px;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
opacity: 0.95;
}

/* Responsivo Hero */
@media (max-width: 768px) {
.hero-content h1 {
t-size: 32px;
}

.hero-content p {
t-size: 16px;
}
}
