/* =====================
RESET E BASE (igual ao sobre)
===================== */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins', sans-serif;
}

body{
background:#f8faf9;
color:#2d3e3a;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.section{
padding:100px 0;
}

.bg-light{
background:#f0f5f3;
}

.center{
text-align:center;
}

h2{
font-size:36px;
margin-bottom:20px;
color:#1e4b3c;
position:relative;
display:inline-block;
}

h2.center{
display:block;
}

h2:after{
content:'';
position:absolute;
bottom:-10px;
left:0;
width:70px;
height:4px;
background:linear-gradient(90deg,#2f9e73,#6cc3a0);
border-radius:2px;
}

h2.center:after{
left:50%;
transform:translateX(-50%);
}

.subtitle{
text-align:center;
font-size:18px;
color:#5a6f69;
margin-bottom:50px;
}

/* =====================
TEXTOS JUSTIFICADOS
===================== */
p, .servico-principal-card p, .sistema-descricao p, 
.modulo-card p, .modulo-descricao, .modulo-atencao p,
.modulo-obs, .modulo-obs-modulo2 p, .destaque-card p,
.especialista-experiencia p, .footer-col p {
    text-align: justify;
}

/* Exceções - mantém centralizado onde o design exige */
.hero-servicos .subtitulo,
.cta p,
.subtitle,
.footer-developed p {
    text-align: center;
}

/* Listas mantêm alinhamento à esquerda para melhor legibilidade */
.modulo-funcionalidades li, 
.modulo-lista-programas li, 
.modulo-diferenciais li,
.especialista-formacao li {
    text-align: left;
}

/* Especialista - ajustes específicos */
.especialista-formacao p,
.especialista-experiencia p:first-child {
    text-align: left;
    font-weight: 600;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    p, .servico-principal-card p, .sistema-descricao p, 
    .modulo-card p, .modulo-descricao, .modulo-atencao p,
    .modulo-obs, .modulo-obs-modulo2 p, .destaque-card p,
    .especialista-experiencia p {
        text-align: left;
    }
}

/* =====================
HEADER (igual ao sobre)
===================== */
header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    background:#fff;
    box-shadow:0 4px 20px rgba(0,0,0,0.08);
    z-index:3000;
}

header.shadow-hidden{
box-shadow:none;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px; /* Altura padronizada */
    padding: 0;
}

/* Versão SUPER ampliada */
.logo {
    display: flex;
    align-items: center;
    height: 80px;
    position: relative;
}

.logo-img {
    height: 110px; /* Bem maior */
    width: auto;
    max-width: 400px;
    object-fit: contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10; /* Fica sobre outros elementos se necessário */
}

/* Garante que o menu não sobreponha */
nav {
    position: relative;
    z-index: 5;
}

/* Ajuste mobile */
@media (max-width: 900px) {
    .logo-img {
        height: 110px;
        max-width: 250px;
    }
}

nav{
display:flex;
gap:30px;
}

nav a{
text-decoration:none;
color:#2d3e3a;
font-weight:600;
transition:0.2s;
position:relative;
padding:5px 0;
}

nav a.active{
color:#2f9e73;
}

nav a.active:after{
content:'';
position:absolute;
bottom:0;
left:0;
width:100%;
height:2px;
background:#2f9e73;
}

nav a:after{
content:'';
position:absolute;
bottom:0;
left:0;
width:0;
height:2px;
background:#2f9e73;
transition:width 0.3s;
}

nav a:hover:after{
width:100%;
}

nav a:hover{
color:#2f9e73;
}

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
color:#2f9e73;
z-index:3600;
position:relative;
}

.menu-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
opacity:0;
visibility:hidden;
transition:0.3s;
z-index:2500;
}

.menu-overlay.active{
opacity:1;
visibility:visible;
}

/* =====================
HERO SERVIÇOS
===================== */
.hero-servicos{
background:linear-gradient(135deg,#1a4b3a,#2f9e73);
color:#fff;
padding:150px 0 100px;
text-align:center;
position:relative;
overflow:hidden;
margin-top:80px;
}

.hero-servicos:before{
content:'';
position:absolute;
top:-30%;
right:-30%;
width:150%;
height:150%;
background:rgba(255,255,255,0.1);
transform:rotate(30deg);
}

.hero-servicos .container{
position:relative;
z-index:2;
}

.hero-servicos h1{
font-size:48px;
margin-bottom:20px;
font-weight:700;
text-shadow:0 2px 5px rgba(0,0,0,0.2);
}

.hero-servicos .subtitulo{
font-size:20px;
max-width:800px;
margin:0 auto;
opacity:0.95;
}

/* =====================
SERVIÇOS PRINCIPAIS
===================== */
.servicos-principais-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:50px;
}

