/* VARIABLES */

:root {
--verde-marca:#6b7e6a;
--verde-hover:#5a6b59;
--dorado-suave:#c5b358;
--crema-fondo:#f9f7f2;
--texto-oscuro:#2c2c2c;
--blanco:#ffffff;
}

/* CONTAINER */

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}
section{
padding:80px 0;
}

/* HERO */


.hero{
background:linear-gradient(
135deg,
#f9f7f2 0%,
#eef3ec 40%,
#f4efe6 100%
);
padding:80px 0;
position:relative;
overflow:hidden;
}


.hero::before{
content:"";
position:absolute;
width:900px;
height:900px;
background:radial-gradient(circle,#dfe8dd 0%,transparent 70%);
top:-350px;
right:-300px;
z-index:0;
opacity:.6;
}

.hero::before,
.hero::after{
animation:floatShape 12s ease-in-out infinite alternate;
}

@keyframes floatShape{

from{
transform:translateY(0);
}

to{
transform:translateY(30px);
}

}

.hero-wrapper{
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
position:relative;
z-index:2;
}

/* TEXTO */

.hero-text{
flex:1.2;
animation:heroFade 1s ease;
}

/* LOGO */

.hero-logo{
width:220px;
margin-bottom:25px;
}

/* BADGE RESEÑAS */

.review-badge{
display:inline-flex;
align-items:center;
gap:10px;
background:white;
padding:8px 16px;
border-radius:30px;
font-size:.9rem;
box-shadow:0 5px 20px rgba(0,0,0,.08);
margin-bottom:20px;
}

.review-badge span{
color:#666;
}

/* TITULO */

.hero-text h1{
font-family:'Playfair Display',serif;
font-size:3.2rem;
color:var(--verde-marca);
line-height:1.1;
margin-bottom:20px;
}

/* DESCRIPCION */

.hero-text p{
font-size:1.2rem;
max-width:500px;
margin-bottom:35px;
line-height:1.6;
color:var(--texto-oscuro);
opacity:.9;
}

/* BOTONES */

.hero-actions{
display:flex;
flex-direction:column;
gap:20px;
}

/* BOTON PRINCIPAL */

.btn-main{
background:linear-gradient(135deg,#6b7e6a,#5a6b59);
color:white;
padding:18px 38px;
border-radius:50px;
text-decoration:none;
font-weight:600;
font-size:1rem;
letter-spacing:.3px;
transition:.3s;
box-shadow:0 10px 25px rgba(107,126,106,.25);
}

.btn-main:hover{
transform:translateY(-4px);
box-shadow:0 15px 35px rgba(107,126,106,.35);
}

/* UBICACION */

.location-tag{
font-size:.95rem;
color:var(--verde-marca);
font-weight:500;
}

/* IMAGEN HERO */

.hero-image-box{
flex:1;
display:flex;
justify-content:center;
position:relative;
animation:heroFadeRight 1s ease;
}

/* SHAPE ORGANICO */

.hero-image-box::before{
content:"";
position:absolute;
width:340px;
height:340px;
background:linear-gradient(135deg,#d8e3d6,#f4efe6);
border-radius:60% 40% 50% 70% / 60% 40% 70% 40%;
top:40px;
right:10px;
z-index:0;
filter:blur(2px);
}

/* IMAGEN */

.hero-image-box img{
width:100%;
max-width:420px;
aspect-ratio:4/5;
object-fit:cover;
border-radius:200px 200px 20px 20px;
position:relative;
z-index:2;
box-shadow:30px 30px 80px rgba(0,0,0,.1);
transition:transform .6s ease;
}

.hero-image-box img:hover{
transform:scale(1.03);
}

/* ANIMACIONES */

@keyframes heroFade{

from{
opacity:0;
transform:translateY(40px);
}

to{
opacity:1;
transform:translateY(0);
}

}

@keyframes heroFadeRight{

from{
opacity:0;
transform:translateX(60px);
}

to{
opacity:1;
transform:translateX(0);
}

}

/* RESPONSIVE */

@media(max-width:992px){

.hero-text h1{
font-size:3rem;
}

.hero-wrapper{
gap:40px;
}

}

@media(max-width:768px){

.hero{
padding:70px 0;
}

.hero-wrapper{
flex-direction:column-reverse;
text-align:center;
}

.hero-text p{
margin:auto;
}

.hero-actions{
align-items:center;
}

.hero-image-box::before{
width:320px;
height:320px;
top:20px;
}

.hero-text h1{
font-size:2.4rem;
}

}

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

body{
font-family:'Inter',sans-serif;
background:linear-gradient(180deg,#f7f5f0,#f2eee7);
color:#333;
line-height:1.6;
}

h1,h2,h3{
font-family:'Playfair Display',serif;
color:#3f5a45;
}



/* HEADER */
.header{
background:white;
box-shadow:0 4px 20px rgba(0,0,0,0.05);
position:sticky;
top:0;
z-index:100;
backdrop-filter: blur(6px);
}

/* MARCA HEADER */

.brand{
display:flex;
align-items:center;
gap:12px;
}

.brand img{
width:45px;
height:45px;
object-fit:contain;
}

.brand-text{
display:flex;
flex-direction:column;
line-height:1.1;
}

.brand-name{
font-family:'Playfair Display',serif;
font-size:1.2rem;
font-weight:600;
color:#3f5a45;
}

.brand-role{
font-size:.8rem;
color:#6b7e6a;
letter-spacing:.5px;
}


.nav{
display:flex;
justify-content:space-between;
align-items:center;
}

.btn-nav{
background:#6e8b73;
color:white;
padding:10px 20px;
border-radius:20px;
text-decoration:none;
}

/* HERO */

/* SERVICIOS */
.services{
padding-top:60px;
padding-bottom:80px;
}

.services h2{
margin-bottom:25px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:30px;
}

.service-card{
background:white;
padding:35px;
border-radius:18px;
box-shadow:0 15px 40px rgba(0,0,0,0.06);
transition:all .35s ease;
text-align:center;
}

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 25px 60px rgba(0,0,0,0.08);
}
/* BENEFICIOS */

.benefits{
background:white;
padding:80px 20px;
text-align:center;
margin-top:20px;
}



.benefits h2{
margin-bottom:30px;
}

.benefits-grid{
margin-top:30px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:25px;
max-width:900px;
margin-left:auto;
margin-right:auto;
}
.benefits-grid div{
background:#f8f8f8;
padding:15px 18px;
border-radius:10px;
font-size:.95rem;
}
.services h2,
.benefits h2,
.about h2{
margin-bottom:20px;
}

/* SOBRE */

.about{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
padding-top:90px;
padding-bottom:90px;
}

.about-text p{
margin-top:15px;
}

.about img{
width:100%;
border-radius:10px;
}

/* CTA */

.cta{
background:linear-gradient(135deg,#6b7e6a,#5a6b59);
color:white;
text-align:center;
padding:90px 20px;
border-radius:40px 40px 0 0;
margin-top:80px;
}

.cta p{
margin:15px 0 25px;
}

.cta h2{
color:white;
margin-bottom:15px;
}
.cta .btn-main{
margin-top:20px;
font-size:1.1rem;
padding:20px 40px;
}

/* FOOTER */

footer{
background:#2f3d33;
color:white;
text-align:center;
padding:30px;
}

.agency{
margin-top:10px;
font-size:14px;
}

.agency a{
color:#b7d1b9;
text-decoration:none;
}

.wave-divider{
width:100%;
overflow:hidden;
line-height:0;
margin-top:-40px;
}

.wave-divider svg{
width:100%;
height:80px;
display:block;
}

.wave-divider path{
fill:white;
}
/* WHATSAPP */

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25d366;
color:white;
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
text-decoration:none;
box-shadow:0 10px 25px rgba(0,0,0,.2);
z-index:9999;

animation:whatsappPulse 3s infinite;
}


/* RESPONSIVE */

@media(max-width:768px){

.hero-content h1{
font-size:32px;
}

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

}


.service-icon{
width:55px;
height:55px;
border-radius:50%;
background:#eef3ec;
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
color: var(--verde-marca);
margin-bottom:15px;
}


.service-card{
background:white;
padding:30px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:.3s;
}

.service-card:hover{
transform:translateY(-6px);
box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.service-card h3{
margin-bottom:10px;
}

.nav-actions{
display:flex;
align-items:center;
gap:15px;
}

.instagram-link{
width:38px;
height:38px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:#f2f2f2;
color:#6b7e6a;
font-size:18px;
transition:.3s;
text-decoration:none;
}

.instagram-link:hover{
background:#e9e9e9;
transform:scale(1.08);
}

.footer-social{
margin:15px 0;
}

.footer-social a{
color:white;
text-decoration:none;
font-size:15px;
display:inline-flex;
align-items:center;
gap:8px;
opacity:.9;
transition:.3s;
}

.footer-social a:hover{
opacity:1;
transform:translateY(-2px);
}

.footer-social i{
font-size:18px;
}

/* BOTON INSTAGRAM FLOTANTE */

/* BOTON WHATSAPP */

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25d366;
color:white;
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
text-decoration:none;
box-shadow:0 10px 25px rgba(0,0,0,.2);
z-index:9999;
}

/* BOTON INSTAGRAM */

.instagram-float{
position:fixed;
bottom:90px;
right:20px;
background:#E4405F;
color:white;
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
text-decoration:none;
box-shadow:0 10px 25px rgba(0,0,0,.2);
z-index:9999;
}

/* VERSION MOVIL */

@media(max-width:768px){

.whatsapp,
.instagram-float{
width:50px;
height:50px;
font-size:22px;
}

.whatsapp{
bottom:20px;
}

.instagram-float{
bottom:80px;
}

}

@keyframes whatsappPulse{

0%{
box-shadow:0 0 0 0 rgba(37,211,102,0.7);
}

70%{
box-shadow:0 0 0 15px rgba(37,211,102,0);
}

100%{
box-shadow:0 0 0 0 rgba(37,211,102,0);
}

}