:root{
--primary:#78b83b;
--primary-dark:#5a8a2b;
--accent:#9fd356;
--dark:#0f1117;
--gray-dark:#1c1f26;
--gray-light:#f6f8fa;
--gray-border:#d0d7de;
--success:#1a7f3a;
--text:#24292f;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
scroll-padding-top:80px;
}

body{
background:#fff;
overflow-x:hidden;
color:var(--text);
}

.container{
width:min(1200px,90%);
margin:auto;
}

header{
position:fixed;
top:0;
width:100%;
background:rgba(255,255,255,.98);
backdrop-filter:blur(12px);
z-index:999;
box-shadow:0 2px 12px rgba(0,0,0,.05);
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:16px 0;
}

.logo img{
max-height:40px;
}

nav{
display:flex;
gap:40px;
}

nav a{
text-decoration:none;
color:var(--text);
font-weight:500;
font-size:14px;
transition:color .3s;
position:relative;
}

nav a:hover{
color:var(--primary);
}

nav a::after{
content:'';
position:absolute;
bottom:-5px;
left:0;
width:0;
height:2px;
background:var(--primary);
transition:width .3s;
}

nav a:hover::after{
width:100%;
}

.btn{
background:var(--primary);
padding:10px 24px;
border-radius:8px;
color:white;
text-decoration:none;
font-weight:600;
font-size:14px;
transition:all .3s;
border:none;
cursor:pointer;
}

.btn:hover{
background:var(--primary-dark);
transform:translateY(-2px);
box-shadow:0 8px 16px rgba(0,102,204,.2);
}

.stats{
display:grid;
gap:40px;
padding:60px 0;
scroll-margin-top:80px;
}

.stats .container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:40px;
justify-items:center;
text-align:center;
}

.stats > div{
text-align:center;
}

.stats h2{
color:var(--primary);
font-size:3.5rem;
font-weight:800;
margin-bottom:10px;
}

.stats p{
color:#666;
font-size:15px;
font-weight:500;
}

section{
padding:100px 0;
scroll-margin-top:80px;
}

section h2{
font-size:2.5rem;
font-weight:700;
margin-bottom:30px;
text-align:center;
background:linear-gradient(135deg,var(--primary),var(--accent));
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
background-clip:text;
}

.hero-intro{
padding:120px 0 80px;
position:relative;
}

.hero-grid{
display:grid;
grid-template-columns:1.1fr 0.9fr;
gap:60px;
align-items:center;
}

.hero-copy{
max-width:620px;
}

.hero-copy h1{
font-size:3.6rem;
line-height:1.05;
margin:25px 0;
}

.hero-copy p{
font-size:1.05rem;
line-height:1.8;
color:#4b5563;
max-width:560px;
}

.hero-actions{
display:flex;
gap:16px;
flex-wrap:wrap;
margin:30px 0 20px;
}

.hero-visual{
position:relative;
}

.hero-visual img{
width:100%;
border-radius:30px;
box-shadow:0 30px 80px rgba(120,184,59,.18);
}

.hero-card{
position:absolute;
bottom:-20px;
left:0;
background:white;
padding:20px 24px;
border-radius:20px;
box-shadow:0 24px 60px rgba(0,0,0,.08);
max-width:320px;
}

.hero-card p{
margin-bottom:10px;
font-size:0.95rem;
color:#334155;
}

.hero-card span{
color:#10b981;
font-weight:700;
}

.trust{
display:flex;
gap:10px;
flex-wrap:wrap;
margin-top:15px;
}

.trust span{
background:rgba(120,184,59,.12);
padding:10px 16px;
border-radius:999px;
font-size:14px;
font-weight:600;
color:var(--primary-dark);
}

.cards,
.steps{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:28px;
margin-top:40px;
}

.card,
.step,
.depoimento{
padding:30px;
border-radius:22px;
background:white;
box-shadow:0 20px 50px rgba(120,184,59,.08);
transition:all .3s cubic-bezier(.4,0,.2,1);
}

.card:hover,
.step:hover,
.depoimento:hover{
transform:translateY(-6px);
box-shadow:0 20px 60px rgba(120,184,59,.16);
}

.card:hover,
.step:hover,
.depoimento:hover{
transform:translateY(-8px);
box-shadow:0 12px 32px rgba(0,102,204,.15);
border-color:var(--primary);
}

.card h3,
.step h3{
color:var(--dark);
margin-bottom:12px;
font-size:1.3rem;
}

.card p,
.step p{
color:#475569;
line-height:1.8;
font-size:15px;
}

.card img{
width:100%;
height:180px;
object-fit:cover;
border-radius:18px;
margin-bottom:18px;
}

.step span{
width:56px;
height:56px;
background:linear-gradient(135deg,var(--primary),var(--accent));
color:white;
display:flex;
justify-content:center;
align-items:center;
border-radius:16px;
margin-bottom:20px;
font-weight:700;
font-size:1.5rem;
}

.cta{
background:linear-gradient(135deg,var(--primary),var(--primary-dark));
text-align:center;
color:white;
padding:80px 40px;
border-radius:30px;
}