.servico-principal-card{
background:#fff;
padding:35px 25px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
transition:0.3s;
border:1px solid rgba(47,158,115,0.1);
}

.servico-principal-card:hover{
transform:translateY(-8px);
border-color:#2f9e73;
box-shadow:0 20px 40px rgba(47,158,115,0.15);
}

.servico-principal-icon{
width:60px;
height:60px;
background:#e8f3ee;
border-radius:15px;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:20px;
}

.servico-principal-icon i{
font-size:28px;
color:#2f9e73;
}

.servico-principal-card h3{
font-size:20px;
margin-bottom:15px;
color:#1e4b3c;
}

.servico-principal-card p{
color:#5a6f69;
font-size:15px;
line-height:1.7;
}

/* =====================
ESPECIALISTA
===================== */
.especialista-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:start;
}

.especialista-info h2{
margin-bottom:20px;
}

.especialista-info h3{
font-size:28px;
color:#1e4b3c;
margin-bottom:10px;
}

.especialista-cargo{
font-size:16px;
color:#2f9e73;
font-weight:500;
margin-bottom:30px;
}

.especialista-formacao,
.especialista-experiencia{
margin-bottom:30px;
}

.especialista-formacao p,
.especialista-experiencia p{
margin-bottom:10px;
color:#1e4b3c;
font-weight:600;
}

.especialista-formacao ul,
.especialista-experiencia ul{
list-style:none;
}

.especialista-formacao li,
.especialista-experiencia li{
margin-bottom:8px;
color:#3d4f4a;
display:flex;
align-items:center;
gap:10px;
}

.especialista-formacao li i{
color:#2f9e73;
font-size:16px;
}

.especialista-experiencia p:not(:first-child){
font-weight:400;
color:#3d4f4a;
margin-bottom:15px;
}

.especialista-destaques{
display:flex;
flex-direction:column;
gap:20px;
}

.destaque-card{
background:#e8f3ee;
padding:25px;
border-radius:15px;
display:flex;
gap:15px;
align-items:flex-start;
transition:0.3s;
}

.destaque-card:hover{
transform:translateX(5px);
box-shadow:0 10px 25px rgba(47,158,115,0.15);
}

.destaque-card i{
font-size:24px;
color:#2f9e73;
flex-shrink:0;
}

.destaque-card p{
color:#1e4b3c;
font-size:15px;
line-height:1.6;
}

/* =====================
LS CONECTAEDU
===================== */
.sistema-descricao{
max-width:900px;
margin:0 auto 50px;
}

.sistema-descricao p{
margin-bottom:20px;
color:#3d4f4a;
font-size:16px;
line-height:1.8;
}

.modulo-titulo{
font-size:28px;
margin-top:60px;
margin-bottom:10px;
}

.modulos-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
margin-top:50px;
}

.modulo-card{
background:#fff;
padding:40px;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,0.05);
border:1px solid rgba(47,158,115,0.1);
}

.modulo-header{
display:flex;
align-items:center;
gap:15px;
margin-bottom:25px;
}

.modulo-numero{
width:40px;
height:40px;
background:#2f9e73;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:20px;
font-weight:700;
}

.modulo-header h4{
font-size:22px;
color:#1e4b3c;
}

.modulo-header h4 span{
font-size:16px;
font-weight:400;
color:#5a6f69;
}

.modulo-descricao{
color:#1e4b3c;
font-weight:500;
margin-bottom:20px;
padding-bottom:20px;
border-bottom:1px solid rgba(47,158,115,0.2);
}

.modulo-funcionalidades{
list-style:none;
margin:20px 0;
}

.modulo-funcionalidades li{
margin-bottom:10px;
color:#3d4f4a;
display:flex;
gap:10px;
font-size:14px;
}

.modulo-funcionalidades li i{
color:#2f9e73;
font-size:14px;
margin-top:3px;
}

.modulo-programas{
margin:15px 0 10px;
color:#1e4b3c;
}

