@charset "utf-8";
/* CSS Document */

:root{

--blue:#D98744;
--blue-dark:#1e40af;
--gray:#6b7280;
--light:#f7f9fc;
--border:#e5e7eb;

}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html, body{
overflow-x:hidden;
}

body{
font-family:'roboto',sans-serif;
background:white;
color:#111;
line-height:1.6;
}

img{
max-width:100%;
height:auto;
display:block;
}

.features{
display:flex;
gap:40px;
margin-top:10px;
margin-bottom:26px;
}


.feature p{
color:#64748b;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

header{
border-bottom:1px solid var(--border);
background:white;
position:sticky;
top:0;
z-index:100;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
height:70px;
}

.logo img{
height:42px;
width:auto;
display:block;
}

.menu{
display:flex;
gap:28px;
}

.menu a{
text-decoration:none;
color:#333;
font-size:15px;
}

.menu a:hover{
color:#D98744;
}

.section:first-of-type{
background:#f8fafc;
}

.section-process{
background:#f3f6fb;

border:1px solid rgba(0,0,0,0.04);

border-radius:40px;
padding:90px 120px;
max-width:1160px;
margin:60px auto;

box-shadow:0 25px 60px rgba(0,0,0,0.06);
}

.hero{
position:relative;
height:640px;
display:flex;
align-items:center;
overflow:hidden;
border-bottom:1px solid rgba(255,255,255,0.6);
box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.hero-image{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:1;
}

.hero-image img{
width:100%;
height:100%;
object-fit:cover;
transform:scale(1.08);
animation:heroZoom 18s ease-in-out infinite alternate;
}

.hero-content{
position:relative;
z-index:2;
width:100%;
max-width:1400px;
padding-left:120px;
padding-right:20px;
margin:0;
}
	
.hero-text h1{
font-family:'Roboto Condensed', sans-serif;
font-size:64px;
font-weight:700;
line-height:0.90;
letter-spacing:-3px;
color:#1e3a8a;
}
	
.hero-text{
font-family:'Roboto', sans-serif;
position:relative;
max-width:520px;
z-index:6;
}
	
.hero::before{
content:"";
position:absolute;
top:0;
left:-120%;
width:120%;
height:100%;
z-index:2;
	
background:linear-gradient(
110deg,
transparent 40%,
rgba(255,255,255,0.6) 50%,
transparent 60%
);

mix-blend-mode:soft-light;
animation:lightSweep 6s linear infinite;
pointer-events:none;
}

.hero-divider{
position:absolute;
bottom:0;
left:0;
width:100%;
line-height:0;
overflow:hidden;
}

.hero-divider svg{
display:block;
width:100%;
height:120px;
}

.hero-divider path{
fill:#ffffff;
}

.highlight-orange{
color:#D98744;
font-weight:700;
}

.title{
font-family:'Roboto', sans-serif;
text-align:center;
font-size:45px;
margin-bottom:5px;
color:#1e3a8a;
letter-spacing:-1px;
}

.subtitle{
font-family:'Roboto Condensed', sans-serif;
font-size:22px;
margin-bottom:20px;
color:#1e3a8a;
}

.subtitle-section{
text-align:center;
color:#64748b;
font-size:16px;
margin-bottom:80px;
letter-spacing:1.5px;
}

.description{
font-size:16px;
color:#555;
margin-bottom:25px;
}

.buttons{
display:flex;
gap:14px;
margin-bottom:15px;
}

.btn{
padding:13px 24px;
border-radius:10px;
font-weight:500;
text-decoration:none;
font-size:15px;
}

.btn-primary{
background:var(--blue);
color:white;
}

.btn-primary:hover{
background:var(--blue-dark);
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
font-size:28px;
color:#ffffff;
line-height:1;
width:60px;
height:60px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 8px 25px rgba(0,0,0,0.25);
text-decoration:none;
z-index:999;
transition:transform .25s ease, box-shadow .25s ease;
}

.whatsapp:hover{
transform:translateY(-5px);
box-shadow:0 18px 40px rgba(0,0,0,0.35);
}

.btn-whatsapp{
background:#25D366;
color:white;
font-weight:600;
font-size:16px;
padding:16px 34px;
border-radius:14px;
box-shadow:0 20px 45px rgba(0,0,0,0.18);
transition:all .25s ease;
}

.btn-whatsapp:hover{
transform:translateY(-3px);
box-shadow:0 20px 45px rgba(0,0,0,0.22);
}

.trust{
font-size:14px;
color:var(--gray);
}

.section{
padding:80px 0;
}

.section-divider{
width:100%;
max-width:1200px;
margin:40px auto;
height:1px;
background:linear-gradient(
to right,
transparent,
#e5e7eb,
transparent
);
}

.cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:-80px;
position:relative;
z-index:5;
width:100%;
}

.card{
background:white;
border-radius:16px;
overflow:hidden;
border:6px solid white;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
transition:0.25s;
}

.card:hover{
transform:translateY(-6px);
box-shadow:0 25px 60px rgba(0,0,0,0.12);
color:#f59e0b;
}

.card img{
width:100%;
height:200px;
object-fit:cover;
}

.card-body{
padding:22px;
}

.card-body h3{
margin-bottom:2px;
font-size:20px;
color:#D98744;
font-weight:700;
}

.card-body p{
color:#334155;
font-size:16px;
}

.section-cards{
margin-top:-120px;
padding-top:160px;
position:relative;
z-index:5;
}

.timeline-cta{
display:flex;
justify-content:center;
margin-top:40px;
margin-bottom:60px;
transform:translateY(-85px);
position:relative;
z-index:10;
}

.gallery{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:16px;
}

.gallery img{
width:100%;
border-radius:12px;
transition:all .35s ease;
cursor:pointer;
}

.gallery img:hover{
transform:scale(1.05);
}

.steps{
position:relative;
display:flex;
align-items:center;
justify-content:space-between;
margin-top:60px;
max-width:900px;
margin:60px auto 0 auto;
}

.steps::before{
content:"";
position:absolute;
top:36px;
left:0;
width:100%;
height:3px;
background:#D9874420;
}

.step{
position:relative;
text-align:center;
max-width:160px;
transition:0.25s;
}

.step:hover{
transform:translateY(-6px);
}

.step:hover .icon{
background:#D98744;
color:white;
}

.step-number{
position:absolute;
top:-8px;
left:50%;
transform:translateX(-50%);
font-size:11px;
font-weight:700;
color:#94a3b8;
letter-spacing:1px;
}

.step p{
font-size:15px;
font-weight:500;
color:#1e3a8a;
letter-spacing:-0.2px;
}

.icon{
width:72px;
height:72px;
border-radius:50%;
background:white;
border:3px solid #D98744;
display:flex;
align-items:center;
justify-content:center;
margin:auto;
margin-bottom:16px;
font-size:26px;
color:#D98744;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
position:relative;
z-index:2;
}

.icon::before{
content:attr(data-step);
position:absolute;
top:-10px;
right:-10px;
background:#D98744;
color:white;
font-size:11px;
font-weight:700;
width:22px;
height:22px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
}

.icon::after{
content:attr(data-step);
position:absolute;
top:-10px;
right:-10px;
background:#D98744;
color:white;
font-size:11px;
font-weight:700;
width:22px;
height:22px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
}

.step:hover .icon{
transform:translateY(-6px);
box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

.cta{
background:var(--blue);
color:white;
text-align:center;
padding:70px 20px;
border-radius:16px;
}

.cta h2{
font-size:30px;
margin-bottom:20px;
}

.cta a{
background:white;
color:var(--blue);
padding:14px 26px;
border-radius:10px;
text-decoration:none;
font-weight:600;
}

.dtf{
display:grid;
grid-template-columns:0.35fr 0.65fr;
gap:70px;
align-items:center;
}

.dtf-image img{
width:100%;
max-width:360px;
border-radius:20px;
box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.dtf-content h2{
font-size:36px;
margin-bottom:30px;
color:#1e3a8a;
}

.dtf-content{
max-width:540px;
}

.section-company{
background:#f3f6fb;
border:1px solid rgba(0,0,0,0.04);
border-radius:40px;
padding:70px 70px;
max-width:1160px;
margin:60px auto;
box-shadow:0 25px 60px rgba(0,0,0,0.06);
}

.section-company .dtf{
display:grid;
grid-template-columns:0.35fr 0.65fr;
gap:70px;
align-items:center;
}

.feature h4{
font-size:17px;
margin-bottom:6px;
color:#111;
font-weight:600;
}

.feature p{
font-size:16px;
color:#64748b;
line-height:1.6;
max-width:420px;
}

.company-tag{
font-size:13px;
letter-spacing:2px;
font-weight:600;
color:#D98744;
margin-bottom:6px;
display:block;
}

.company-title{
font-size:38px;
color:#1e3a8a;
margin-bottom:16px;
letter-spacing:-0.5px;
line-height:1.15;
}

.company-highlight{
font-size:19px;
font-weight:700;
color:#D98744;
margin-bottom:10px;
line-height:1.4;
}

.company-text{
font-size:16px;
color:#334155;
line-height:1.7;
margin-bottom:24px;
max-width:520px;
}

.experience-badge{
display:inline-block;
background:#f3f6fb;
border-radius:14px;
padding:18px 24px;
font-size:34px;
font-weight:700;
color:#1e3a8a;
margin-bottom:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.company-divider{
width:80px;
height:3px;
background:linear-gradient(
90deg,
#D98744,
#f59e0b
);
border-radius:3px;
margin:28px 0;
}

.experience-badge span{
display:block;
font-size:13px;
font-weight:500;
color:#64748b;
letter-spacing:1px;
margin-top:4px;
}


.footer{
background:#0b3766;
color:white;
padding:70px 0 0 0;
margin-top:80px;
}

.footer-grid{
display:grid;
grid-template-columns:1.4fr 1fr 1fr;
gap:70px;
align-items:flex-start;
}

.footer-grid > div{
position:relative;
}

.footer-grid > div:not(:last-child)::after{
content:"";
position:absolute;
right:-35px;
top:10px;
height:80px;
width:1px;
background:rgba(255,255,255,0.08);
}

.footer-logo{
width:180px;
margin-bottom:18px;
}

.footer-brand p{
color:#cbd5e1;
line-height:1.6;
font-size:15px;
}

.footer h4{
font-size:20px;
margin-bottom:18px;
font-weight:600;
}

.footer-contact ul{
list-style:none;
}

.footer-contact li{
margin-bottom:12px;
color:#cbd5e1;
font-size:15px;
display:flex;
align-items:flex-start;
gap:10px;
}

.footer-links a{
display:block;
margin-bottom:12px;
color:#cbd5e1;
text-decoration:none;
font-size:15px;
transition:.2s;
}

.footer-links a:hover{
color:white;
}

.footer-social ul{
list-style:none;
margin-bottom:15px;
}

.footer-social li{
margin-bottom:10px;
color:#cbd5e1;
display:flex;
align-items:center;
gap:10px;
font-size:15px;
}

.social-icons{
margin-top:8px;
}

.social-icons a{
display:inline-flex;
align-items:center;
gap:8px;
color:#cbd5e1;
text-decoration:none;
font-size:15px;
}

.social-icons a i{
font-size:16px;
}

.social-icons a:hover{
color:white;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.15);
margin-top:50px;
padding:18px 0;
}

.footer-bottom-grid{
display:flex;
justify-content:space-between;
align-items:center;
font-size:14px;
color:#cbd5e1;
}

.footer-bottom a{
color:#cbd5e1;
text-decoration:none;
}

.footer-bottom a:hover{
color:white;
}



@media(max-width:900px){
	
.hero-content{
padding-left:20px;
padding-right:20px;
text-align:center;
}
	
.hero{
height:auto;
padding:80px 0 60px 0;
}	
	
.hero-text{
text-align:center;
margin:auto;
}
	
.description{
font-size:15px;
}
	
.subtitle{
font-size:20px;
margin-bottom:16px;
}
	
.hero-text h1{
font-size:34px;
line-height:1.05;
letter-spacing:-1px;
margin-bottom:12px;
}
	
.footer-contact li{
justify-content:center;
}

.footer-social li{
justify-content:center;
}

.social-icons{
display:flex;
justify-content:center;
}
	
.footer-grid{
grid-template-columns:1fr;
gap:40px;
text-align:center;
}
	
.cards{
grid-template-columns:1fr;
margin-top:10px;
}
	
.dtf-image img{
max-width:260px;
margin:auto;
}
	
.dtf-content{
order:1;
text-align:center;
max-width:100%;
padding:0 10px;
}
	
.company-title{
font-size:34px;
}
	
.company-text{
max-width:100%;
padding:0 10px;
}
	
.buttons{
margin-top:10px;
}

.btn-whatsapp{
margin-top:10px;
}
	
.section-company .dtf{
grid-template-columns:1fr;
gap:30px;
}
	
.section-company{
padding:50px 25px;
margin:30px 15px;
border-radius:25px;
}
	
.dtf-image{
order:2;
}
	
.buttons{
justify-content:center;
margin-top:10px;
}

.footer-bottom-grid{
flex-direction:column;
gap:10px;
text-align:center;
}
	
.footer-brand{
text-align:center;
}
	
.footer-logo{
display:block;
margin:0 auto 18px auto;
}
	
.footer-brand p{
text-align:center;
}
	
	
.section-process{
padding:60px 25px;
border-radius:25px;
}
	
.steps{
flex-direction:column;
gap:30px;
}

.steps::before{
display:none;
}

.dtf{
grid-template-columns:1fr;
gap:40px;
}

.features{
flex-direction:column;
gap:20px;
}
	
.btn-whatsapp{
padding:14px 22px;
font-size:15px;
border-radius:12px;
max-width:300px;
margin:auto;
margin-top:10px;
}
	
.title{
font-size:30px;
line-height:1.2;
}
	
.menu{
display:none;
}
	
.nav{
justify-content:center;
}

.section{
padding:60px 0;
}
	
.company-divider{
margin:24px auto;
}
}

@keyframes lightSweep{
0%{
left:-120%;
}
100%{
left:120%;
}
}

@keyframes heroZoom{
0%{
transform:scale(1.05);
}
100%{
transform:scale(1.12);
}
}

@media(max-width:900px){

.hero-grid{
grid-template-columns:1fr;
}

.cards{
grid-template-columns:1fr;
}

.gallery{
grid-template-columns:repeat(2,1fr);
}

.steps{
display:flex;
align-items:center;
justify-content:space-between;
margin-top:40px;
}

.line{
display:none;
}

.hero{
height:auto;
padding:100px 0;
}

.hero::after{
background:rgba(255,255,255,0.9);
}

.hero-text h1{
font-size:42px;
}
}