:root {
    --amarillo: #f4c400;
    --amarillo-claro: #fff4b8;
    --negro: #111111;
    --gris: #666666;
    --gris-claro: #f5f5f5;
    --blanco: #ffffff;
    --sombra: 0 12px 35px rgba(0, 0, 0, 0.10);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--blanco);
    color: var(--negro);
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.header {
    width: 100%;
    min-height: 85px;
    padding: 15px 7%;
    background: var(--blanco);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-circulo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--amarillo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
}

.logo h2 {
    font-size: 25px;
    line-height: 1;
}

.logo span {
    font-size: 14px;
    font-weight: 700;
    color: var(--gris);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.nav a {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav a:hover {
    color: var(--amarillo);
}

.menu-btn {
    display: none;
    background: var(--amarillo);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    font-size: 24px;
    cursor: pointer;
}

.hero {
    min-height: 680px;
    padding: 70px 7%;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 50px;
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 55%, #fff7cc 100%);
    overflow: hidden;
}

.etiqueta {
    display: inline-block;
    background: var(--amarillo-claro);
    color: var(--negro);
    padding: 9px 18px;
    border-radius: 30px;
    font-weight: 800;
    margin-bottom: 18px;
}

.hero-texto h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 22px;
}

.descripcion {
    font-size: 20px;
    color: #333333;
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 34px;
}

.botones {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 32px;
    border-radius: 35px;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-amarillo {
    background: var(--amarillo);
    color: var(--negro);
    border: 2px solid var(--amarillo);
}

.btn-amarillo:hover {
    background: var(--negro);
    color: var(--blanco);
    border-color: var(--negro);
}

.btn-borde {
    border: 2px solid var(--negro);
    color: var(--negro);
}

.btn-borde:hover {
    background: var(--negro);
    color: var(--blanco);
}

.hero-imagen {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-imagen img {
    max-width: 460px;
    height: 530px;
    object-fit: cover;
    border-radius: 45px;
    box-shadow: var(--sombra);
    position: relative;
    z-index: 2;
}

.circulo-fondo {
    width: 420px;
    height: 420px;
    background: var(--amarillo);
    border-radius: 50%;
    position: absolute;
    z-index: 1;
}

.beneficios {
    width: 86%;
    margin: -55px auto 60px;
    background: var(--blanco);
    border-radius: 28px;
    box-shadow: var(--sombra);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.beneficio {
    padding: 32px 20px;
    text-align: center;
    border-right: 1px solid #eeeeee;
}

.beneficio:last-child {
    border-right: none;
}

.icono {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--amarillo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.beneficio h3 {
    margin-bottom: 8px;
    font-size: 19px;
}

.beneficio p {
    color: var(--gris);
    font-size: 15px;
    line-height: 1.5;
}

.seccion {
    padding: 85px 7%;
}

.titulo-seccion {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 45px;
}

.titulo-seccion h2,
.nosotros-texto h2,
.contacto-info h2 {
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
}

.titulo-seccion p:last-child,
.nosotros-texto p,
.contacto-info p {
    color: var(--gris);
    font-size: 18px;
    line-height: 1.7;
}

.nosotros {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
    background: var(--gris-claro);
}

.nosotros-img img {
    height: 520px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--sombra);
}

.nosotros-texto p {
    margin-bottom: 18px;
}

.filtros {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 38px;
}

.filtro {
    border: none;
    padding: 13px 25px;
    background: var(--gris-claro);
    border-radius: 30px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.3s;
}

.filtro:hover,
.filtro.activo {
    background: var(--amarillo);
}

.grid-productos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.producto {
    padding: 24px;
    background: var(--blanco);
    border-radius: 25px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.producto:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra);
}

.producto img {
    height: 210px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 18px;
}

.producto h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.producto p {
    color: var(--gris);
    line-height: 1.5;
    margin-bottom: 12px;
}

.producto span {
    display: block;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 16px;
}

.producto button,
.formulario button {
    width: 100%;
    padding: 14px;
    border: none;
    background: var(--amarillo);
    color: var(--negro);
    border-radius: 16px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.3s;
}

.producto button:hover,
.formulario button:hover {
    background: var(--negro);
    color: var(--blanco);
}

.estadisticas {
    width: 86%;
    margin: 30px auto;
    padding: 38px;
    background: var(--amarillo);
    border-radius: 26px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.estadisticas h3 {
    font-size: 40px;
    font-weight: 900;
}

.estadisticas p {
    font-weight: 700;
}

.grid-servicios {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.servicio {
    background: var(--gris-claro);
    padding: 32px 24px;
    border-radius: 24px;
    transition: 0.3s;
}

.servicio:hover {
    background: var(--amarillo-claro);
    transform: translateY(-6px);
}

.servicio-icono {
    font-size: 42px;
    margin-bottom: 20px;
}

.servicio h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.servicio p {
    color: var(--gris);
    line-height: 1.6;
}

.contacto {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 55px;
    align-items: center;
    background: var(--gris-claro);
}

.dato {
    background: var(--blanco);
    margin-bottom: 14px;
    padding: 16px 18px;
    border-radius: 16px;
    font-weight: 700;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
}

.formulario {
    background: var(--blanco);
    padding: 35px;
    border-radius: 26px;
    box-shadow: var(--sombra);
}

.formulario input,
.formulario textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid #dddddd;
    border-radius: 14px;
    font-size: 16px;
    outline: none;
}

.formulario input:focus,
.formulario textarea:focus {
    border-color: var(--amarillo);
}

.formulario textarea {
    min-height: 140px;
    resize: vertical;
}

.mensaje-form {
    margin-top: 14px;
    font-weight: 800;
}

.footer {
    background: var(--negro);
    color: var(--blanco);
    text-align: center;
    padding: 42px 7%;
}

.footer h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.footer p {
    color: #cccccc;
    margin-top: 8px;
}

@media screen and (max-width: 1000px) {
    .nav {
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background: var(--blanco);
        flex-direction: column;
        padding: 25px;
        display: none;
        box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    }

    .nav.activo {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

    .hero,
    .nosotros,
    .contacto {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .botones {
        justify-content: center;
    }

    .beneficios,
    .grid-productos,
    .grid-servicios,
    .estadisticas {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-imagen {
        min-height: 420px;
    }

    .hero-imagen img {
        height: 420px;
    }
}

@media screen and (max-width: 650px) {
    .header {
        padding: 14px 5%;
    }

    .logo h2 {
        font-size: 20px;
    }

    .hero,
    .seccion {
        padding: 55px 5%;
    }

    .descripcion {
        font-size: 17px;
    }

    .beneficios,
    .grid-productos,
    .grid-servicios,
    .estadisticas {
        grid-template-columns: 1fr;
    }

    .beneficios {
        width: 92%;
        margin-top: 25px;
    }

    .beneficio {
        border-right: none;
        border-bottom: 1px solid #eeeeee;
    }

    .beneficio:last-child {
        border-bottom: none;
    }

    .hero-imagen img {
        max-width: 100%;
        height: 360px;
    }

    .circulo-fondo {
        width: 300px;
        height: 300px;
    }

    .nosotros-img img {
        height: 360px;
    }

    .formulario {
        padding: 24px;
    }
}