.modulo-lista-programas{
list-style:none;
margin-bottom:20px;
}

.modulo-lista-programas li{
margin-bottom:8px;
color:#3d4f4a;
display:flex;
gap:10px;
font-size:14px;
}

.modulo-lista-programas li i{
color:#2f9e73;
font-size:12px;
margin-top:4px;
}

.modulo-funcionalidades-titulo{
margin-top:20px;
margin-bottom:10px;
color:#1e4b3c;
}

.modulo-diferenciais{
background:#e8f3ee;
padding:20px;
border-radius:15px;
margin:20px 0;
}

.modulo-diferenciais p{
color:#1e4b3c;
margin-bottom:10px;
}

.modulo-diferenciais ul{
list-style:none;
}

.modulo-diferenciais li{
margin-bottom:8px;
color:#3d4f4a;
display:flex;
gap:10px;
font-size:14px;
}

.modulo-diferenciais li i{
color:#f1c40f;
font-size:14px;
margin-top:3px;
}

.modulo-atencao{
background:#fff3cd;
border-left:4px solid #ffc107;
padding:15px;
border-radius:10px;
margin:20px 0;
display:flex;
gap:10px;
align-items:flex-start;
}

.modulo-atencao i{
color:#ffc107;
font-size:20px;
}

.modulo-atencao p{
color:#856404;
font-size:14px;
line-height:1.5;
}

.modulo-obs{
color:#1e4b3c;
font-size:14px;
font-style:italic;
}

.modulo-obs-modulo2{
background:#e8f3ee;
padding:20px;
border-radius:15px;
margin-top:20px;
}

.modulo-obs-modulo2 p{
color:#1e4b3c;
font-size:14px;
line-height:1.6;
}

/* =====================
CTA (igual ao sobre)
===================== */
.cta{
background:linear-gradient(135deg,#1a4b3a,#2f9e73);
color:#fff;
text-align:center;
padding:100px 0;
position:relative;
overflow:hidden;
margin-bottom:0;
}

.cta:before{
content:'';
position:absolute;
top:-30%;
left:-30%;
width:200%;
height:200%;
background:rgba(255,255,255,0.05);
transform:rotate(35deg);
}

.cta .container{
position:relative;
z-index:2;
}

.cta h2{
font-size:42px;
margin-bottom:20px;
color:#fff;
}

.cta h2:after{
background:#fff;
}

.cta p{
font-size:18px;
margin-bottom:30px;
opacity:0.95;
max-width:600px;
margin-left:auto;
margin-right:auto;
}

.btn{
background:#fff;
color:#1e4b3c;
padding:16px 40px;
border-radius:50px;
text-decoration:none;
font-weight:600;
display:inline-flex;
align-items:center;
gap:10px;
font-size:18px;
transition:0.3s;
border:2px solid transparent;
}

.btn:hover{
background:transparent;
color:#fff;
border-color:#fff;
transform:scale(1.05);
}

.btn i{
font-size:22px;
}

/* =====================
FOOTER (igual ao sobre)
===================== */
.footer {
    background: #1f2e2a;
    color: #fff;
    padding-top: 60px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 15px;
    color: #6be3b3;
}

.footer-col p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-col i {
    margin-right: 8px;
    color: #6be3b3;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding: 20px 0;
    font-size: 13px;
    color: #ccc;
}

/* =====================
ANIMAÇÃO (igual ao sobre)
===================== */
.reveal{
opacity:0;
transform:translateY(40px);
transition:0.8s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

.sistema-layout {
    display: grid;
    grid-template-columns: 1fr 0.8fr; /* Texto 1 parte, imagem 0.8 parte */
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 1px solid rgba(47,158,115,0.1);
}

.sistema-texto-col {
    padding-right: 20px;
}

.sistema-texto-col .sistema-descricao {
    text-align: left;
    margin: 0;
}

.sistema-texto-col .sistema-descricao p {
    margin-bottom: 20px;
    color: #3d4f4a;
    font-size: 16px;
    line-height: 1.8;
}

.sistema-imagem-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sistema-imagem-container {
    width: 100%;
    max-width: 400px; /* Limite máximo para imagem não ficar enorme */
    margin: 0 auto;
}

.sistema-imagem-vertical {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 20px;
    filter: drop-shadow(0 10px 20px rgba(47,158,115,0.2));
}

/* Responsividade */
@media (max-width: 900px) {
    .sistema-layout {
        grid-template-columns: 1fr; /* Uma coluna em mobile */
        gap: 30px;
        padding: 30px;
    }
    
    .sistema-texto-col {
        padding-right: 0;
    }
    
    .sistema-imagem-container {
        max-width: 300px; /* Menor em mobile */
    }
    
    .sistema-imagem-vertical {
        max-height: 500px;
    }
}

@media (max-width: 600px) {
    .sistema-layout {
        padding: 20px;
    }
    
    .sistema-imagem-container {
        max-width: 250px;
    }
}

/* =====================
RESPONSIVIDADE
===================== */
@media(max-width:1000px){
.servicos-principais-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:900px){
.menu-toggle{
display:block;
}

nav{
position:fixed;
top:0;
right:-320px;
width:300px;
height:100vh;
background:#fff;
flex-direction:column;
padding:100px 30px;
gap:25px;
box-shadow:-5px 0 30px rgba(0,0,0,0.2);
transition:0.3s;
z-index:3500;
}

nav.active{
right:0;
}

nav a{
font-size:18px;
color:#2f9e73;
}

nav a:after{
display:none;
}

.especialista-container,
.diferencial-container,
.modulos-grid{
grid-template-columns:1fr;
gap:40px;
}

.hero-servicos h1{
font-size:36px;
}

.cta h2{
font-size:32px;
}

.footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
}
}

@media(max-width:600px){
.section{
padding:70px 0;
}

.servicos-principais-grid{
grid-template-columns:1fr;
}

.hero-servicos h1{
font-size:28px;
}

.cta h2{
font-size:26px;
}

.modulo-card{
padding:25px;
}

.modulo-header{
flex-direction:column;
text-align:center;
gap:10px;
}

.modulo-header h4{
font-size:20px;
}
}

/* Garantir que o header não tenha sombra quando o menu estiver ativo */
nav.active ~ header,
header:has(~ nav.active) {
    box-shadow: none !important;
}

/* =====================
BOTÃO FLUTUANTE WHATSAPP
===================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366, #128C7E);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

/* Efeito de pulsação */
@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    }
}