.faq-item{
margin-bottom:15px;
}

.faq-item button{
width:100%;
padding:22px 25px;
background:white;
border:1px solid var(--gray-border);
color:var(--text);
font-size:16px;
cursor:pointer;
border-radius:12px;
font-weight:600;
transition:all .3s;
text-align:left;
}

.faq-item button:hover{
border-color:var(--primary);
background:var(--gray-light);
color:var(--primary);
}

.faq-item button::after{
content:'▼';
float:right;
transition:transform .3s;
}

.answer{
display:none;
padding:25px;
background:var(--gray-light);
border-radius:0 0 12px 12px;
color:#555;
line-height:1.7;
margin-top:-1px;
}

.faq-item button.active{
background:linear-gradient(135deg,var(--primary),var(--accent));
color:white;
border-color:transparent;
}

.faq-item button.active::after{
transform:rotate(180deg);
color:white;
}

.whatsapp-float{
position:fixed;
bottom:30px;
right:30px;
width:64px;
height:64px;
border-radius:50%;
background:linear-gradient(135deg,#25D366,#1fa857);
display:flex;
align-items:center;
justify-content:center;
font-size:32px;
text-decoration:none;
color:white;
animation:pulse 2.5s infinite;
box-shadow:0 8px 24px rgba(37,211,102,.3);
transition:all .3s;
z-index:998;
}

.whatsapp-float:hover{
transform:scale(1.1);
box-shadow:0 12px 32px rgba(37,211,102,.4);
}

@keyframes pulse{
0%{transform:scale(1);}
50%{transform:scale(1.1);}
100%{transform:scale(1);}
}

.lead-section{
background:linear-gradient(180deg,#f6f8fa 0%,#ffffff 100%);
}

.lead-card{
max-width:600px;
margin:auto;
background:white;
padding:50px;
border-radius:20px;
box-shadow:0 12px 32px rgba(120,184,59,.1);
}

.lead-card h2{
font-size:1.8rem;
margin-bottom:15px;
color:var(--dark);
}

.lead-card p{
color:#666;
margin-bottom:30px;
line-height:1.6;
}

.lead-card form{
display:flex;
flex-direction:column;
gap:16px;
}

.lead-card input,
.lead-card textarea{
padding:16px 18px;
border:1px solid var(--gray-border);
border-radius:10px;
font-family:inherit;
font-size:15px;
transition:all .3s;
background:var(--gray-light);
}

.lead-card input:focus,
.lead-card textarea:focus{
outline:none;
border-color:var(--primary);
background:white;
box-shadow:0 0 0 3px rgba(0,102,204,.1);
}

.lead-card textarea{
resize:vertical;
min-height:100px;
}

.lead-card button{
background:linear-gradient(135deg,var(--primary),var(--accent));
color:white;
border:none;
padding:16px 24px;
border-radius:10px;
cursor:pointer;
font-weight:700;
font-size:15px;
transition:all .3s;
margin-top:10px;
}

.lead-card button:hover{
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(120,184,59,.25);
}

.lead-card button:active{
transform:translateY(0);
}

.authority-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:50px;
}

.highlight-section{
background:#f9fdf4;
padding:100px 0;
}

.highlight-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
margin-top:40px;
}

.highlight-card{
background:white;
border-radius:22px;
overflow:hidden;
box-shadow:0 20px 50px rgba(120,184,59,.08);
transition:all .3s;
}

.highlight-card:hover{
transform:translateY(-6px);
box-shadow:0 24px 60px rgba(120,184,59,.14);
}

.highlight-card img{
width:100%;
display:block;
object-fit:cover;
height:220px;
}

.highlight-card h3{
padding:24px 24px 0;
font-size:1.3rem;
}

.highlight-card p{
padding:0 24px 24px;
color:#475569;
line-height:1.8;
}

.testimonial-card{
display:flex;
gap:18px;
align-items:flex-start;
}

.testimonial-card .avatar{
width:60px;
height:60px;
border-radius:50%;
object-fit:cover;
}

.testimonial-card div{
flex:1;
}

.testimonial-card strong{
display:block;
margin-bottom:8px;
font-size:0.98rem;
}

.testimonial-card p{
color:#475569;
line-height:1.8;
font-size:0.95rem;
}


.authority-grid div{
background:white;
padding:40px;
border-radius:16px;
border:1px solid var(--gray-border);
box-shadow:0 4px 12px rgba(0,0,0,.05);
transition:all .3s;
text-align:center;
}

.authority-grid div:hover{
transform:translateY(-8px);
box-shadow:0 12px 32px rgba(0,102,204,.15);
border-color:var(--primary);
}

.authority-grid h3{
color:var(--primary);
margin-bottom:12px;
font-size:1.2rem;
}

.authority-grid p{
color:#666;
line-height:1.6;
font-size:15px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:50px;
margin-bottom:40px;
}

.footer-logo{
max-width:160px;
margin-bottom:15px;
}

footer{
background:var(--gray-dark);
color:#adb5bd;
padding:60px 0 30px;
margin-top:80px;
}

