*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
}

header{
    height:90px;
    background:white;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 8%;

    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    height:80px;
    width:auto;
    display:block;
}

.logo-texto h2{
    margin:0;
    font-size:44px;
    color:#0E2E23;
    font-weight:700;
    
}

nav{
    display:flex;
    gap:40px;
}

nav a{
    text-decoration:none;
    color:#374151;
    font-weight:bold;
}

.hero{
    min-height:calc(100vh - 90px);

    background:linear-gradient(
        135deg,
        #0b2d22,
        #1e5a42
    );

    display:grid;
    grid-template-columns:1fr 500px;
    gap:80px;

    align-items:center;

    padding:80px 8%;
}

.hero-left{
    color:white;
}

.badge{
    display:inline-block;
    padding:12px 24px;
    border-radius:50px;

    background:rgba(255,255,255,0.15);

    margin-bottom:30px;
}

.hero-left h1{
    font-size:58px;
    line-height:1.1;
    margin-bottom:30px;
}

.hero-left p{
    font-size:22px;
}

.hero-form{
    background:white;
    padding:40px;
    border-radius:30px;
}

.hero-form h2{
    margin-bottom:30px;
    color:#0b2d22;
}

.hero-form input,
.hero-form textarea{
    width:100%;
    padding:18px;
    margin-bottom:20px;

    border:1px solid #d1d5db;
    border-radius:15px;
}

.hero-form button{
    width:100%;
    padding:18px;

    border:none;
    border-radius:15px;

    background:#1e5a42;
    color:white;

    font-weight:bold;
    cursor:pointer;
}

/* ======================
   ESTADÍSTICAS
====================== */

.estadisticas{
    display:flex;
    gap:45px;
    flex-wrap:wrap;
    margin-top:45px;
    margin-bottom:45px;
}

.stat h3{
    font-size:42px;
    color:#9fd5a6;
    margin-bottom:8px;
}

.stat span{
    color:#e5e7eb;
    font-size:16px;
}

/* ======================
   BOTÓN WHATSAPP
====================== */

.btn-whatsapp{
    display:inline-block;
    background:#25D366;
    color:white;
    text-decoration:none;
    padding:18px 35px;
    border-radius:50px;
    font-weight:bold;
    font-size:17px;
    transition:0.3s;
}

.btn-whatsapp:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,0.25);
}
/* ======================
   WHATSAPP FLOTANTE
====================== */

.whatsapp-float{
    position:fixed;
    right:30px;
    bottom:30px;

    width:70px;
    height:70px;

    background:#25D366;
    color:white;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;
    font-size:32px;

    box-shadow:0 10px 30px rgba(0,0,0,0.25);

    z-index:999;
    transition:0.3s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

/* ======================
   SERVICIOS
====================== */

.servicios{
    padding:100px 8%;
    background:#f7f8f8;
}

.titulo-seccion{
    text-align:center;
    margin-bottom:60px;
}

.titulo-seccion h2{
    font-size:42px;
    color:#0b2d22;
    margin-bottom:20px;
}

.titulo-seccion p{
    font-size:20px;
    color:#6b7280;
    max-width:700px;
    margin:auto;
}

.servicios-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.servicio-card{
    background:white;
    padding:40px 30px;
    border-radius:25px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    text-align:center;
    transition:0.3s;
}

.servicio-card:hover{
    transform:translateY(-10px);
}

.icono{
    font-size:55px;
    margin-bottom:25px;
}

.servicio-card h3{
    color:#0b2d22;
    margin-bottom:20px;
    font-size:24px;
}

.servicio-card p{
    color:#6b7280;
    margin-bottom:30px;
    line-height:1.7;
}

.servicio-card a{
    display:inline-block;
    text-decoration:none;
    background:#0b2d22;
    color:white;
    padding:12px 25px;
    border-radius:50px;
    font-weight:bold;
}

.servicio-card a:hover{
    background:#1e5a42;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .servicios-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:700px){

    .servicios-grid{
        grid-template-columns:1fr;
    }

    .titulo-seccion h2{
        font-size:34px;
    }

    .titulo-seccion p{
        font-size:18px;
    }
}

/* ======================
   BENEFICIOS
====================== */

.beneficios{
    padding:100px 8%;
    background:white;
}

.beneficios-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.beneficio-card{
    background:#f7f8f8;
    padding:40px 30px;
    border-radius:25px;
    transition:0.3s;
}

.beneficio-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.10);
}

.numero{
    font-size:50px;
    font-weight:bold;
    color:#1e5a42;
    margin-bottom:20px;
}

.beneficio-card h3{
    color:#0b2d22;
    margin-bottom:20px;
}

.beneficio-card p{
    color:#6b7280;
    line-height:1.7;
}

@media(max-width:1100px){

    .beneficios-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:700px){

    .beneficios-grid{
        grid-template-columns:1fr;
    }
}

/* ======================
   TESTIMONIOS
====================== */

.testimonios{
    padding:100px 8%;
    background:#f7f8f8;
}

.testimonios-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonio-card{
    background:white;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.testimonio-card:hover{
    transform:translateY(-10px);
}

.cliente-foto{
    width:70px;
    height:70px;

    background:#1e5a42;
    color:white;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-weight:bold;
    font-size:24px;

    margin-bottom:25px;
}

.testimonio-card p{
    color:#6b7280;
    line-height:1.8;
    margin-bottom:30px;
}

.testimonio-card h4{
    color:#0b2d22;
    margin-bottom:5px;
}

.testimonio-card span{
    color:#9ca3af;
}

@media(max-width:1100px){

    .testimonios-grid{
        grid-template-columns:1fr;
    }
}

/* ======================
   CONTACTO
====================== */

.contacto{
    padding:100px 8%;
    background:white;
}

.contacto-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.info-item{
    margin-bottom:35px;
}

.info-item h3{
    color:#0b2d22;
    margin-bottom:10px;
}

.info-item p{
    color:#6b7280;
    font-size:18px;
}

.mapa iframe{
    width:100%;
    height:400px;
    border:none;
    border-radius:25px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* ======================
   FOOTER
====================== */

footer{
    background:#0b2d22;
    color:white;
    text-align:center;
    padding:60px 8%;
}

.footer-logo{
    font-size:32px;
    font-weight:bold;
    margin-bottom:30px;
}

.footer-menu{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
    margin-bottom:30px;
}

.footer-menu a{
    color:white;
    text-decoration:none;
}

.footer-menu a:hover{
    color:#9fd5a6;
}

/* RESPONSIVE */

@media(max-width:900px){

    .contacto-grid{
        grid-template-columns:1fr;
    }

    .mapa iframe{
        height:300px;
    }
}

.direccion-detalle{
    color:#6b7280;
    font-size:16px;
}

.mensaje-exito{
    position: fixed;
    top: 20px;
    right: 20px;
    background: #22c55e;
    color: white;
    padding: 18px 25px;
    border-radius: 15px;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.20);
}

.honeypot{
    display:none;
}

html{
    scroll-behavior:smooth;
}