/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #222;
    overflow-x: hidden;
    line-height: 1.6;
}



#Teloficina {
    position: fixed;
    bottom: 100px;
    right: 15px;
    z-index: 11000;
    width: 35px;
}

#whatsapp {
    position: fixed;
    bottom: 200px;
    right: 15px;
    z-index: 11000;
    width: 35px;
    cursor: pointer;
}

#whatsapp img {
    position: absolute;
    width: 100%;
    height: auto;
    transition: opacity 0.4s ease;
    /* DuraciÃ³n y suavidad */
}

#whatsapp img.letrero {
    opacity: 0;
}

#whatsapp:hover img.icono {
    opacity: 0;
}

#whatsapp:hover img.letrero {
    opacity: 1;
    right: 0px;
    width: 100px;
}

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

ul {
    list-style: none;
}

/* BOTONES */
.btn1,
button[type="submit"] {
    background: var(--AzulAVOS);
    color: var(--blanco);
    border: none;
    padding: .75rem 1.5rem;
    border-radius: 15px;
    cursor: pointer;
    transition: background .3s ease;
    font-size: 1rem;
    display: inline-block;
    font-weight: 600;
}

.btn1:hover,
button[type="submit"]:hover {
    background: var(--VinoAVOS);
    transform: translateY(-2px);
}

/* CABECERA FIJA */
.cabecera {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--blanco);
    box-shadow: var(--sombra);
    z-index: 1000;
}

.navegacion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: .75rem 1rem;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--AzulAVOS);
    min-width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* MENÚ PRINCIPAL */
.menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.menu>li {
    position: relative;
}

.desplegable {
    color: var(--VinoAVOS);
    background: none;
    border: none;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    padding: .5rem;
    transition: color 0.3s ease;
}

.desplegable:hover {
    color: var(--AzulAVOS);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--blanco);
    box-shadow: var(--sombra);
    border-radius: 8px;
    overflow: hidden;
    display: none;
    min-width: 200px;
    z-index: 1001;
}

.submenu a {
    display: block;
    padding: .75rem 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.submenu a:hover {
    background: var(--DegCieloAzul);
    color: var(--blanco);
}

/* MOSTRAR SUBMENÚ ACCESIBLE */
.desplegable[aria-expanded="true"]+.submenu {
    display: block;
}

/* HAMBURGUESA (móvil) */
#hamburguesa {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

#hamburguesa span {
    width: 24px;
    height: 3px;
    background: var(--AzulAVOS);
    transition: transform .3s ease;
}
/* ---------- Ocultación / visibilidad suave ---------- */
.navegacion {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: transform .35s ease;
    background-color: white;
    border-radius: 0px 0px 35px 0px;
}
/* Clase que se añade/quita vía JS */
.navegacion--oculto {
    transform: translateY(-100%);
}