footer .container{
border-bottom:1px solid rgba(255,255,255,.1);
padding-bottom:40px;
}

footer h4{
color:white;
margin-bottom:20px;
font-weight:700;
}

footer p{
margin-bottom:10px;
line-height:1.7;
font-size:15px;
}

.trust{
display:flex;
gap:10px;
flex-wrap:wrap;
margin-top:25px;
}
@media(max-width:900px){

nav{
gap:20px;
}

nav a{
font-size:13px;
}

.hero-grid{
grid-template-columns:1fr;
text-align:left;
}

.hero-copy h1{
font-size:2.8rem;
}

.hero-visual{
margin-top:30px;
}

.stats .container{
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
}

.cards,
.steps,
.authority-grid,
.highlight-grid{
grid-template-columns:1fr;
}

.lead-card{
padding:35px 25px;
}

.cta{
padding:60px 30px;
}

}

@media(max-width:600px){

header .container{
padding:12px 0;
}

nav{
display:none;
}

.btn{
padding:8px 16px;
font-size:13px;
}

.hero-copy h1{
font-size:2rem;
}

.hero-copy p{
font-size:1rem;
}

.hero-actions{
flex-direction:column;
align-items:start;
}

.stats h2{
font-size:2.2rem;
}

.section{
padding:50px 0;
}

.lead-card,
.hero-card,
.highlight-card,
.card,
.step,
.depoimento,
.authority-grid div{
padding:24px;
}

.footer-grid{
gap:30px;
}

}
.trust span{
background:var(--gray-light);
padding:10px 15px;
border-radius:8px;
font-size:14px;
font-weight:600;
color:var(--primary);
border:1px solid var(--gray-border);
}

@media(max-width:900px){

nav{
gap:20px;
}

nav a{
font-size:13px;
}

section h2{
font-size:1.8rem;
}

.stats{
gap:30px;
}

.stats h2{
font-size:2.5rem;
}

.lead-card{
padding:35px 25px;
}

.cards,
.steps,
.authority-grid{
grid-template-columns:1fr;
}

}

@media(max-width:600px){

header .container{
padding:12px 0;
}

nav{
display:none;
}

.stats{
gap:20px;
padding:40px 0;
}

.stats h2{
font-size:2rem;
}

.btn{
padding:8px 16px;
font-size:13px;
}

section{
padding:60px 0;
}

}


.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.footer-logo{
max-width:180px;
margin-bottom:15px;
}

/* Shapes de background premium */
.bg-shape{
position:fixed;
opacity:.05;
pointer-events:none;
z-index:0;
}

.bg-shape.one{
width:400px;
height:400px;
background:var(--primary);
border-radius:50%;
top:-100px;
left:-100px;
}

.bg-shape.two{
width:300px;
height:300px;
background:var(--accent);
border-radius:50%;
bottom:-80px;
right:-80px;
}

/* Animações suaves */
@keyframes fadeInUp{
from{
opacity:0;
transform:translateY(20px);
}
to{
opacity:1;
transform:translateY(0);
}
}

section{
animation:fadeInUp .6s ease-out;
}

/* Melhorias de acessibilidade */
@media(prefers-reduced-motion:reduce){
*{
animation-duration:0.01ms !important;
animation-iteration-count:1 !important;
transition-duration:0.01ms !important;
}
}

/* Link focus acessível */
a:focus-visible,
button:focus-visible{
outline:2px solid var(--primary);
outline-offset:2px;
}

/* Melhorias de impressão */
@media print{
header,
.whatsapp-float{
display:none;
}
}

/* Otimização para retina */
@media(min-device-pixel-ratio:2),(min-resolution:192dpi){
.btn:hover{
box-shadow:0 12px 24px rgba(0,102,204,.25);
}
}

/* Depoimentos Swiper */
.swiper{
overflow:hidden;
}

.swiper-slide{
opacity:0.6;
transition:opacity .3s;
}

.swiper-slide-active,
.swiper-slide-duplicate-active{
opacity:1;
}

.swiper-pagination-bullet{
background:var(--primary);
opacity:0.4;
}

.swiper-pagination-bullet-active{
opacity:1;
}

/* Elemento depoimento */
.depoimento{
display:flex;
flex-direction:column;
gap:15px;
}

.depoimento p{
font-size:16px;
line-height:1.6;
}

/* Botões especiais */
.btn-main{
background:linear-gradient(135deg,var(--primary),var(--accent));
color:white;
border:none;
padding:16px 40px;
border-radius:10px;
cursor:pointer;
font-weight:700;
font-size:15px;
transition:all .3s;
text-decoration:none;
display:inline-block;
}

.btn-main:hover{
transform:translateY(-2px);
box-shadow:0 12px 32px rgba(0,102,204,.25);
}

.btn-main:active{
transform:translateY(0);
}

.btn-outline{
border:2px solid var(--primary);
padding:14px 38px;
border-radius:10px;
color:var(--primary);
text-decoration:none;
background:transparent;
font-weight:700;
font-size:15px;
transition:all .3s;
cursor:pointer;
}

.btn-outline:hover{
background:var(--primary);
color:white;
}