/* Hover effect */
.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, #128C7E, #075E54);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.7);
    animation: none; /* Para a animação no hover */
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: #075E54;
    color: #fff;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #075E54;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 85px;
}

/* Versão para dispositivos móveis */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-tooltip {
        display: none; /* Esconde tooltip no mobile */
    }
}

/* Versão para telas muito pequenas */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 15px;
        right: 15px;
    }
}

/* =====================
DESENVOLVIDO POR ALLTECH
===================== */
.footer-developed {
    text-align: center;
    padding: 15px 0 25px;
    background: #1f2e2a;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-developed p {
    font-size: 13px;
    color: #8a9e98;
    letter-spacing: 0.5px;
    text-align: center;
}

.footer-developed a {
    color: #6be3b3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-developed a:hover {
    color: #fff;
    text-decoration: underline;
}

/* =====================
BOTÃO ACESSAR SISTEMA NA NAVEGAÇÃO
===================== */
.nav-btn-sistema {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2f9e73, #47c78a);
    color: white !important;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(47, 158, 115, 0.3);
    text-transform: uppercase;
    margin-left: 10px;
}

.nav-btn-sistema i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.nav-btn-sistema:hover {
    background: white;
    color: #2f9e73 !important;
    border-color: #2f9e73;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(47, 158, 115, 0.4);
}

.nav-btn-sistema:hover i {
    transform: translateX(5px);
}

.nav-btn-sistema:after {
    display: none !important; /* Remove a linha de hover padrão */
}

/* Ajuste para o menu mobile */
@media (max-width: 900px) {
    .nav-btn-sistema {
        margin: 10px 0 0 0;
        padding: 12px 20px;
        width: 100%;
        justify-content: center;
        font-size: 1rem;
    }
    
    /* Garante que o botão apareça como último item no menu mobile */
    nav#menu a:last-child {
        margin-bottom: 20px;
    }
}

/* Ajuste fino para telas médias */
@media (min-width: 901px) and (max-width: 1100px) {
    .nav-btn-sistema {
        padding: 6px 15px;
        font-size: 0.85rem;
        gap: 5px;
    }
    
    nav {
        gap: 15px;
    }
}