:root{
--gold:#c5a059;
--gold-dark:#9d7b3d;
--navy:#102530;
--navy-soft:#1a3a47;
--dark:#121212;
--text:#23272c;
--muted:#5f6770;
--line:rgba(18,18,18,0.08);
--line-strong:rgba(18,18,18,0.12);
--surface:#ffffff;
--surface-soft:#f7f8fb;
--surface-warm:#faf7f1;
--shadow-soft:0 18px 38px rgba(16,30,40,0.08);
--shadow-card:0 24px 48px rgba(16,30,40,0.12);
--font-base:'Geist', sans-serif;
}

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

html{
-webkit-text-size-adjust:100%;
scroll-behavior:smooth;
}

body{
font-family:var(--font-base);
font-weight:400;
color:var(--text);
background:linear-gradient(180deg, #fdfcf9 0%, #ffffff 34%, #f7f8fb 100%);
line-height:1.6;
min-width:320px;
overflow-x:hidden;
}

main{display:block;}
img{max-width:100%;height:auto;display:block;}
button{font:inherit;}
a{color:inherit;}

h1,h2,h3,h4,h5,h6{
font-family:var(--font-base);
font-weight:600;
color:var(--dark);
}

p,span,li,a{
font-family:var(--font-base);
font-weight:400;
}

section[id]{
scroll-margin-top:110px;
}

.section-kicker{
display:inline-flex;
align-items:center;
gap:10px;
padding:9px 14px;
border-radius:999px;
border:1px solid rgba(197,160,89,0.22);
background:rgba(197,160,89,0.08);
color:var(--gold-dark);
font-size:0.76rem;
font-weight:600;
letter-spacing:0.12em;
text-transform:uppercase;
}

.section-kicker::before{
content:"";
width:8px;
height:8px;
border-radius:50%;
background:var(--gold);
flex-shrink:0;
}

.section-kicker-centered{
justify-content:center;
margin:0 auto;
}

.section-heading{
width:min(760px, 100%);
margin:0 auto 36px;
}

.section-heading-centered{
margin-inline:auto;
text-align:center;
}

.section-heading h2{
font-size:clamp(2.1rem, 4vw, 3.5rem);
line-height:1.06;
letter-spacing:-0.04em;
margin-top:18px;
}

.section-heading > p:not(.section-kicker){
margin-top:16px;
max-width:60ch;
font-size:1.03rem;
line-height:1.78;
color:var(--muted);
}

.section-heading-centered p{
margin-inline:auto;
}

.navbar{
display:flex;
align-items:center;
justify-content:space-between;
gap:24px;
padding:18px 8%;
position:sticky;
top:0;
z-index:1000;
background:rgba(255,255,255,0.92);
backdrop-filter:blur(18px);
border-bottom:1px solid rgba(18,18,18,0.05);
box-shadow:0 10px 28px rgba(0,0,0,0.05);
}

.logo-link{
display:flex;
align-items:center;
text-decoration:none;
flex-shrink:0;
}

.logo{
height:62px;
width:auto;
}

.nav-toggle{
display:none;
width:48px;
height:48px;
align-items:center;
justify-content:center;
flex-direction:column;
gap:5px;
border:1px solid rgba(18,18,18,0.08);
border-radius:14px;
background:rgba(255,255,255,0.94);
cursor:pointer;
box-shadow:0 10px 24px rgba(17,17,17,0.08);
transition:transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.nav-toggle:hover{
transform:translateY(-1px);
border-color:rgba(197,160,89,0.4);
background:#fff;
}

.nav-toggle span{
display:block;
width:18px;
height:2px;
border-radius:999px;
background:var(--dark);
transition:transform 0.25s ease, opacity 0.25s ease;
}

.navbar.is-open .nav-toggle span:nth-child(1){
transform:translateY(7px) rotate(45deg);
}

.navbar.is-open .nav-toggle span:nth-child(2){
opacity:0;
}

.navbar.is-open .nav-toggle span:nth-child(3){
transform:translateY(-7px) rotate(-45deg);
}

.menu{
display:flex;
align-items:center;
justify-content:center;
gap:26px;
flex-wrap:wrap;
}

.menu a{
position:relative;
text-decoration:none;
color:#5a6672;
font-size:0.98rem;
font-weight:500;
transition:color 0.25s ease;
}

.menu a::after{
content:"";
position:absolute;
left:0;
bottom:-10px;
width:100%;
height:2px;
border-radius:999px;
background:var(--gold);
transform:scaleX(0);
transform-origin:center;
transition:transform 0.25s ease;
}

.menu a:hover{
color:var(--dark);
}

.menu a:hover::after,
.menu a.gold::after,
.menu a[aria-current="page"]::after{
transform:scaleX(1);
}

.menu a.gold,
.menu a[aria-current="page"]{
color:var(--gold-dark);
}

.btn-gold,
.btn-light{
display:inline-flex;
align-items:center;
justify-content:center;
gap:10px;
padding:15px 26px;
border-radius:14px;
font-size:0.98rem;
font-weight:500;
text-decoration:none;
transition:transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn-gold{
background:linear-gradient(135deg, #cfa964 0%, #bb9348 100%);
color:#fff;
box-shadow:0 18px 32px rgba(197,160,89,0.24);
}

.btn-gold:hover{
transform:translateY(-2px);
box-shadow:0 24px 38px rgba(197,160,89,0.3);
}

.btn-light{
background:rgba(255,255,255,0.92);
color:var(--dark);
border:1px solid rgba(18,18,18,0.08);
box-shadow:0 12px 26px rgba(16,30,40,0.08);
}

.btn-light:hover{
transform:translateY(-2px);
background:#fff;
border-color:rgba(197,160,89,0.3);
box-shadow:0 18px 32px rgba(16,30,40,0.12);
}

.hero{
display:grid;
grid-template-columns:minmax(320px, 1fr) minmax(360px, 1.04fr);
align-items:center;
gap:clamp(36px, 5vw, 70px);
padding:clamp(40px, 6vh, 76px) 8% 40px;
position:relative;
min-height:calc(100vh - 98px);
}

.hero::before{
content:"";
position:absolute;
inset:0;
background:
radial-gradient(circle at 12% 18%, rgba(197,160,89,0.14) 0%, rgba(197,160,89,0) 28%),
radial-gradient(circle at 90% 16%, rgba(16,37,48,0.06) 0%, rgba(16,37,48,0) 22%);
pointer-events:none;
}

.hero-text,
.hero-visual{
position:relative;
z-index:1;
min-width:0;
}

.hero-text{
display:flex;
flex-direction:column;
align-items:flex-start;
gap:20px;
max-width:620px;
opacity:0;
transform:translate3d(0, 34px, 0) scale(0.96);
animation:hero-entry 1s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

.hero-text h1{
font-size:clamp(2.8rem, 4.8vw, 4.9rem);
line-height:0.98;
letter-spacing:-0.05em;
max-width:12ch;
}

.hero-text > p:not(.section-kicker){
max-width:54ch;
font-size:1.06rem;
line-height:1.82;
color:var(--muted);
}

.hero-actions{
display:flex;
align-items:center;
gap:14px;
flex-wrap:wrap;
}

.hero-actions > *,
.hero-trust span{
opacity:0;
transform:translate3d(0, 22px, 0) scale(0.96);
animation:hero-chip-entry 0.82s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-actions > *:nth-child(1){
animation-delay:0.46s;
}

.hero-actions > *:nth-child(2){
animation-delay:0.58s;
}

.hero-trust span:nth-child(1){
animation-delay:0.68s;
}

.hero-trust span:nth-child(2){
animation-delay:0.8s;
}

.hero-trust span:nth-child(3){
animation-delay:0.92s;
}

.hero-trust,
.team-page-highlights{
display:flex;
flex-wrap:wrap;
gap:12px;
}

.hero-trust span,
.team-page-highlights span{
padding:11px 15px;
border-radius:999px;
background:rgba(255,255,255,0.88);
border:1px solid rgba(18,18,18,0.08);
box-shadow:0 12px 24px rgba(16,30,40,0.06);
font-size:0.9rem;
font-weight:500;
color:#39424c;
}

.hero-visual{
position:relative;
display:flex;
justify-content:flex-end;
align-items:flex-end;
width:min(100%, 620px);
margin-left:auto;
padding:0 0 34px;
opacity:0;
transform:translate3d(0, 48px, 0) scale(0.94);
animation:hero-entry 1.08s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.hero-img{
width:100%;
position:relative;
min-height:clamp(560px, 54vw, 680px);
height:clamp(560px, 54vw, 680px);
overflow:hidden;
border-radius:32px;
border:1px solid rgba(18,18,18,0.06);
box-shadow:0 34px 62px rgba(16,30,40,0.16);
background:linear-gradient(145deg, #eef3f6 0%, #dbe5ea 100%);
}

.hero-slide{
position:absolute;
inset:0;
opacity:0;
transition:opacity 0.9s ease;
will-change:opacity;
}

.hero-slider:not(.is-enhanced) .hero-slide{
animation:hero-slide-fallback 15.6s infinite;
}

.hero-slider:not(.is-enhanced) .hero-slide:nth-child(1){
animation-delay:0s;
}

.hero-slider:not(.is-enhanced) .hero-slide:nth-child(2){
animation-delay:5.2s;
}

.hero-slider:not(.is-enhanced) .hero-slide:nth-child(3){
animation-delay:10.4s;
}

.hero-slide.is-active{
opacity:1;
z-index:1;
}

.hero-slide img{
display:block;
width:100%;
height:100%;
object-fit:cover;
}

.hero-slide-familia{
background:#d0b56b;
}

.hero-slide-familia img{
object-fit:cover;
object-position:center 52%;
}

.hero-slide-saude img{
object-position:center 26%;
}

.hero-slide-auto img{
object-position:center 56%;
}

.hero-slider-indicators{
position:absolute;
right:24px;
bottom:24px;
z-index:2;
display:flex;
gap:10px;
}

.hero-slider-indicator{
appearance:none;
width:34px;
height:4px;
padding:0;
border:0;
border-radius:999px;
background:rgba(255,255,255,0.35);
box-shadow:inset 0 0 0 1px rgba(255,255,255,0.16);
cursor:pointer;
transition:transform 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
}

.hero-slider-indicator.is-active{
background:#ffffff;
box-shadow:0 10px 24px rgba(16,30,40,0.18);
transform:scaleX(1.08);
}

.hero-slider-indicator:focus-visible{
outline:2px solid rgba(255,255,255,0.92);
outline-offset:4px;
}

.hero-slider:not(.is-enhanced) .hero-slider-indicator{
animation:hero-indicator-fallback 15.6s infinite;
}

.hero-slider:not(.is-enhanced) .hero-slider-indicator:nth-child(1){
animation-delay:0s;
}

.hero-slider:not(.is-enhanced) .hero-slider-indicator:nth-child(2){
animation-delay:5.2s;
}

.hero-slider:not(.is-enhanced) .hero-slider-indicator:nth-child(3){
animation-delay:10.4s;
}

.hero-panel{
position:absolute;
left:24px;
right:auto;
bottom:24px;
z-index:3;
width:min(calc(100% - 48px), 320px);
padding:24px;
border-radius:24px;
background:rgba(255,255,255,0.96);
border:1px solid rgba(18,18,18,0.08);
box-shadow:var(--shadow-card);
backdrop-filter:blur(12px);
}

.hero-panel-label{
display:inline-flex;
align-items:center;
gap:8px;
font-size:0.74rem;
font-weight:600;
letter-spacing:0.12em;
text-transform:uppercase;
color:var(--gold-dark);
}

.hero-panel-label::before{
content:"";
width:7px;
height:7px;
border-radius:50%;
background:var(--gold);
}

.hero-panel h2{
margin-top:14px;
font-size:1.5rem;
line-height:1.1;
letter-spacing:-0.03em;
}

.hero-panel > p:not(.hero-panel-label){
margin-top:12px;
font-size:0.96rem;
line-height:1.7;
color:var(--muted);
}

@keyframes hero-slide-fallback{
0%, 28%{
opacity:1;
z-index:1;
}

33%, 100%{
opacity:0;
z-index:0;
}
}

@keyframes hero-indicator-fallback{
0%, 28%{
background:#ffffff;
box-shadow:0 10px 24px rgba(16,30,40,0.18);
transform:scaleX(1.08);
}

33%, 100%{
background:rgba(255,255,255,0.35);
box-shadow:inset 0 0 0 1px rgba(255,255,255,0.16);
transform:none;
}
}

@keyframes hero-entry{
0%{
opacity:0;
filter:blur(12px);
transform:translate3d(0, 34px, 0) scale(0.94);
}

100%{
opacity:1;
filter:none;
transform:translate3d(0, 0, 0) scale(1);
}
}

@keyframes hero-chip-entry{
0%{
opacity:0;
filter:blur(8px);
transform:translate3d(0, 22px, 0) scale(0.96);
}

100%{
opacity:1;
filter:none;
transform:translate3d(0, 0, 0) scale(1);
}
}

@keyframes gold-shine-sweep{
0%{
background-position:0% 50%;
}

100%{
background-position:220% 50%;
}
}

.confidence-strip{
display:grid;
grid-template-columns:repeat(3, minmax(0, 1fr));
gap:24px;
width:min(1240px, calc(100% - 16%));
margin:0 auto;
padding:10px 0 98px;
}

.confidence-card{
padding:28px;
border-radius:26px;
background:rgba(255,255,255,0.94);
border:1px solid rgba(18,18,18,0.08);
box-shadow:var(--shadow-soft);
}

.confidence-card-label{
display:inline-flex;
align-items:center;
justify-content:center;
width:42px;
height:42px;
border-radius:50%;
background:rgba(197,160,89,0.12);
color:var(--gold-dark);
font-size:0.94rem;
font-weight:600;
}

.confidence-card h2{
margin-top:18px;
font-size:1.35rem;
line-height:1.14;
letter-spacing:-0.03em;
}

.confidence-card > p:not(.confidence-card-label){
margin-top:12px;
font-size:0.98rem;
line-height:1.72;
color:var(--muted);
}

.solutions{
padding:0 0 98px;
}

.solutions .section-heading{
width:min(1240px, calc(100% - 16%));
}

.banner{
position:relative;
width:min(1240px, calc(100% - 16%));
min-height:430px;
margin:0 auto;
display:flex;
align-items:center;
justify-content:center;
overflow:hidden;
isolation:isolate;
background:#111;
border-radius:34px;
border:1px solid rgba(18,18,18,0.06);
box-shadow:0 30px 56px rgba(16,30,40,0.16);
}

.banner-slider{
position:absolute;
inset:0;
z-index:0;
}

.banner-track{
display:flex;
width:100%;
height:100%;
will-change:transform;
transition:transform 1.1s ease-in-out;
}

.banner-slide{
flex:0 0 100%;
height:100%;
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

.banner-slide-saude{
background-image:url('/assets/banner/saude-banner.jpg');
}

.banner-slide-vida{
background-image:url('/assets/banner/vida-banner.jpg');
}

.banner-slide-auto{
background-image:url('/assets/banner/auto-banner.jpg');
}

.overlay{
position:absolute;
inset:0;
background:
linear-gradient(90deg, rgba(8,13,18,0.78) 0%, rgba(8,13,18,0.46) 50%, rgba(8,13,18,0.72) 100%),
linear-gradient(180deg, rgba(8,13,18,0.18) 0%, rgba(8,13,18,0.62) 100%);
z-index:1;
}

.banner-content{
position:relative;
z-index:2;
width:min(760px, 88%);
text-align:center;
padding:0 20px;
}

.banner-eyebrow{
display:inline-flex;
align-items:center;
justify-content:center;
padding:9px 14px;
border-radius:999px;
background:rgba(255,255,255,0.14);
border:1px solid rgba(255,255,255,0.18);
font-size:0.76rem;
font-weight:600;
letter-spacing:0.12em;
text-transform:uppercase;
color:#fff;
}

.banner-text{
margin-top:20px;
font-size:clamp(2.2rem, 4vw, 3.5rem);
line-height:1.08;
letter-spacing:-0.04em;
color:#fff;
text-shadow:0 12px 32px rgba(0,0,0,0.32);
}

.grid{
display:grid;
grid-template-columns:repeat(3, minmax(0, 1fr));
gap:24px;
width:min(1240px, calc(100% - 16%));
margin:34px auto 0;
}

.card{
display:flex;
flex-direction:column;
align-items:center;
text-align:center;
padding:28px 20px 26px;
border-radius:24px;
background:rgba(255,255,255,0.92);
border:1px solid rgba(18,18,18,0.08);
box-shadow:var(--shadow-soft);
transition:transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover{
transform:translateY(-6px);
box-shadow:var(--shadow-card);
border-color:rgba(197,160,89,0.28);
}

.circle{
width:136px;
aspect-ratio:1;
padding:20px;
border-radius:28px;
display:grid;
place-items:center;
background:
radial-gradient(circle at top left, rgba(197,160,89,0.16) 0%, rgba(197,160,89,0.02) 60%),
linear-gradient(180deg, #fffdf9 0%, #f4f6fa 100%);
border:1px solid rgba(18,18,18,0.05);
box-shadow:inset 0 1px 0 rgba(255,255,255,0.8);
}

.circle img{
width:100%;
height:100%;
object-fit:contain;
filter:drop-shadow(0 12px 18px rgba(16,30,40,0.08));
}

.card h3{
margin-top:18px;
font-size:1.08rem;
line-height:1.2;
}

.card p{
margin-top:10px;
font-size:0.95rem;
line-height:1.68;
color:var(--muted);
}

.service-journey{
padding:96px 8%;
background:linear-gradient(180deg, rgba(244,246,250,0.7) 0%, rgba(255,255,255,1) 100%);
}

.journey-grid{
display:grid;
grid-template-columns:repeat(3, minmax(0, 1fr));
gap:24px;
max-width:1200px;
margin:44px auto 0;
}

.journey-card{
position:relative;
padding:28px;
border-radius:26px;
background:rgba(255,255,255,0.94);
border:1px solid rgba(18,18,18,0.08);
box-shadow:var(--shadow-soft);
}

.journey-card::before{
content:"";
position:absolute;
left:0;
top:0;
width:100%;
height:4px;
border-radius:26px 26px 0 0;
background:linear-gradient(90deg, #b88d3b 0%, #d8b56f 100%);
}

.journey-step{
display:inline-flex;
align-items:center;
justify-content:center;
width:42px;
height:42px;
border-radius:50%;
background:var(--navy);
color:#fff;
font-size:0.96rem;
font-weight:600;
}

.journey-card h3{
margin-top:18px;
font-size:1.28rem;
line-height:1.16;
letter-spacing:-0.02em;
}

.journey-card p{
margin-top:12px;
font-size:0.98rem;
line-height:1.72;
color:var(--muted);
}

.diferenciais{
padding:96px 8% 108px;
text-align:center;
background:linear-gradient(180deg, rgba(197,160,89,0.08) 0%, rgba(255,255,255,1) 100%);
}

.diferenciais h2{
max-width:15ch;
margin:18px auto 0;
font-size:clamp(2.1rem, 4vw, 3.4rem);
line-height:1.06;
letter-spacing:-0.04em;
}

.diferenciais-subtitle{
max-width:58ch;
margin:16px auto 0;
font-size:1.02rem;
line-height:1.78;
color:var(--muted);
}

.dif-container{
display:grid;
grid-template-columns:repeat(2, minmax(0, 1fr));
gap:28px;
max-width:1200px;
margin:42px auto 0;
text-align:left;
}

.dif-box{
position:relative;
overflow:hidden;
padding:30px;
border-radius:24px;
background:linear-gradient(180deg, rgba(255,251,244,0.96) 0%, rgba(250,245,236,0.9) 100%);
border:1px solid rgba(197,160,89,0.22);
box-shadow:var(--shadow-soft);
transition:transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.dif-box::before{
content:"";
position:absolute;
left:0;
top:0;
width:100%;
height:5px;
background:linear-gradient(90deg, #b88d3b 0%, #d8b56f 100%);
}

.dif-box:hover{
transform:translateY(-6px);
box-shadow:var(--shadow-card);
border-color:rgba(197,160,89,0.34);
}

.dif-box h3{
font-size:1.34rem;
line-height:1.16;
}

.dif-box p{
margin-top:14px;
font-size:0.98rem;
line-height:1.75;
color:#4e5358;
}

.dif-box ul{
margin-top:18px;
padding-left:22px;
display:grid;
gap:10px;
color:#34383d;
line-height:1.6;
}

.dif-box li::marker{
color:var(--gold);
}

.contact-band{
display:flex;
align-items:center;
justify-content:space-between;
gap:32px;
max-width:1200px;
margin:0 auto 98px;
padding:38px 42px;
border-radius:30px;
background:linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
box-shadow:0 28px 52px rgba(16,30,40,0.18);
}

.contact-band-copy{
max-width:640px;
}

.contact-band .section-kicker{
background:rgba(255,255,255,0.12);
border-color:rgba(255,255,255,0.18);
color:#fff;
}

.contact-band .section-kicker::before{
background:#fff;
}

.contact-band h2{
margin-top:18px;
font-size:clamp(2rem, 3.4vw, 3rem);
line-height:1.06;
letter-spacing:-0.04em;
color:#fff;
}

.contact-band-copy > p:not(.section-kicker){
margin-top:16px;
font-size:1rem;
line-height:1.76;
color:rgba(255,255,255,0.8);
}

.contact-band-actions{
display:flex;
align-items:center;
justify-content:flex-end;
gap:14px;
flex-wrap:wrap;
}

.contact-band .btn-light{
background:rgba(255,255,255,0.1);
color:#fff;
border-color:rgba(255,255,255,0.18);
box-shadow:none;
}

.contact-band .btn-light:hover{
background:rgba(255,255,255,0.16);
border-color:rgba(255,255,255,0.24);
}

.team-page-body{
background:linear-gradient(180deg, #fffdfa 0%, #f8f5ee 100%);
}

.team-page{
min-height:calc(100vh - 98px);
}

.team{
position:relative;
padding:46px 8% 0;
background:linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(249,246,240,1) 100%);
overflow:hidden;
}

.team::before{
content:"";
position:absolute;
inset:auto auto 12% -6%;
width:360px;
height:360px;
border-radius:50%;
background:radial-gradient(circle, rgba(197,160,89,0.14) 0%, rgba(197,160,89,0) 70%);
pointer-events:none;
}

.team-page-section{
padding-top:46px;
}

.team-shell{
position:relative;
z-index:1;
max-width:1200px;
margin:0 auto;
}

.team-page-hero{
max-width:840px;
margin:0 auto 44px;
text-align:center;
}

.team-page-hero h1{
margin-top:18px;
font-size:clamp(2.4rem, 4.6vw, 4rem);
line-height:1.02;
letter-spacing:-0.05em;
}

.gold-shine-word{
display:inline-block;
position:relative;
background:linear-gradient(120deg, #8f6a28 0%, #c99c4b 20%, #f4d98d 38%, #fff4c8 50%, #d7ab58 62%, #b08235 78%, #8f6a28 100%);
background-size:220% auto;
-webkit-background-clip:text;
background-clip:text;
color:transparent;
font-weight:700;
filter:drop-shadow(0 8px 18px rgba(197,160,89,0.28));
animation:gold-shine-sweep 4.8s linear infinite;
}


.team-page-hero > p:not(.section-kicker){
max-width:62ch;
margin:18px auto 0;
font-size:1.02rem;
line-height:1.8;
color:var(--muted);
}

.team-page-highlights{
justify-content:center;
margin-top:24px;
}

.team-page-actions{
display:flex;
justify-content:center;
gap:14px;
flex-wrap:wrap;
margin-top:28px;
}

.team-page-link{
display:inline-flex;
align-items:center;
justify-content:center;
padding:15px 24px;
border-radius:14px;
border:1px solid rgba(18,18,18,0.08);
background:rgba(255,255,255,0.88);
color:var(--dark);
font-size:0.98rem;
font-weight:500;
text-decoration:none;
box-shadow:0 12px 26px rgba(16,30,40,0.08);
transition:transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.team-page-link:hover{
transform:translateY(-2px);
box-shadow:0 18px 30px rgba(16,30,40,0.12);
border-color:rgba(197,160,89,0.3);
}

.team-grid{
display:grid;
grid-template-columns:repeat(3, minmax(0, 1fr));
gap:26px;
}

.team-card{
background:rgba(255,255,255,0.92);
border:1px solid rgba(18,18,18,0.08);
border-radius:28px;
overflow:hidden;
box-shadow:var(--shadow-soft);
transition:transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.team-card:hover{
transform:translateY(-6px);
box-shadow:var(--shadow-card);
border-color:rgba(197,160,89,0.28);
}

.team-photo-frame{
padding:18px 18px 0;
}

.team-monogram{
width:100%;
aspect-ratio:0.92;
display:grid;
place-items:center;
border-radius:24px;
background:
radial-gradient(circle at top left, rgba(197,160,89,0.34) 0%, rgba(197,160,89,0.08) 36%, rgba(197,160,89,0) 68%),
linear-gradient(145deg, #102530 0%, #1d4453 100%);
color:#fff;
font-size:clamp(2.1rem, 4vw, 3rem);
font-weight:600;
letter-spacing:0.1em;
box-shadow:inset 0 1px 0 rgba(255,255,255,0.06);
}

.team-card-body{
padding:24px 24px 28px;
}

.team-label{
color:var(--gold-dark);
font-size:0.74rem;
font-weight:600;
letter-spacing:0.14em;
text-transform:uppercase;
}

.team-card h3{
margin-top:12px;
font-size:1.46rem;
line-height:1.14;
letter-spacing:-0.02em;
}

.team-role{
margin-top:8px;
font-size:0.94rem;
font-weight:500;
line-height:1.5;
color:#6a5836;
}

.team-card-copy{
margin-top:14px;
font-size:0.98rem;
line-height:1.72;
color:var(--muted);
}

.team-support{
margin-top:58px;
padding:56px 0 94px;
border-top:1px solid rgba(18,18,18,0.06);
}

.team-support-heading{
width:min(780px, 100%);
margin-bottom:36px;
}

.support-grid{
display:grid;
grid-template-columns:repeat(3, minmax(0, 1fr));
gap:24px;
}

.support-card{
padding:26px;
border-radius:24px;
background:rgba(255,255,255,0.94);
border:1px solid rgba(18,18,18,0.08);
box-shadow:var(--shadow-soft);
}

.support-card h3{
font-size:1.18rem;
line-height:1.18;
letter-spacing:-0.02em;
}

.support-card p{
margin-top:12px;
font-size:0.98rem;
line-height:1.72;
color:var(--muted);
}

.team-note{
margin-top:28px;
padding:24px 28px;
border-radius:24px;
background:rgba(16,37,48,0.05);
border:1px solid rgba(16,37,48,0.08);
text-align:center;
}

.team-note p{
max-width:70ch;
margin:0 auto;
font-size:1rem;
line-height:1.74;
color:#42505b;
}

.site-footer{
position:relative;
overflow:hidden;
padding:86px 8% 28px;
background:linear-gradient(180deg, #0d2630 0%, #071820 100%);
color:#f5f5f0;
}

.site-footer::before{
content:"";
position:absolute;
inset:-18% auto auto -8%;
width:380px;
height:380px;
border-radius:50%;
background:radial-gradient(circle, rgba(197,160,89,0.12) 0%, rgba(197,160,89,0) 68%);
pointer-events:none;
}

.footer-shell{
position:relative;
z-index:1;
max-width:1200px;
margin:0 auto;
}

.footer-top{
display:grid;
grid-template-columns:minmax(220px, 310px) minmax(340px, 1fr) auto;
align-items:center;
gap:34px;
padding-bottom:42px;
border-bottom:1px solid rgba(255,255,255,0.12);
}

.footer-photo-panel{
width:min(100%, 310px);
justify-self:start;
}

.footer-photo{
width:100%;
border-radius:28px;
border:1px solid rgba(255,255,255,0.08);
box-shadow:0 22px 44px rgba(0,0,0,0.24);
object-fit:cover;
}

.footer-brand{
max-width:640px;
justify-self:center;
}

.footer-kicker{
color:rgba(255,255,255,0.72);
font-size:0.76rem;
font-weight:500;
letter-spacing:0.14em;
text-transform:uppercase;
}

.footer-text{
margin-top:16px;
font-size:1.02rem;
line-height:1.86;
color:rgba(245,245,240,0.84);
}

.footer-cta{
display:inline-flex;
margin-top:22px;
font-size:0.98rem;
font-weight:500;
color:#8df2db;
text-decoration:none;
border-bottom:1px solid transparent;
transition:color 0.25s ease, border-color 0.25s ease;
}

.footer-cta:hover{
color:#baf9eb;
border-color:#baf9eb;
}

.footer-social{
display:flex;
align-items:center;
justify-content:flex-end;
align-self:start;
}

.social-link{
width:54px;
height:54px;
display:grid;
place-items:center;
border-radius:50%;
border:1px solid rgba(255,255,255,0.18);
background:rgba(255,255,255,0.04);
color:#fff;
transition:transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.social-link:hover{
transform:translateY(-4px);
background:rgba(197,160,89,0.16);
border-color:rgba(197,160,89,0.42);
}

.social-link svg{
width:24px;
height:24px;
fill:currentColor;
}

.footer-grid{
display:grid;
grid-template-columns:1.1fr 1.6fr 1fr;
gap:42px;
padding:42px 0 28px;
}

.footer-column h3{
font-size:1.08rem;
font-weight:600;
line-height:1.2;
color:#fff;
}

.footer-column p{
margin-top:16px;
font-size:0.97rem;
line-height:1.8;
color:rgba(245,245,240,0.82);
}

.footer-map-card{
position:relative;
width:min(100%, 194px);
aspect-ratio:1;
margin-top:18px;
border-radius:22px;
overflow:hidden;
border:1px solid rgba(255,255,255,0.14);
box-shadow:0 18px 36px rgba(0,0,0,0.22);
background:#12303a;
}

.footer-map-card iframe{
width:100%;
height:100%;
border:0;
display:block;
filter:saturate(0.95) contrast(1.02);
}

.footer-map-link{
position:absolute;
inset:0;
display:flex;
flex-direction:column;
justify-content:space-between;
padding:12px;
text-decoration:none;
background:linear-gradient(180deg, rgba(5,16,22,0.08) 0%, rgba(5,16,22,0.12) 45%, rgba(5,16,22,0.78) 100%);
color:#fff;
transition:background 0.25s ease;
}

.footer-map-link:hover{
background:linear-gradient(180deg, rgba(5,16,22,0.12) 0%, rgba(5,16,22,0.16) 40%, rgba(5,16,22,0.84) 100%);
}

.footer-map-badge{
align-self:flex-start;
padding:5px 8px;
border-radius:999px;
background:rgba(255,255,255,0.92);
color:#17313c;
font-size:0.65rem;
font-weight:600;
letter-spacing:0.04em;
}

.footer-map-caption{
display:block;
max-width:15ch;
font-size:0.86rem;
font-weight:500;
line-height:1.32;
text-shadow:0 8px 18px rgba(0,0,0,0.35);
}

.footer-map-action{
display:inline-flex;
align-items:center;
gap:6px;
font-size:0.76rem;
font-weight:500;
color:#8df2db;
}

.footer-map-action::after{
content:"\2197";
font-size:0.82rem;
}

.footer-products{
list-style:none;
display:grid;
grid-template-columns:repeat(2, minmax(180px, 1fr));
gap:12px 26px;
padding:0;
margin-top:18px;
}

.footer-products li{
position:relative;
padding-left:16px;
font-size:0.95rem;
line-height:1.65;
color:rgba(245,245,240,0.88);
}

.footer-products li::before{
content:"";
position:absolute;
left:0;
top:11px;
width:6px;
height:6px;
border-radius:50%;
background:var(--gold);
}

.footer-inline-link{
display:inline-block;
margin-top:14px;
font-size:0.96rem;
font-weight:500;
color:#8df2db;
text-decoration:none;
}

.footer-inline-link:hover{
color:#baf9eb;
}

.footer-inline-muted{
display:block;
color:rgba(245,245,240,0.76);
}

.footer-inline-muted:hover{
color:#fff;
}

.footer-bottom{
display:flex;
justify-content:space-between;
gap:18px;
padding-top:22px;
border-top:1px solid rgba(255,255,255,0.12);
font-size:0.94rem;
color:rgba(245,245,240,0.7);
}

.whatsapp{
position:fixed;
right:20px;
bottom:20px;
display:flex;
align-items:center;
text-decoration:none;
color:#202020;
z-index:1200;
transition:transform 0.25s ease, filter 0.25s ease;
}

.whatsapp:hover{
transform:translateY(-4px);
filter:brightness(1.02);
}

.whatsapp-text{
display:flex;
flex-direction:column;
justify-content:center;
min-height:68px;
padding:12px 48px 12px 14px;
margin-right:-22px;
border-radius:14px 18px 18px 14px;
background:rgba(255,255,255,0.96);
box-shadow:0 14px 30px rgba(10,18,40,0.18);
font-size:0.98rem;
line-height:1.2;
}

.whatsapp-text strong{
font-weight:700;
}

.whatsapp-icon{
width:62px;
height:62px;
display:grid;
place-items:center;
flex-shrink:0;
border-radius:50%;
background:#25d366;
color:#fff;
border:3px solid rgba(255,255,255,0.92);
box-shadow:0 16px 30px rgba(37,211,102,0.34);
}

.whatsapp svg{
width:30px;
height:30px;
fill:currentColor;
}

.reveal{
opacity:0;
filter:blur(18px);
transform:translate3d(0, 72px, 0) scale(0.88);
transform-origin:center top;
transition:opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1.08s cubic-bezier(0.22, 1, 0.36, 1), filter 0.95s ease;
}

.reveal.show{
opacity:1;
filter:none;
transform:translate3d(0, 0, 0) scale(1);
}

[data-stagger-item]{
opacity:0;
filter:blur(14px);
transform:translate3d(0, 48px, 0) scale(0.9);
transition:
opacity 0.92s cubic-bezier(0.22, 1, 0.36, 1) var(--stagger-delay, 0ms),
transform 0.98s cubic-bezier(0.22, 1, 0.36, 1) var(--stagger-delay, 0ms),
filter 0.9s ease var(--stagger-delay, 0ms);
}

[data-stagger-item].is-stagger-visible{
opacity:1;
filter:none;
transform:none;
}

@media(max-width:1180px){
.hero{
grid-template-columns:minmax(0, 1fr) minmax(0, 0.98fr);
padding-inline:6%;
}

.confidence-strip,
.solutions .section-heading,
.banner,
.grid{
width:min(100%, calc(100% - 12%));
}

.grid{
grid-template-columns:repeat(3, minmax(0, 1fr));
}

.journey-grid,
.support-grid{
grid-template-columns:repeat(3, minmax(0, 1fr));
}

.footer-top{
grid-template-columns:minmax(220px, 280px) minmax(280px, 1fr);
}

.footer-social{
justify-content:flex-start;
grid-column:1 / -1;
}

.footer-grid{
grid-template-columns:repeat(2, minmax(0, 1fr));
}

.footer-column-wide{
grid-column:1 / -1;
}
}

@media(max-width:900px){
.navbar{
padding:16px 5%;
gap:16px;
}

.hero{
grid-template-columns:1fr;
min-height:auto;
padding:40px 6% 26px;
}

.hero-text{
max-width:720px;
margin:0 auto;
align-items:center;
text-align:center;
}

.hero-text h1,
.hero-text p{
max-width:none;
}

.hero-actions,
.hero-trust{
justify-content:center;
}

.hero-visual{
max-width:720px;
margin:0 auto;
width:100%;
padding:0;
display:block;
}

.hero-img{
width:100%;
min-height:420px;
height:420px;
}

.hero-slider-indicators{
right:20px;
bottom:20px;
}

.hero-panel{
position:relative;
left:auto;
bottom:auto;
width:calc(100% - 36px);
margin:-54px auto 0;
}

.confidence-strip{
grid-template-columns:1fr;
padding-bottom:84px;
}

.grid{
grid-template-columns:repeat(2, minmax(0, 1fr));
}

.journey-grid{
grid-template-columns:1fr;
}

.diferenciais{
padding-inline:6%;
}

.dif-container{
grid-template-columns:1fr;
}

.contact-band{
flex-direction:column;
align-items:flex-start;
margin-inline:6%;
padding:32px;
}

.contact-band-actions{
justify-content:flex-start;
}

.team{
padding-inline:5%;
}

.team-page-hero{
max-width:760px;
}

.team-grid{
grid-template-columns:1fr;
}

.support-grid{
grid-template-columns:1fr;
}

.footer-top{
grid-template-columns:1fr;
gap:26px;
}

.footer-photo-panel{
justify-self:center;
max-width:320px;
}

.footer-brand{
justify-self:stretch;
}

.footer-social{
grid-column:auto;
}

.footer-grid{
grid-template-columns:1fr;
gap:30px;
}

.footer-products{
grid-template-columns:repeat(2, minmax(0, 1fr));
}

.footer-column-wide{
grid-column:auto;
}

.footer-bottom{
flex-direction:column;
}

.logo{
height:54px;
}

.whatsapp{
right:14px;
bottom:14px;
}

.whatsapp-text{
padding:10px 42px 10px 12px;
margin-right:-18px;
min-height:60px;
font-size:0.82rem;
}

.whatsapp-icon{
width:56px;
height:56px;
}
}

@media(prefers-reduced-motion:reduce){
html{
scroll-behavior:auto;
}

.reveal,
.hero-slide,
.banner-track,
[data-stagger-item]{
transition:none !important;
filter:none !important;
}

.hero-text,
.hero-visual,
.hero-actions > *,
.hero-trust span,
.gold-shine-word{
animation:none !important;
opacity:1 !important;
transform:none !important;
}
}

@media(max-width:760px){
body.nav-open{
overflow:hidden;
}

.navbar{
display:grid;
grid-template-columns:1fr auto;
align-items:center;
padding:14px 4.5%;
gap:14px;
}

.navbar > *{
min-width:0;
}

.nav-toggle{
display:inline-flex;
}

.menu,
.navbar > .btn-gold{
display:none;
}

.navbar.is-open .menu{
display:flex;
grid-column:1 / -1;
flex-direction:column;
align-items:stretch;
gap:8px;
padding:16px;
background:rgba(255,255,255,0.98);
border:1px solid rgba(18,18,18,0.08);
border-radius:22px;
box-shadow:0 18px 34px rgba(17,17,17,0.08);
}

.navbar.is-open > .btn-gold{
display:inline-flex;
grid-column:1 / -1;
width:100%;
}

.menu a{
display:block;
padding:10px 12px;
border-radius:12px;
}

.menu a::after{
display:none;
}

.menu a.gold,
.menu a[aria-current="page"]{
background:rgba(197,160,89,0.14);
}

.confidence-strip,
.solutions .section-heading,
.banner,
.grid,
.contact-band{
width:calc(100% - 10%);
margin-inline:auto;
}

.service-journey,
.diferenciais,
.site-footer{
padding-left:5%;
padding-right:5%;
}
}

@media(max-width:620px){
.hero{
padding-top:24px;
gap:24px;
}

.hero-text{
gap:16px;
}

.hero-text h1{
font-size:clamp(2.05rem, 8.8vw, 2.8rem);
max-width:11ch;
}

.hero-text p{
font-size:0.96rem;
line-height:1.72;
}

.hero-actions{
width:100%;
flex-direction:column;
align-items:stretch;
}

.hero-actions .btn-gold,
.hero-actions .btn-light,
.contact-band-actions .btn-gold,
.contact-band-actions .btn-light,
.team-page-actions .btn-gold,
.team-page-link{
width:100%;
}

.hero-trust span,
.team-page-highlights span{
width:100%;
justify-content:center;
text-align:center;
}

.hero-img{
min-height:280px;
height:280px;
border-radius:24px;
}

.hero-slider-indicators{
right:16px;
bottom:16px;
gap:8px;
}

.hero-slider-indicator{
width:28px;
}

.hero-panel{
width:calc(100% - 24px);
padding:22px;
}

.banner{
min-height:320px;
border-radius:26px;
}

.banner-text{
font-size:clamp(1.9rem, 9vw, 2.6rem);
}

.grid{
grid-template-columns:1fr;
}

.circle{
width:122px;
}

.service-journey{
padding-top:84px;
padding-bottom:84px;
}

.diferenciais{
padding-top:84px;
padding-bottom:92px;
}

.dif-box{
padding:24px;
}

.contact-band{
padding:28px 24px;
margin-bottom:84px;
}

.contact-band h2{
font-size:clamp(1.8rem, 8vw, 2.4rem);
}

.team-page-hero h1{
font-size:clamp(2.1rem, 10vw, 3rem);
}

.team-page-actions{
flex-direction:column;
align-items:stretch;
}

.team-support{
padding-top:48px;
padding-bottom:82px;
}

.footer-products{
grid-template-columns:1fr;
}

.whatsapp-text{
display:none;
}

.whatsapp-icon{
width:58px;
height:58px;
}
}

@media(max-width:420px){
.logo{
height:48px;
}

.navbar{
padding:12px 4%;
}

.nav-toggle{
width:44px;
height:44px;
}

.hero-text h1{
font-size:clamp(1.85rem, 8.6vw, 2.2rem);
}

.hero-text p,
.section-heading p,
.journey-card p,
.card p,
.team-card-copy,
.support-card p{
font-size:0.93rem;
}

.hero-img img{
min-height:240px;
}

.team-card-body{
padding:20px 20px 24px;
}

.team-card h3{
font-size:1.32rem;
}

.contact-band{
width:calc(100% - 8%);
padding:24px 20px;
}

.footer-bottom{
gap:10px;
font-size:0.88rem;
}

.whatsapp{
right:12px;
bottom:12px;
}

.whatsapp-icon{
width:54px;
height:54px;
}
}