/* HERO CON PARALLAX */
.hero {
    height: 600px;
    width: 100%;
    background-image: url(https://grupoavos.mx/webp/Index/Portada-Grupo-AVOS.webp);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--blanco);
    margin-top: 80px;
    padding: 2rem 1rem;
}
.hogarCanceleria {
    height: 600px;
    width: 100%;
    background-image: url(https://grupoavos.mx/webp/portada/Portada-canceleria.webp);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--blanco);
    margin-top: 80px;
    padding: 2rem 1rem;
}
.negocioCanceleria {
    height: 600px;
    width: 100%;
    background-image: url(https://grupoavos.mx/webp/portada/Portada-Negocio-Canceleria.webp);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--blanco);
    margin-top: 80px;
    padding: 2rem 1rem;
}
.industriaCanceleria {
    height: 600px;
    width: 100%;
    background-image: url(https://grupoavos.mx/webp/portada/Portada-canceleria-industrial.webp);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--blanco);
    margin-top: 80px;
    padding: 2rem 1rem;
}
.hogarEspejo {
    height: 600px;
    width: 100%;
    background-image: url(https://grupoavos.mx/webp/portada/Portada-espejos.webp);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--blanco);
    margin-top: 80px;
    padding: 2rem 1rem;
}
.negocioEspejo {
    height: 600px;
    width: 100%;
    background-image: url(https://grupoavos.mx/webp/portada/Portada-espejo-negocio.webp);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--blanco);
    margin-top: 80px;
    padding: 2rem 1rem;
}
.industriaEspejo {
    height: 600px;
    width: 100%;
    background-image: url(https://grupoavos.mx/webp/portada/Portada-espejo-industrial.webp);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--blanco);
    margin-top: 80px;
    padding: 2rem 1rem;
}
.hogarTechos {
    height: 600px;
    width: 100%;
    background-image: url(https://grupoavos.mx/webp/portada/Portada-techos.webp);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--blanco);
    margin-top: 80px;
    padding: 2rem 1rem;
}
.negociosTechos {
    height: 600px;
    width: 100%;
    background-image: url(https://grupoavos.mx/webp/portada/Portada-techos-techumbres.webp);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--blanco);
    margin-top: 80px;
    padding: 2rem 1rem;
}
.industriaTechos {
    height: 600px;
    width: 100%;
    background-image: url(https://grupoavos.mx/webp/portada/Portada-pergola-industria.webp);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--blanco);
    margin-top: 80px;
    padding: 2rem 1rem;
}
.hogarFachadas {
    height: 600px;
    width: 100%;
    background-image: url(https://grupoavos.mx/webp/portada/Portada-fachadas-integrales.webp);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--blanco);
    margin-top: 80px;
    padding: 2rem 1rem;
}
.negocioFachadas {
    height: 600px;
    width: 100%;
    background-image: url(https://grupoavos.mx/webp/portada/Portada-negocio-fachada-integral.webp);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--blanco);
    margin-top: 80px;
    padding: 2rem 1rem;
}
.hogarMosquiteros {
    height: 600px;
    width: 100%;
    background-image: url(https://grupoavos.mx/webp/portada/Portada-Mosquitero.webp);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--blanco);
    margin-top: 80px;
    padding: 2rem 1rem;
}
.negocioMosquiteros {
    height: 600px;
    width: 100%;
    background-image: url(https://grupoavos.mx/webp/portada/Portada-mosquiteros-negocios.webp);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--blanco);
    margin-top: 80px;
    padding: 2rem 1rem;
}
.hogarPelicula {
    height: 600px;
    width: 100%;
    background-image: url(https://grupoavos.mx/webp/portada/Portada-pelicula.webp);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--blanco);
    margin-top: 80px;
    padding: 2rem 1rem;
}
.hogarEuropea {
    height: 600px;
    width: 100%;
    background-image: url(https://grupoavos.mx/webp/portada/Portada-Linea-Europea.webp);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--blanco);
    margin-top: 80px;
    padding: 2rem 1rem;
}
.PGracias {
    height: 600px;
    width: 100%;
    background-image: url(https://grupoavos.mx/webp/portada/Portada-gracias.webp);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--blanco);
    margin-top: 80px;
    padding: 2rem 1rem;
}
.PContacto {
    height: 600px;
    width: 100%;
    background-image: url(https://grupoavos.mx/webp/portada/Portada-Contacto.webp);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--blanco);
    margin-top: 80px;
    padding: 2rem 1rem;
}
.PGaleria {
    height: 600px;
    width: 100%;
    background-image: url(https://grupoavos.mx/webp/portada/Portada-galeria.webp);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--blanco);
    margin-top: 80px;
    padding: 2rem 1rem;
}
.P404 {
    height: 600px;
    width: 100%;
    background-image: url(https://grupoavos.mx/webp/404.webp);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--blanco);
    margin-top: 80px;
    padding: 2rem 1rem;
}

h1 {
    font-size: clamp(2rem, 6vw, 8vw);
    text-shadow: 2px 2px 5px #000000;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow:
    -1px -1px 0 black,
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black;
}

.pH1 {
    margin: .5rem 0 1.5rem;
    font-size: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    text-shadow: 1px 1px 2px black;
}

/* CONTENIDO */
.contenido {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.contenido h2 {
    color: var(--AzulAVOS);
    margin-bottom: 1rem;
}
h3{
    color: var(--AzulAVOS);
    margin-bottom: 1rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .menu {
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--blanco);
        flex-direction: column;
        width: 280px;
        box-shadow: var(--sombra);
        padding: 1.5rem;
        display: none;
        z-index: 1001;
        gap: 1rem;
    }

    .menu.activo {
        display: flex;
    }

    #hamburguesa {
        display: flex;
    }

    .logo {
        height: 50px;
    }
}

/* ========= SERVICIOS AVOS ========= */
.seccionAVOS {
    width: 100%;
    background: var(--VinoAVOS);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    gap: 2rem;
}

.tituloAVOS {
    color: var(--GrisAVOS);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    max-width: 650px;
}

.gridAVOS {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 900px;
}

.servicioAVOS {
    background: var(--blanco);
    border-radius: 35px;
    padding: 1.5rem 1rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.servicioAVOS:hover {
    scale: 1.1;
}

/* Clase que añade JS cuando entra en pantalla */
.servicioAVOS.anima {
    opacity: 1;
    transform: translateY(0);
}

.servicioAVOS:hover,
.servicioAVOS:focus {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
}

.servicioAVOS img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.tituloServicioAVOS {
    font-size: 1rem;
    color: var(--VinoAVOS);
    font-weight: 700;
}

/* animación de entrada ligera */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.servicioAVOS {
    animation: fadeUp .6s ease both;
}

.servicioAVOS:nth-child(1) {
    animation-delay: .1s;
}

.servicioAVOS:nth-child(2) {
    animation-delay: .2s;
}

.servicioAVOS:nth-child(3) {
    animation-delay: .3s;
}

.servicioAVOS:nth-child(4) {
    animation-delay: .4s;
}

/* BLOQUE DESCRIPCIÓN AVOS */
#descripcionAVOS {
    width: 100%;
    padding: 5rem 1rem;
    background: var(--blanco);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin: 0 auto;
}

.contenedorAVOS {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* imagen */
.colIzqAVOS {
    display: flex;
    justify-content: center;
    align-items: center;
}

.imgDescripcionAVOS {
    width: 100%;
    max-width: 450px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .7s ease, transform .7s ease;
}

/* textos */
.colDerAVOS {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.parrafoDescripcionAVOS {
    color: var(--GrisAVOS);
    line-height: 1.5;
    opacity: 0;
        transform: translateX(30px);
        transition: opacity .7s ease, transform .7s ease;
    font-size: 1.1rem;
    text-align: justify;
}

.iconosColDerAVOS{
    display:flex;
    justify-content:center;
    gap:1.5rem;
    margin-top:1.5rem;
}

.parrafoDescripcionAVOS:nth-child(1) {
    transition-delay: .1s;
}

.parrafoDescripcionAVOS:nth-child(2) {
    transition-delay: .2s;
}

.parrafoDescripcionAVOS:nth-child(3) {
    transition-delay: .3s;
}

.parrafoDescripcionAVOS:nth-child(4) {
    transition-delay: .4s;
}

/* botón */
/* .botonAVOS {
    align-self: flex-start;
    background: var(--AzulAVOS);
    color: var(--blanco);
    padding: .75rem 1.5rem;
    border-radius: 15px;
    font-weight: 700;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: background .3s ease, opacity .7s ease .5s, transform .7s ease .5s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
} */
.botonAVOS {
    align-self: flex-start;
    background: var(--AzulAVOS);
    color: var(--blanco);
    padding: .75rem 1.5rem;
    border-radius: 15px;
    font-weight: 700;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all .4s ease .3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.botonAVOS:hover,
.botonAVOS:focus {
    background: var(--VinoAVOS);
    transform: translateY(-2px);
}

/* estado visible cuando el bloque entra en pantalla */
#descripcionAVOS.anima .imgDescripcionAVOS,
#descripcionAVOS.anima .parrafoDescripcionAVOS,
#descripcionAVOS.anima .botonAVOS {
    opacity: 1;
    transform: none;
}

/* ----- RESPONSIVE ----- */
@media (min-width: 768px) {
    .contenedorAVOS {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .seccionAVOS {
        padding: 5rem 1rem;
    }
}

@media (max-width: 480px) {
    .imgDescripcionAVOS {
        max-width: 300px;
    }

    .gridAVOS {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .servicioAVOS {
        padding: 1rem 0.5rem;
    }
}

/* Espaciado entre secciones */
.espacio-seccion {
    height: 2rem;
    width: 100%;
}

/* Microdatos visualmente ocultos */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========= BLOQUE CALIDAD AVOS ========= */
.calidadAVOS {
    width: 100%;
    background: var(--AzulAVOS);
    color: var(--blanco);
    padding: 3rem 1rem;
    /* 0 abajo → deja espacio para la imagen */
    overflow: visible;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.contenedorCalidadAVOS {
    max-width: 800px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

.tituloCalidadAVOS {
    color: var(--blanco);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: .5rem;
}

.textoCalidadAVOS {
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: justify;
}

/* imagen sobresaliendo 50 px */
.imgWrapperCalidadAVIDAVOS {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: -50px;
    /* truco para que sobresalga */
    z-index: 2;
}

.imgCalidadAVOS {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 15px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity .8s ease .2s, transform .8s ease .2s;
}

/* estado visible cuando el bloque entra en pantalla */
.calidadAVOS.anima .contenedorCalidadAVOS,
.calidadAVOS.anima .imgCalidadAVOS {
    opacity: 1;
    transform: none;
}

/* responsive */
@media (max-width: 600px) {
    .imgCalidadAVOS {
        max-width: 90vw;
    }
}

/* ====== CARRUSEL GALERÍA AVOS ====== */
.galeriaCarruselAVOS {
    width: 100%;
    padding: 3rem 1rem;
    background: var(--blanco);
    display: flex;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
}

.galeriaCarruselAVOS.anima {
    opacity: 1;
    transform: none;
}

.contenedorCarruselAVOS {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.tituloCarruselAVOS {
    color: var(--AzulAVOS);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    text-align: center;
}

.textoCarruselAVOS {
    color: var(--GrisAVOS);
    line-height: 1.5;
    text-align: center;
    max-width: 900px;
    text-align: justify;
    font-size: 1.1em;
    font-weight: normal;
}

/* --- Carrusel --- */
.carruselAVOS {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trackCarruselAVOS {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.trackCarruselAVOS::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.itemCarruselAVOS {
    flex: 0 0 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    transition: transform .3s ease;
}

.itemCarruselAVOS:hover {
    transform: scale(1.05);
}

/* Botones navegación */
.btnCarruselAVOS {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--AzulAVOS);
    color: var(--blanco);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: background .3s ease;
}

.btnCarruselAVOS:hover,
.btnCarruselAVOS:focus {
    background: var(--VinoAVOS);
}

/* Botón galería completa */
.botonGaleriaAVOS {
    margin-top: 1rem;
}

/* ----- Responsive ----- */
@media (max-width: 600px) {
    .itemCarruselAVOS {
        flex: 0 0 160px;
        height: 200px;
    }

    .btnCarruselAVOS {
        width: 36px;
        height: 36px;
        font-size: 1.4rem;
    }
}

/* FORMULARIO DE CONTACTO AVOS */
/* ====== FORMULARIO CONTACTO AVOS ====== */
.contactoAVOS {
    width: 100%;
    background: var(--VinoAVOS);
    color: var(--blanco);
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
}

.contactoAVOS.anima {
    opacity: 1;
    transform: none;
}

.contenContactoAVOS {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
}

.tituloContactoAVOS {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    text-align: center;
    color: var(--blanco);
}

.textoContactoAVOS {
    font-size: 1.1rem;
    text-align: center;
}

.formContactoAVOS {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.labelAVOS {
    font-weight: 600;
    margin-bottom: .25rem;
}

.inputAVOS,
.textareaAVOS {
    padding: .2rem 1rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 35px;
}

.textareaAVOS {
    min-height: 100px;
}

.botonEnviarAVOS {
    align-self: center;
    margin-top: 1rem;
    padding: .85rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--blanco);
    background: var(--AzulAVOS);
    background: linear-gradient(135deg, var(--AzulAVOS) 0%, #0f3a56 100%);
    border: none;
    border-radius: 30px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.botonEnviarAVOS:hover {
    transform: translateY(-3px);
    background: var(--AzulAVOS);
    box-shadow: 0px 8px 10px rgba(255, 255, 255, 0.5);
}

.botonEnviarAVOS:active {
    transform: translateY(0);
    box-shadow: 0 0px 12px rgba(23, 90, 128, .45);
}

/* ---------- MASCOTA MOSQRITO AVOS ---------- */
.mosqritoAVOS {
    align-self: center;
    max-width: 280px;
    width: 100%;
    height: auto;
    margin-top: 2rem;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .8s ease .3s, transform .8s ease .3s;
    vertical-align: bottom;
}

.contactoAVOS.anima .mosqritoAVOS {
    opacity: 1;
    transform: translateX(0);
}

/* Layout lado-a-lado en escritorio */
@media (min-width: 769px) {
    .contenContactoAVOS {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2.5rem;
        align-items: start;
        max-width: 1000px;
    }

    .mosqritoAVOS {
        grid-column: 2;
        grid-row: 1 / 4;
        margin-top: 0;
    }

    .tituloContactoAVOS,
    .textoContactoAVOS {
        grid-column: 1;
    }

    .formContactoAVOS {
        grid-column: 1;
    }
}

/* Oculta la mascota en móviles para no reducir espacio del formulario */
@media (max-width: 768px) {
    .mosqritoAVOS {
        display: none;
    }
}

/* ----- Responsive ----- */
@media (max-width: 480px) {

    .inputAVOS,
    .textareaAVOS {
        font-size: 16px;
    }
}

/* ---------- PIE AVOS ---------- */
.pieAVOS {
    width: 100%;
    background: var(--GrisAVOS);
    color: var(--blanco);
    padding: 3rem 1rem 1rem;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
}

.pieAVOS.anima {
    opacity: 1;
    transform: none;
}

.contenedorPieAVOS {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Navegación */
.navPieAVOS {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    width: 100%;
}

.listaPieAVOS {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0rem;
}

.listaPieAVOS a {
    color: var(--blanco);
    text-decoration: none;
    transition: color .3s ease;
}

.listaPieAVOS a:hover {
    color: var(--AzulAVOS);
}

/* Contacto + mapa */
.infoPieAVOS {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.datosPieAVOS {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.datoPieAVOS a {
    color: var(--blanco);
    text-decoration: none;
}

.mapaPieAVOS {
    border-radius: 12px;
    box-shadow: var(--sombra);
    width: 100%;
    height: 200px;
}

/* Legal */
.legalPieAVOS {
    text-align: center;
    font-size: .9rem;
    margin-top: 1rem;
}

.legalPieAVOS a {
    color: var(--blanco);
    text-decoration: underline;
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
    .infoPieAVOS {
        grid-template-columns: 1fr;
    }
}

/* Seccion de Cookies */
/* ===== BANNER COOKIES AVOS ===== */
.bannerCookiesAVOS {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--VinoAVOS);
    color: var(--blanco);
    padding: 1rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, .35);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform .4s ease;
}

.bannerCookiesAVOS.mostrar {
    transform: translateY(0);
}

.interiorBannerCookiesAVOS {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    align-items: center;
    text-align: center;
}

.botonesCookiesAVOS {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.botonCookiesAVOS {
    padding: .5rem 1.25rem;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background .3s ease, transform .2s ease;
}

.botonAceptarAVOS {
    background: var(--AzulAVOS);
    color: var(--blanco);
}

.botonNecesariasAVOS {
    background: var(--AclaroAVOS);
    color: var(--blanco);
}

.botonRechazarAVOS {
    background: transparent;
    color: var(--blanco);
    border: 2px solid var(--blanco);
}

.botonCookiesAVOS:hover {
    transform: translateY(-2px);
}

/* Preferencia de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    .bannerCookiesAVOS {
        transition: none;
    }
}

/* Ocultar cuando se haya decidido */
.bannerCookiesAVOS[aria-hidden="true"] {
    display: none;
}

/* Parallax footer */
.parallaxindex {
    position: relative;
    background-image: url('https://grupoavos.mx/webp/Index/Portada-Grupo-AVOS.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
.parallaxgracias {
    position: relative;
    background-image: url('https://grupoavos.mx/webp/portada/Portada-gracias.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
.parallaxgaleria {
    position: relative;
    background-image: url('https://grupoavos.mx/webp/portada/Portada-galeria.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
.parallaxContacto {
    position: relative;
    background-image: url('https://grupoavos.mx/webp/portada/Portada-Contacto.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
.parallaxCancelHogar {
    position: relative;
    background-image: url('https://grupoavos.mx/webp/portada/Portada-canceleria.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
.parallaxCancelNegocio {
    position: relative;
    background-image: url('https://grupoavos.mx/webp/portada/Portada-Negocio-Canceleria.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
.parallaxCancelIndustrial {
    position: relative;
    background-image: url('https://grupoavos.mx/webp/portada/Portada-canceleria-industrial.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
.parallaxMosquiteros {
    position: relative;
    background-image: url('https://grupoavos.mx/webp/portada/Portada-Mosquitero.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
.parallaxMosquiterosNegocio {
    position: relative;
    background-image: url('https://grupoavos.mx/webp/portada/Portada-mosquiteros-negocios.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
.parallaxEspejo {
    position: relative;
    background-image: url('https://grupoavos.mx/webp/portada/Portada-espejos.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
.parallaxEspejoNegocio {
    position: relative;
    background-image: url('https://grupoavos.mx/webp/portada/Portada-espejo-negocio.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
.parallaxTechos {
    position: relative;
    background-image: url('https://grupoavos.mx/webp/portada/Portada-techos.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
.parallaxPergolas {
    position: relative;
    background-image: url('https://grupoavos.mx/webp/portada/Portada-techos-techumbres.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
.parallaxPergolasIndustral {
    position: relative;
    background-image: url('https://grupoavos.mx/webp/portada/Portada-pergola-industria.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
.parallaxFachadasIndustrial {
    position: relative;
    background-image: url('https://grupoavos.mx/webp/portada/Portada-fachadas-integrales.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
.parallaxFachadasNegocio {
    position: relative;
    background-image: url('https://grupoavos.mx/webp/portada/Portada-negocio-fachada-integral.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
.parallaxPelicula {
    position: relative;
    background-image: url('https://grupoavos.mx/webp/portada/Portada-pelicula.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.cuadroCTA {
    background: rgba(0, 0, 0, 0.25);
    padding: 2em;
    border-radius: 16px;
    max-width: 600px;
    backdrop-filter: blur(4px);
    text-shadow: 1px 1px 2px black;
    font-weight: normal;
    font-size: 1.1em;
}

/* MATERIALES */

.seccionMateriales {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .7s ease, transform .7s ease;
    scroll-margin-top: 100px;
    padding: 4rem 1rem;
  }
  .seccionMateriales.in-view {
    opacity: 1;
    transform: translateX(0);
  }
  .TituloMateriales {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--AzulAVOS);
  }
  .ParrafoMateriales {
    max-width: 900px;
    margin: 0 auto 3rem;
    color: var(--GrisAVOS);
    line-height: 1.5;
    text-align: justify ;
    font-weight: normal;
    font-size: 1.1em;
  }
  .TipoMat {
    margin-bottom: 3rem;
  }
  .ClasMaterial {
    text-align: left;
    margin-bottom: .5rem;
    color: var(--VinoAVOS);
    margin-left: 5%;
  }
  .mini-descripcion {
    display: block;
    text-align: left;
    font-size: 0.8em;
    margin-bottom: 1.5rem;
    color: var(--GrisAVOS);
    margin-left: 5%;
  }
  .grid-materiales {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .matrial {
    background: var(--DegCieloAzul, linear-gradient(0deg, #ADE2FF 0%, #175A80 100%));
    border-radius: 7px;
    padding: 1.5rem;
    width: clamp(350px, 100%, 400px);
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  .matrial img {
    width: 400px;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: .7rem;
    box-shadow: 2px 2px 8px var(--GrisAVOS);
  }
  .NomMaterial {
    color: white;
    margin: 0 0 .5rem;
  }
  .ventajas {
    background-color: rgba(0,0,0,.2);
    border-radius: 5px;
    padding: 3px 8px;
    display: inline-block;
    margin: 4px;
    color: white;
    font-size: .75em;
  }
  .Usos {
    font-size: 0.7em;
    color: var(--AzulAVOS);
    margin-top: .5rem;
  }