:root{

--beige:#F3EDE4;

--gold:#C9A35F;

--gold2:#D8B97A;

--black:#111111;

--black2:#1F1F1F;

--white:#FAF8F5;

}

*{

margin:0;

padding:0;

box-sizing:border-box;

}

body{

font-family:Poppins;

background:var(--beige);

color:var(--black);

overflow-x:hidden;

}

.container{

width:90%;

max-width:1400px;

margin:auto;

}

header{

position:fixed;

top:0;

width:100%;

z-index:999;

padding:20px 0;

backdrop-filter:blur(20px);

background:rgba(250,248,245,.85);

}

.navbar{

display:flex;

justify-content:space-between;

align-items:center;

}

.logo{

display:flex;

align-items:center;

}

.logo img{

height:165px;

width:auto;

object-fit:contain;

display:block;

transition:.3s;

}

.top-bar{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

.top-bar span{
    display:flex;
    align-items:center;
    gap:8px;
    
}

.top-bar i{
    font-size:14px;
}

nav{

display:flex;

gap:35px;

}

nav a{

text-decoration:none;

color:#111;

font-weight:500;

}

.btn-header{

background:var(--gold);

padding:15px 28px;

border-radius:60px;

color:white;

cursor:pointer;

}

.btn-header:hover{

background:black;

}



.hero-img{
    width:100%;
    height:auto;
    display:block;
}








.hero-content{

position:relative;

z-index:10;

max-width:700px;

color:white;

}



.hero-content span{

color:#D8B97A;

font-weight:700;

}







.hero-content p{

margin-top:30px;

font-size:20px;

line-height:1.9;

}



.hero-buttons{

display:flex;

gap:20px;

margin-top:45px;

}


.hero-content span{

color:var(--gold);

font-weight:700;

}

.hero-content h1{

font-family:Montserrat;

font-size:78px;

line-height:1.1;

margin-top:20px;

}

.hero-content p{

margin-top:30px;

font-size:19px;

line-height:1.9;

max-width:650px;

}

.hero-buttons{

margin-top:50px;

display:flex;

gap:20px;

}

.btn-main{

background:var(--gold);

padding:18px 40px;

border-radius:60px;

color:white;

text-decoration:none;

}

.btn-main:hover{

background:black;

}

.btn-secondary{

border:2px solid black;

padding:18px 40px;

border-radius:60px;

color:black;

text-decoration:none;

}

.hero-image img{

width:100%;

border-radius:40px;

box-shadow:0 40px 90px rgba(0,0,0,.12);

}

.whatsapp{

position:fixed;

right:30px;

bottom:30px;

width:78px;

height:78px;

border-radius:50%;

background:#C9A35F;

display:flex;

align-items:center;

justify-content:center;

box-shadow:

0 15px 40px rgba(201,163,95,.35);

z-index:999;

transition:.4s;

}



.whatsapp img{

width:34px;

height:34px;

filter:

brightness(0)

invert(1);

}



.whatsapp:hover{

background:#111111;

transform:

translateY(-8px)

scale(1.08);

box-shadow:

0 25px 60px rgba(0,0,0,.25);

}

.whatsapp::before{

content:"";

position:absolute;

width:100%;

height:100%;

border-radius:50%;

border:2px solid rgba(201,163,95,.4);

animation:pulse 2s infinite;

}



@keyframes pulse{

0%{

transform:scale(1);

opacity:1;

}

100%{

transform:scale(1.5);

opacity:0;

}

}


.proceso{

padding:80px 0;

background:#F3EDE4;

}



.banner-grid{

display:grid;

grid-template-columns:
1fr
1fr
1fr
320px;

gap:15px;

}



.item{

position:relative;

height:260px;

overflow:hidden;

border-radius:24px;

}



.item img{

width:100%;

height:100%;

object-fit:cover;

transition:.6s;

}



.item:hover img{

transform:scale(1.08);

}



.contenido{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

padding:30px;

display:flex;

flex-direction:column;

justify-content:flex-start;

background:

linear-gradient(
to top,
rgba(0,0,0,.25),
rgba(0,0,0,.05)
);

}



.icono{

width:56px;

height:56px;

border-radius:50%;

background:#C9A35F;

display:flex;

justify-content:center;

align-items:center;

color:white;

font-size:22px;

}



.contenido h3{

margin-top:18px;

font-family:Montserrat;

font-size:22px;

color:#111111;



}



.contenido p{

margin-top:12px;

line-height:1.8;

max-width:230px;

color:#222;

}



/* =========================
TARJETA DERECHA
========================= */

.agenda{

background:#111111;

border-radius:24px;

padding:40px 30px;

display:flex;

flex-direction:column;

justify-content:center;

align-items:flex-start;

color:#FAF8F5;

min-height:260px;

height:100%;

}



/* TITULO */

.agenda h2{

font-family:Montserrat;

font-size:32px;

line-height:1.2;

color:#C9A35F;

margin-bottom:15px;

max-width:240px;

}



/* TEXTO */

.agenda p{

font-size:15px;

line-height:1.7;

color:#EAEAEA;

margin-bottom:25px;

max-width:220px;

}



/* BOTON */

.agenda-btn{

display:inline-flex;

justify-content:center;

align-items:center;

padding:14px 28px;

border-radius:60px;

background:#C9A35F;

color:#FFFFFF;

text-decoration:none;

font-weight:600;

font-size:14px;

transition:.4s;

}



.agenda-btn:hover{

background:#D8B97A;

transform:translateY(-4px);

}



/* =========================
TEXTO INFERIOR
========================= */

.valores{

display:flex;

justify-content:center;

align-items:center;

gap:18px;

margin-top:28px;

flex-wrap:wrap;

color:#C9A35F;

font-size:13px;

font-weight:600;

text-align:center;

}



/* =========================
RESPONSIVE
========================= */

@media(max-width:1200px){

.banner-grid{

grid-template-columns:
1fr
1fr;

}

}



@media(max-width:768px){

.banner-grid{

grid-template-columns:1fr;

}



.item{

height:320px;

}



.agenda{

padding:35px 25px;

min-height:auto;

align-items:center;

text-align:center;

}



.agenda h2{

font-size:28px;

max-width:100%;

}



.agenda p{

font-size:14px;

max-width:100%;

}



.agenda-btn{

width:100%;

}



.valores{

font-size:11px;

gap:10px;

}

}

.valores{

font-size:12px;

}




.carousel-section{

padding:40px 0 120px;

background:var(--beige);



}



.carousel-section h2{

text-align:center;

font-size:52px;

margin-bottom:60px;

font-family:Montserrat;

}



.carousel{

position:relative;

max-width:1400px;

margin:auto;



}



.slides{

position:relative;

overflow:hidden;

border-radius:40px;

}



.slide{

width:100%;

display:none;

height:650px;

object-fit:cover;

}



.slide.active{

display:block;

animation:fade .7s;

}



@keyframes fade{

from{

opacity:.5;

}

to{

opacity:1;

}

}




.next{

margin-top: 15%;    

position:absolute;

top:50%;

transform:translateY(-50%);

width:40px;

height:40px;

border:none;

border-radius:450%;

background:#C9A35F;

color:white;

font-size:28px;

cursor:pointer;

z-index:20;

}



.prev{

left:30px;

}



.next{

right:30px;

}



.prev:hover,
.next:hover{

background:#111111;

}





/* FOOTER */

.footer{

background:#111111;

padding:100px 0 30px;

color:#FAF8F5;

}



.footer-grid{

display:grid;

grid-template-columns:
1fr
1fr
1.4fr;

gap:60px;

align-items:flex-start;

}



.footer-info img{

width:180px;

margin-bottom:25px;

}



.footer-info p{

line-height:1.9;

max-width:300px;

color:#d9d9d9;

}


.socials{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin-top:30px;

}

.socials a{

    display:flex;

    align-items:center;

    gap:12px;

    color:#C9A35F;

    text-decoration:none;

    font-weight:600;

    transition:.3s ease;

}

.socials a i{

    font-size:24px;

    min-width:24px;

}

.socials a:hover{

    color:#ffffff;

    transform:translateX(8px);

}



.footer-contact h3{

font-family:Montserrat;

font-size:30px;

margin-bottom:25px;

color:#C9A35F;

}



.footer-contact a{

display:block;

margin-bottom:18px;

text-decoration:none;

color:#FAF8F5;

transition:.3s;

}



.footer-contact a:hover{

color:#C9A35F;

}



.footer-contact p{

margin-top:12px;

line-height:1.8;

color:#d6d6d6;

}


.footer-map{
    position:relative;
}

.footer-map iframe{
    width:100%;
    height:320px;
    border:none;
    border-radius:25px;
}

.btn-waze{
    position:absolute;
    bottom:20px;
    right:20px;

    display:flex;
    align-items:center;
    gap:10px;

    padding:12px 20px;

    background:#33CCFF;
    color:#fff;

    text-decoration:none;
    font-weight:600;

    border-radius:50px;

    box-shadow:0 5px 15px rgba(0,0,0,.2);

    transition:.3s;
}

.btn-waze:hover{
    transform:translateY(-3px);
}

.btn-waze img{
    width:28px;
    height:28px;
}



.footer-bottom{

margin-top:60px;

padding-top:30px;

border-top:1px solid rgba(255,255,255,.1);

text-align:center;

color:#9c9c9c;

}