.section-hero {
    position: relative;
    background-color: #f8f9fa;
    padding: 30px 0;
}

.section-hero__back {
    width: 100%;
    height: 400px;
    background-image: url('app_design/img/background.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.section-hero__title {
    position: absolute;
    margin-top: -5%;
    left: 50%;
    transform: translate(-50%, -60%);
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    font-size: 3.5rem;
    text-align: center;
}

.section-hero__description_Contactenos {
    position: absolute;
    margin-top: 13%;
    left: 50%;
    transform: translate(-50%, -60%);
    color: rgb(255, 251, 251);
    padding: 10px 20px;
    font-size: 2rem;
    text-align: center;
}

.check li::before {
    content: "\2713";
    margin-right: 10px;
    color: green;
}

.section-content img {
    transform: translate(0%, -40%);
}

.section-text {
    transform: translate(0%, -15%);
}

/* Estilos para el formulario */
#contactForm {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

/* Estilos para las etiquetas */
#contactForm label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

/* Estilos para los campos de entrada y el área de texto */
#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm input[type="tel"],
#contactForm select,
#contactForm textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #fc0000;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    display: block;
}

/* Asegurarse de que los campos de entrada sean visibles */
#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm input[type="tel"] {
    display: inline-block;
}

/* Estilos para el botón de envío */
#contactForm button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #28a745;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contactForm button[type="submit"]:hover {
    background-color: #218838;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .section-hero__title {
        font-size: 2.5rem;
        margin-top: 0;
        transform: translate(-50%, -50%);
    }

    .section-hero__description_Contactenos {
        font-size: 1.5rem;
        margin-top: 20%;
        transform: translate(-50%, -50%);
    }

    .section-content img {
        transform: translate(0%, -20%);
    }

    .section-text {
        transform: translate(0%, 0%);
    }
}

@media (max-width: 600px) {
    .section-hero__title {
        font-size: 2rem;
        margin-top: 0;
        transform: translate(-50%, -50%);
    }

    .section-hero__description_Contactenos {
        font-size: 1.2rem;
        margin-top: 25%;
        transform: translate(-50%, -50%);
    }

    .section-content img {
        transform: translate(0%, 0%);
    }

    .section-text {
        transform: translate(0%, 0%);
    }

    #contactForm {
        padding: 15px;
    }

    #contactForm input[type="text"],
    #contactForm input[type="email"],
    #contactForm input[type="tel"],
    #contactForm select,
    #contactForm textarea {
        font-size: 14px;
        padding: 8px;
    }

    #contactForm button[type="submit"] {
        font-size: 14px;
        padding: 8px;
    }
}

/* Estilo para hacer que el iframe sea responsivo y cubra los bordes de la pantalla */
.responsive-iframe {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Relación de aspecto de 16:9 */
    position: relative;
}

.responsive-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; /* Elimina el borde por defecto */
}

/* Renovacion visual 2026 */
.section-hero__back {
    min-height: clamp(420px, 58vh, 620px);
    height: auto;
    background-position: center;
    background-size: cover;
}

.section-hero__back::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 12, 15, .84), rgba(10, 12, 15, .34));
}

.section-hero__title {
    z-index: 1;
    width: min(900px, 90%);
    color: #fff;
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.04em;
    text-shadow: 0 7px 30px rgba(0, 0, 0, .3);
}

.section-hero__description_Contactenos {
    z-index: 1;
    width: min(760px, 86%);
    color: rgba(255, 255, 255, .83);
    font-size: 1.08rem;
    line-height: 1.7;
}

#contactForm {
    width: min(820px, calc(100% - 32px));
    margin: clamp(54px, 7vw, 90px) auto;
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid rgba(21, 24, 28, .08);
    border-radius: var(--am-radius);
    background: #fff;
    box-shadow: var(--am-shadow);
}

#contactForm input:not([type="hidden"]),
#contactForm textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid #d9dde1;
    border-radius: 10px;
    background: #f8f9fa;
    color: var(--am-ink);
    transition: border-color .2s ease, box-shadow .2s ease;
}

#contactForm input:focus,
#contactForm textarea:focus {
    outline: 0;
    border-color: var(--am-red);
    box-shadow: 0 0 0 4px rgba(229, 35, 27, .10);
}

#contactForm button[type="submit"],
#submitBtn {
    padding: 13px 28px;
    border: 0;
    border-radius: 10px;
    background: var(--am-red);
    color: #fff;
    font-weight: 800;
    letter-spacing: .04em;
    box-shadow: 0 10px 24px rgba(229, 35, 27, .25);
}

.responsive-iframe {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto clamp(54px, 8vw, 100px);
    overflow: hidden;
    border-radius: var(--am-radius);
    box-shadow: var(--am-shadow);
}

/* =====================================================================
   CAPA FINAL DE DISEÑO
   Aislada por pagina para evitar conflictos entre las hojas heredadas.
   ===================================================================== */
:root {
    --red: #d91f18;
    --red-bright: #f2372f;
    --red-deep: #99150f;
    --black: #101214;
    --charcoal: #1a1d21;
    --steel: #66707a;
    --silver: #e8ebee;
    --off-white: #f5f5f3;
    --white: #ffffff;
    --line: rgba(16, 18, 20, .11);
    --shadow-sm: 0 10px 30px rgba(14, 17, 20, .08);
    --shadow-lg: 0 28px 75px rgba(14, 17, 20, .16);
    --radius: 18px;
    --content: 1180px;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--off-white);
    color: var(--black);
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

body::selection {
    background: var(--red);
    color: #fff;
}

/* Cabecera */
#amnav_header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: #fff;
    box-shadow: 0 1px 0 var(--line);
}

#amnav_header .amnav__social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
    height: 34px;
    padding: 0 max(28px, calc((100vw - var(--content)) / 2));
    background: var(--black);
}

#amnav_header .amnav__social-item {
    margin: 0;
}

#amnav_header .amnav__social-item a {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, .76);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
}

#amnav_header .amnav__social-item a:hover {
    color: #fff;
}

#amnav_header .facebook-logo {
    width: 16px;
    height: 16px;
    margin: 0;
    filter: grayscale(1) brightness(4);
}

#amnav_header .amnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 78px;
    padding: 0 max(28px, calc((100vw - var(--content)) / 2));
    background: #fff;
}

#amnav_header .amnav__logo {
    position: static;
    display: flex;
    align-items: center;
    width: 152px;
    height: 78px;
    background: none;
}

#amnav_header .amnav__logo a {
    display: flex;
    align-items: center;
}

#amnav_header .amnav__logo img {
    width: 112px;
    max-height: 70px;
    margin: 0;
    object-fit: contain;
    mix-blend-mode: multiply;
}

#amnav_header .menu {
    display: flex;
    align-items: stretch;
    height: 100%;
    gap: 8px;
}

#amnav_header .menu > li {
    display: flex;
    align-items: stretch;
}

#amnav_header .menu > li > a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 14px;
    color: #24282c;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .09em;
    text-transform: uppercase;
}

#amnav_header .menu > li > a::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 0;
    left: 14px;
    height: 4px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .22s ease;
}

#amnav_header .menu > li > a:hover {
    color: var(--red);
    background: transparent;
}

#amnav_header .menu > li > a:hover::after {
    transform: scaleX(1);
}

#amnav_header .amnav ul ul {
    top: 70px;
    min-width: 250px;
    padding: 8px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow-lg);
}

#amnav_header .amnav ul ul li {
    width: 100%;
    background: #fff;
}

#amnav_header .amnav ul ul a {
    padding: 11px 13px;
    border-radius: 7px;
    color: var(--black);
    font-size: 14px;
    transition: padding .2s ease, color .2s ease, background .2s ease;
}

#amnav_header .amnav ul ul a:hover {
    padding-left: 18px;
    color: var(--red);
    background: #fff1f0;
}

/* Pie */
#amnav_footer {
    position: relative;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 70px;
    padding: 68px max(28px, calc((100vw - var(--content)) / 2));
    overflow: hidden;
    background:
        linear-gradient(105deg, rgba(9, 11, 13, .98), rgba(23, 26, 30, .94)),
        url("../img/pag_inicio_pie.jpg") center / cover;
    color: rgba(255, 255, 255, .67);
}

#amnav_footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: max(28px, calc((100vw - var(--content)) / 2));
    width: 84px;
    height: 5px;
    background: var(--red);
}

#amnav_footer .footer_logo {
    float: none;
    width: 150px;
    height: auto;
    margin: 0;
    filter: none;
}

#amnav_footer .footer_logo img {
    width: 100%;
    height: auto;
    max-height: 120px;
    margin: 0;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

#amnav_footer .footer_DATOS {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin: 0;
}

#amnav_footer .footer_contacto,
#amnav_footer .footer_direccion,
#amnav_footer .footer_horario {
    width: auto;
    margin: 0;
}

#amnav_footer h6 {
    margin: 0 0 17px;
    color: #fff;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .16em;
}

#amnav_footer p {
    margin: 0 0 9px;
    font-size: 14px;
    line-height: 1.8;
}

#amnav_footer a {
    color: rgba(255, 255, 255, .70);
}

#amnav_footer a:hover {
    color: #fff;
}

/* ============================ INICIO ============================ */
body:has(.hero-section) .main {
    background: #fff;
}

body:has(.hero-section) .hero-section {
    min-height: 640px;
    height: calc(100vh - 112px);
    max-height: 790px;
    padding: 0;
    background: var(--black);
}

body:has(.hero-section) .hero-section .section-hero,
body:has(.hero-section) .hero-section .section-hero__back {
    width: 100%;
    height: 100%;
    min-height: inherit;
    padding: 0;
    background-position: center;
    background-size: cover;
}

body:has(.hero-section) .hero-section .section-hero__back::before {
    display: none;
}

body:has(.hero-section) .hero-overlay {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: inherit;
    padding: 70px max(28px, calc((100vw - var(--content)) / 2));
    overflow: hidden;
    border-radius: 0;
    background:
        linear-gradient(90deg, rgba(8, 10, 12, .88) 0%, rgba(8, 10, 12, .63) 48%, rgba(8, 10, 12, .20) 100%);
}

body:has(.hero-section) .hero-overlay::after {
    content: "";
    position: absolute;
    right: -8vw;
    bottom: -25vw;
    width: 45vw;
    height: 45vw;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
    box-shadow:
        0 0 0 45px rgba(255, 255, 255, .025),
        0 0 0 90px rgba(255, 255, 255, .018);
}

body:has(.hero-section) .hero-overlay .grid-center {
    position: relative;
    z-index: 1;
    width: var(--content);
    max-width: 100%;
    margin: 0 auto;
}

body:has(.hero-section) .hero-overlay .col-6_md-10 {
    width: min(720px, 100%);
}

body:has(.hero-section) .section-hero__back--top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

body:has(.hero-section) .hero-title {
    position: static;
    width: 100%;
    margin: 0;
    padding: 0;
    transform: none;
    color: #fff;
    font-size: clamp(46px, 6.6vw, 88px);
    font-weight: 850;
    line-height: .94;
    letter-spacing: -.055em;
    text-align: left !important;
    text-wrap: balance;
    text-shadow: 0 10px 35px rgba(0, 0, 0, .35);
}

body:has(.hero-section) .hero-title::before {
    content: "MECÁNICA  •  LLANTAS  •  MANTENIMIENTO";
    display: block;
    margin-bottom: 22px;
    color: #ff524a;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: .22em;
}

body:has(.hero-section) .hero-img {
    width: min(570px, 90%);
    height: 112px;
    margin: 38px 0 0;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 12px;
    box-shadow: 0 24px 55px rgba(0, 0, 0, .35);
    transition: transform .3s ease;
}

body:has(.hero-section) .hero-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, .40);
}

body:has(.hero-section) .welcome-section,
body:has(.hero-section) .environment-section,
body:has(.hero-section) .principles-section {
    position: relative;
    padding: 110px max(28px, calc((100vw - var(--content)) / 2));
    border: 0;
}

body:has(.hero-section) .welcome-section {
    overflow: hidden;
    background: #fff;
}

body:has(.hero-section) .welcome-section::before {
    content: "01";
    position: absolute;
    top: 54px;
    left: max(28px, calc((100vw - var(--content)) / 2));
    color: var(--red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .2em;
}

body:has(.hero-section) .welcome-section::after {
    content: "MON";
    position: absolute;
    right: -28px;
    bottom: -80px;
    color: rgba(16, 18, 20, .025);
    font-size: clamp(150px, 24vw, 360px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.08em;
}

body:has(.hero-section) .welcome-section .grid-center {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(50px, 8vw, 120px);
    align-items: start;
    width: var(--content);
    max-width: 100%;
    margin: 0 auto;
}

body:has(.hero-section) .welcome-section .col-10,
body:has(.hero-section) .welcome-section .col-8_md-10 {
    width: 100%;
}

body:has(.hero-section) .section-title,
body:has(.hero-section) .section-title-verde,
body:has(.hero-section) .section-title-principios {
    margin: 0;
    color: var(--black);
    font-size: clamp(36px, 4.2vw, 58px);
    font-weight: 850;
    line-height: 1.02;
    letter-spacing: -.05em;
    text-align: left;
    text-transform: none;
}

body:has(.hero-section) .section-title::after,
body:has(.hero-section) .section-title-verde::after,
body:has(.hero-section) .section-title-principios::after {
    display: none;
}

body:has(.hero-section) .welcome-text {
    margin: 0;
    color: #56606a;
    font-size: 18px;
    line-height: 1.9;
    text-align: left;
}

body:has(.hero-section) .welcome-text strong {
    color: var(--black);
    font-weight: 750;
}

body:has(.hero-section) .environment-section {
    overflow: hidden;
    background:
        linear-gradient(105deg, rgba(12, 14, 17, .97), rgba(25, 29, 34, .92)),
        url("../img/pag_inicio_pie.jpg") center / cover;
}

body:has(.hero-section) .environment-section::before {
    content: "02  /  COMPROMISO";
    position: absolute;
    top: 54px;
    left: max(28px, calc((100vw - var(--content)) / 2));
    color: #ff524a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .2em;
}

body:has(.hero-section) .environment-section .grid-center,
body:has(.hero-section) .principles-section .grid-center {
    width: var(--content);
    max-width: 100%;
    margin: 0 auto;
}

body:has(.hero-section) .environment-section .col-8_md-10,
body:has(.hero-section) .principles-section .col-8_md-10 {
    width: 100%;
}

body:has(.hero-section) .environment-content {
    max-width: none;
    margin: 0;
    color: #fff;
    text-align: left !important;
}

body:has(.hero-section) .environment-section .section-title-verde {
    max-width: 650px;
    margin-bottom: 48px;
    color: #fff;
}

body:has(.hero-section) .environment-content > p {
    margin: 0;
}

body:has(.hero-section) .environment-content .check {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body:has(.hero-section) .environment-content .check li {
    position: relative;
    margin: 0;
    padding: 56px 24px 25px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    background: rgba(255, 255, 255, .055);
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    line-height: 1.75;
    backdrop-filter: blur(5px);
}

body:has(.hero-section) .environment-content .check li::before {
    content: "✓";
    position: absolute;
    top: 20px;
    left: 24px;
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

body:has(.hero-section) .principles-section {
    background: #f1f2f3;
}

body:has(.hero-section) .principles-section::before {
    content: "03  /  NUESTRA FORMA DE TRABAJAR";
    position: absolute;
    top: 54px;
    left: max(28px, calc((100vw - var(--content)) / 2));
    color: var(--red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .2em;
}

body:has(.hero-section) .principles-content {
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: left !important;
}

body:has(.hero-section) .principles-section .section-title-principios {
    max-width: 680px;
    margin-bottom: 48px;
}

body:has(.hero-section) .principles-content > p {
    margin: 0;
}

body:has(.hero-section) .principles-content ol {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin: 0;
    padding: 1px;
    overflow: hidden;
    border-radius: 16px;
    background: #d9dcdf;
    list-style: none;
    counter-reset: principle;
}

body:has(.hero-section) .principles-content ol li {
    position: relative;
    min-height: 128px;
    margin: 0;
    padding: 30px 28px 28px 84px;
    background: #fff;
    color: #4e5861;
    font-size: 15px;
    line-height: 1.7;
    counter-increment: principle;
}

body:has(.hero-section) .principles-content ol li::before {
    content: counter(principle, decimal-leading-zero);
    position: absolute;
    top: 29px;
    left: 27px;
    color: var(--red);
    font-size: 15px;
    font-weight: 850;
    letter-spacing: .04em;
}

/* ======================== QUIENES SOMOS ======================== */
body:has(.banner-section) .banner-section .banner {
    height: 600px;
    min-height: 0;
    background-position: center;
    background-size: cover;
}

body:has(.banner-section) .banner-overlay {
    display: flex;
    align-items: center;
    height: 100%;
    min-height: 0;
    padding: 70px max(28px, calc((100vw - var(--content)) / 2));
    background: linear-gradient(90deg, rgba(8, 10, 12, .88), rgba(8, 10, 12, .28));
}

body:has(.banner-section) .banner-overlay > div {
    width: min(760px, 100%);
    text-align: left !important;
}

body:has(.banner-section) .banner h1 {
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 850;
    line-height: .96;
    letter-spacing: -.055em;
}

body:has(.banner-section) .banner p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
    line-height: 1.8;
}

body:has(.banner-section) .valores-section,
body:has(.banner-section) .historia-section,
body:has(.banner-section) .equipo-section {
    padding: 110px max(28px, calc((100vw - var(--content)) / 2)) !important;
}

body:has(.banner-section) .valores-section .row,
body:has(.banner-section) .historia-section .row,
body:has(.banner-section) .equipo-section .row {
    width: var(--content);
    max-width: 100%;
    margin: 0 auto;
}

body:has(.banner-section) .valores-section .row,
body:has(.banner-section) .historia-section .row {
    --bs-gutter-x: 90px;
}

body:has(.banner-section) .valores-section h2,
body:has(.banner-section) .historia-section h2,
body:has(.banner-section) .equipo-section h2 {
    margin-bottom: 30px !important;
    color: var(--black);
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 850;
    line-height: 1.02;
    letter-spacing: -.045em;
    text-align: left;
}

body:has(.banner-section) .valores-section h6 {
    margin: 22px 0 5px;
    color: var(--red);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

body:has(.banner-section) .valores-section p,
body:has(.banner-section) .historia-section p {
    color: #5d6670 !important;
    line-height: 1.8;
}

body:has(.banner-section) .valores-section img,
body:has(.banner-section) .historia-section img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-lg);
}

body:has(.banner-section) .historia-section {
    background: #e9ecef !important;
}

body:has(.banner-section) .equipo-section {
    background: #fff;
}

body:has(.banner-section) .equipo-section h2 {
    width: 100%;
    margin-bottom: 50px !important;
    text-align: center;
}

body:has(.banner-section) .team-member {
    height: 100%;
    padding: 14px 14px 28px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

body:has(.banner-section) .team-member:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
}

body:has(.banner-section) .team-member img {
    width: 100%;
    height: 330px;
    margin-bottom: 23px !important;
    object-fit: cover;
    object-position: top;
    border-radius: 11px !important;
}

body:has(.banner-section) .team-member h5 {
    color: var(--black);
    font-size: 20px;
    font-weight: 800;
}

body:has(.banner-section) .team-member span {
    color: var(--red) !important;
    font-size: 13px;
    font-weight: 750;
}

body:has(.banner-section) .team-member p {
    padding: 0 15px;
    color: #69727b !important;
    font-size: 14px;
    line-height: 1.7;
}

/* =========================== SERVICIOS ========================== */
body:has(.section-hero__back_service) > .section {
    background: #fff;
}

body:has(.section-hero__back_service) .section-hero__back_service {
    position: relative;
    width: 100%;
    height: 520px;
    margin: 0;
    background-position: center;
    background-size: cover;
}

body:has(.section-hero__back_service) .section-hero__back_service::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 10, 12, .88), rgba(8, 10, 12, .28));
}

body:has(.section-hero__back_service) .section-hero__title {
    top: 50%;
    left: max(28px, calc((100vw - var(--content)) / 2));
    z-index: 1;
    width: min(820px, calc(100% - 56px));
    margin: 0;
    padding: 0;
    transform: translateY(-50%);
    color: #fff;
    font-size: clamp(46px, 6vw, 78px);
    font-weight: 850;
    line-height: .98;
    letter-spacing: -.05em;
    text-align: left !important;
}

body:has(.section-hero__back_service) .section-content {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
    width: var(--content);
    max-width: calc(100% - 56px);
    min-height: 540px;
    margin: 0 auto;
    padding: 90px 0;
}

body:has(.section-hero__back_service) .section-content > .row,
body:has(.section-hero__back_service) .section-content > .section-text {
    display: block;
    width: 100%;
    margin: 0 !important;
    transform: none;
}

body:has(.section-hero__back_service) .section-content > .row > div,
body:has(.section-hero__back_service) .section-content > .section-text > div {
    width: 100%;
    max-width: none;
    margin: 0 !important;
}

body:has(.section-hero__back_service) .section-content img {
    width: 100%;
    height: 410px;
    margin: 0 !important;
    object-fit: cover;
    transform: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

body:has(.section-hero__back_service) .section-text {
    position: relative;
    padding-left: 54px;
    color: #515b64;
    font-size: 18px;
    line-height: 1.9;
}

body:has(.section-hero__back_service) .section-text::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 0;
    width: 5px;
    border-radius: 5px;
    background: var(--red);
}

/* ============================ GALERIA =========================== */
body:has(.section-hero__back_galeria) .section-hero__back_galeria {
    position: relative;
    width: 100%;
    height: 500px;
    min-height: 0;
    background-position: center;
    background-size: cover;
}

body:has(.section-hero__back_galeria) .section-hero__back_galeria::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 10, 12, .90), rgba(8, 10, 12, .28));
}

body:has(.section-hero__back_galeria) .section-hero__title_galeria {
    top: 50%;
    left: max(28px, calc((100vw - var(--content)) / 2));
    z-index: 1;
    width: min(820px, calc(100% - 56px));
    margin: 0;
    padding: 0;
    transform: translateY(-50%);
    color: #fff;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 850;
    line-height: .98;
    letter-spacing: -.05em;
    text-align: left !important;
}

body:has(.section-hero__back_galeria) > .main {
    padding: 90px 0 110px;
    background: #eceff1;
}

body:has(.section-hero__back_galeria) .swiper {
    width: min(1280px, 100%);
    padding: 35px 25px 80px;
}

body:has(.section-hero__back_galeria) .swiper-slide {
    width: 340px;
    height: 510px;
    padding: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: #fff;
    box-shadow: var(--shadow-lg);
}

body:has(.section-hero__back_galeria) .product-content {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    height: 100%;
}

body:has(.section-hero__back_galeria) .product-img {
    display: grid;
    flex: 0 0 280px;
    place-items: center;
    overflow: hidden;
    border-radius: 11px;
    background: #f3f4f5;
}

body:has(.section-hero__back_galeria) .product-img img,
body:has(.section-hero__back_galeria) .product-img img:hover {
    width: 100%;
    height: 260px;
    object-fit: contain;
    transform: none;
}

body:has(.section-hero__back_galeria) .product-txt {
    flex: 1;
    padding: 22px 5px 0;
}

body:has(.section-hero__back_galeria) .product-txt span {
    color: var(--red);
    font-size: 20px;
    font-weight: 850;
}

body:has(.section-hero__back_galeria) .product-txt h3 {
    margin: 5px 0 10px;
    color: var(--black);
    font-size: 20px;
    font-weight: 850;
}

body:has(.section-hero__back_galeria) .product-txt p {
    color: #68727b;
    font-size: 14px;
    line-height: 1.6;
}

/* ============================ CONTACTO ========================== */
body:has(.section-hero__description_Contactenos) {
    background: #eef0f2;
}

body:has(.section-hero__description_Contactenos) > .section-hero__back {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 500px;
    min-height: 0;
    padding: 70px max(28px, calc((100vw - var(--content)) / 2));
    background-position: center;
    background-size: cover;
}

body:has(.section-hero__description_Contactenos) > .section-hero__back::before {
    content: "";
    position: absolute;
    inset: 0;
    display: block;
    background: linear-gradient(90deg, rgba(8, 10, 12, .91), rgba(8, 10, 12, .35));
}

body:has(.section-hero__description_Contactenos) .section-hero__title,
body:has(.section-hero__description_Contactenos) .section-hero__description_Contactenos {
    position: relative;
    top: auto;
    left: auto;
    z-index: 1;
    width: min(760px, 100%);
    margin: 0;
    padding: 0;
    transform: none;
    text-align: left !important;
}

body:has(.section-hero__description_Contactenos) .section-hero__title {
    color: #fff;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 850;
    line-height: .98;
    letter-spacing: -.05em;
}

body:has(.section-hero__description_Contactenos) .section-hero__description_Contactenos {
    margin-top: 22px;
    color: rgba(255, 255, 255, .76);
    font-size: 18px;
    line-height: 1.7;
}

body:has(.section-hero__description_Contactenos) > #contactForm {
    width: min(860px, calc(100% - 48px));
    max-width: none;
    margin: 85px auto;
    padding: 50px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-lg);
    color: #59636c;
    font-family: inherit;
    line-height: 1.8;
}

body:has(.section-hero__description_Contactenos) > #contactForm > p a {
    color: var(--red);
    font-weight: 750;
}

body:has(.section-hero__description_Contactenos) > #contactForm > form#contactForm {
    width: 100%;
    max-width: none;
    margin: 40px 0 0;
    padding: 38px;
    border: 0;
    border-radius: 13px;
    background: #f0f2f3;
    box-shadow: none;
}

body:has(.section-hero__description_Contactenos) form#contactForm label {
    display: block;
    margin: 0 0 7px;
    color: var(--black);
    font-size: 13px;
    font-weight: 750;
}

body:has(.section-hero__description_Contactenos) form#contactForm input:not([type="hidden"]),
body:has(.section-hero__description_Contactenos) form#contactForm select,
body:has(.section-hero__description_Contactenos) form#contactForm textarea {
    display: block !important;
    width: 100%;
    margin: 0 0 19px;
    padding: 13px 14px;
    border: 1px solid #cfd4d8;
    border-radius: 8px;
    background: #fff;
    color: var(--black);
    font: inherit;
    font-size: 15px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

body:has(.section-hero__description_Contactenos) form#contactForm input:focus,
body:has(.section-hero__description_Contactenos) form#contactForm select:focus,
body:has(.section-hero__description_Contactenos) form#contactForm textarea:focus {
    outline: 0;
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(217, 31, 24, .10);
}

body:has(.section-hero__description_Contactenos) form#contactForm #submitBtn {
    width: auto;
    min-width: 160px;
    padding: 13px 28px;
    border: 0;
    border-radius: 8px;
    background: var(--red);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .06em;
    box-shadow: 0 12px 28px rgba(217, 31, 24, .24);
}

body:has(.section-hero__description_Contactenos) form#contactForm #submitBtn:hover {
    background: var(--red-deep);
    transform: translateY(-2px);
}

body:has(.section-hero__description_Contactenos) .responsive-iframe {
    width: min(var(--content), calc(100% - 48px));
    height: 520px;
    margin: 0 auto 90px;
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* ============================ RESPONSIVE ======================== */
@media (max-width: 900px) {
    #amnav_header .amnav__social {
        justify-content: center;
        padding: 0 18px;
    }

    #amnav_header .amnav {
        height: 70px;
        padding: 0 20px;
    }

    #amnav_header .amnav__logo {
        height: 70px;
    }

    #amnav_header #abrir-menu {
        display: block;
        right: 18px;
        color: var(--black);
        font-size: 28px;
    }

    #amnav_header .menu {
        display: none;
        align-items: stretch;
        gap: 0;
        width: min(86vw, 350px);
        height: 100dvh;
        padding: 76px 18px 25px;
        background: var(--black);
    }

    #amnav_header .menu.visible {
        display: flex;
    }

    #amnav_header .menu > li {
        display: block;
        width: 100%;
        padding: 0;
        text-align: left;
    }

    #amnav_header .menu > li > a {
        padding: 15px 10px;
        color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, .11);
    }

    #amnav_header .menu > li > a::after {
        display: none;
    }

    #amnav_header .amnav ul ul {
        position: static;
        width: 100%;
        max-height: 230px;
        padding: 5px;
        overflow-y: auto;
        border: 0;
        border-radius: 0;
        background: #202328;
        box-shadow: none;
    }

    #amnav_header .amnav ul ul a,
    #amnav_header .amnav ul ul a:hover {
        color: rgba(255, 255, 255, .75);
        background: transparent;
    }

    #amnav_header #cerrar-menu {
        display: block;
        top: 17px;
        right: 17px;
        color: #fff;
    }

    #amnav_footer {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    #amnav_footer .footer_DATOS {
        grid-template-columns: repeat(2, 1fr);
    }

    body:has(.hero-section) .welcome-section .grid-center {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    body:has(.hero-section) .environment-content .check {
        grid-template-columns: 1fr;
    }

    body:has(.section-hero__back_service) .section-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

@media (max-width: 767px) {
    body:has(.hero-section) .hero-section {
        min-height: 590px;
        height: calc(100svh - 104px);
    }

    body:has(.hero-section) .hero-overlay {
        padding: 55px 24px;
        background: linear-gradient(rgba(8, 10, 12, .78), rgba(8, 10, 12, .70));
    }

    body:has(.hero-section) .hero-title {
        font-size: clamp(42px, 13vw, 64px);
    }

    body:has(.hero-section) .hero-title::before {
        font-size: 10px;
        line-height: 1.6;
    }

    body:has(.hero-section) .hero-img {
        width: 100%;
        height: 92px;
        margin-top: 30px;
    }

    body:has(.hero-section) .welcome-section,
    body:has(.hero-section) .environment-section,
    body:has(.hero-section) .principles-section {
        padding: 95px 24px 72px;
    }

    body:has(.hero-section) .section-title,
    body:has(.hero-section) .section-title-verde,
    body:has(.hero-section) .section-title-principios {
        font-size: 38px;
    }

    body:has(.hero-section) .welcome-text {
        font-size: 16px;
    }

    body:has(.hero-section) .principles-content ol {
        grid-template-columns: 1fr;
    }

    body:has(.hero-section) .principles-content ol li {
        min-height: 0;
        padding: 26px 22px 26px 70px;
    }

    body:has(.banner-section) .banner-section .banner,
    body:has(.section-hero__back_service) .section-hero__back_service,
    body:has(.section-hero__back_galeria) .section-hero__back_galeria,
    body:has(.section-hero__description_Contactenos) > .section-hero__back {
        height: 440px;
    }

    body:has(.banner-section) .banner-overlay {
        padding: 55px 24px;
    }

    body:has(.banner-section) .banner-overlay > div {
        text-align: left !important;
    }

    body:has(.banner-section) .banner h1,
    body:has(.section-hero__back_service) .section-hero__title,
    body:has(.section-hero__back_galeria) .section-hero__title_galeria,
    body:has(.section-hero__description_Contactenos) .section-hero__title {
        font-size: 45px;
    }

    body:has(.banner-section) .valores-section,
    body:has(.banner-section) .historia-section,
    body:has(.banner-section) .equipo-section {
        padding: 72px 24px !important;
    }

    body:has(.banner-section) .valores-section .row,
    body:has(.banner-section) .historia-section .row {
        --bs-gutter-x: 24px;
    }

    body:has(.banner-section) .valores-section img,
    body:has(.banner-section) .historia-section img {
        height: 390px;
    }

    body:has(.section-hero__back_service) .section-hero__title,
    body:has(.section-hero__back_galeria) .section-hero__title_galeria {
        left: 24px;
        width: calc(100% - 48px);
    }

    body:has(.section-hero__back_service) .section-content {
        max-width: calc(100% - 48px);
        padding: 65px 0;
    }

    body:has(.section-hero__back_service) .section-content img {
        height: 300px;
    }

    body:has(.section-hero__back_service) .section-text {
        padding-left: 28px;
        font-size: 16px;
    }

    body:has(.section-hero__description_Contactenos) > .section-hero__back {
        padding: 55px 24px;
    }

    body:has(.section-hero__description_Contactenos) .section-hero__description_Contactenos {
        font-size: 15px;
    }

    body:has(.section-hero__description_Contactenos) > #contactForm {
        width: calc(100% - 32px);
        margin: 55px auto;
        padding: 26px 21px;
    }

    body:has(.section-hero__description_Contactenos) > #contactForm > form#contactForm {
        padding: 24px 18px;
    }

    body:has(.section-hero__description_Contactenos) .responsive-iframe {
        width: calc(100% - 32px);
        height: 390px;
        margin-bottom: 55px;
    }
}

@media (max-width: 560px) {
    #amnav_header .amnav__social {
        height: 32px;
    }

    #amnav_header .amnav__social-item a {
        font-size: 10px;
    }

    #amnav_footer {
        padding: 55px 24px;
    }

    #amnav_footer .footer_DATOS {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    body:has(.section-hero__back_galeria) .swiper-slide {
        width: min(315px, calc(100vw - 38px));
    }
}

/* =====================================================================
   HOME PREMIUM - estructura editorial
   ===================================================================== */
.home-premium {
    --home-shell: 1180px;
    background: #fff;
    color: #101214;
}

.home-premium *,
.home-premium *::before,
.home-premium *::after {
    box-sizing: border-box;
}

.home-shell {
    width: min(var(--home-shell), calc(100% - 56px));
    margin-inline: auto;
}

.home-kicker,
.home-eyebrow {
    display: block;
    color: #d91f18;
    font-size: 11px;
    font-weight: 850;
    line-height: 1.4;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.home-section-heading h2 {
    max-width: 670px;
    margin: 17px 0 0;
    color: #101214;
    font-size: clamp(38px, 4.6vw, 64px);
    font-weight: 850;
    line-height: .99;
    letter-spacing: -.055em;
    text-align: left;
    text-wrap: balance;
}

.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-height: 52px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: transform .2s ease, color .2s ease, background .2s ease, border .2s ease;
}

.home-button span {
    font-size: 19px;
    font-weight: 400;
    line-height: 1;
}

.home-button:hover {
    transform: translateY(-3px);
}

.home-button--primary {
    background: #d91f18;
    color: #fff;
    box-shadow: 0 15px 38px rgba(217, 31, 24, .3);
}

.home-button--primary:hover {
    background: #f2372f;
    color: #fff;
}

.home-button--ghost {
    border-color: rgba(255, 255, 255, .36);
    color: #fff;
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(6px);
}

.home-button--ghost:hover {
    border-color: #fff;
    color: #101214;
    background: #fff;
}

.home-button--dark {
    background: #101214;
    color: #fff;
}

.home-button--dark:hover {
    background: #d91f18;
    color: #fff;
}

.home-button--light {
    background: #fff;
    color: #101214;
}

.home-button--light:hover {
    color: #d91f18;
}

/* Hero */
.home-hero {
    position: relative;
    display: flex;
    min-height: 720px;
    height: calc(100vh - 112px);
    max-height: 850px;
    align-items: center;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    isolation: isolate;
}

.home-hero__shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(7, 9, 11, .94) 0%, rgba(7, 9, 11, .70) 49%, rgba(7, 9, 11, .16) 82%),
        linear-gradient(0deg, rgba(7, 9, 11, .56), transparent 44%);
}

.home-hero::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc((100% - min(var(--home-shell), calc(100% - 56px))) / 2 - 28px);
    width: 1px;
    background: rgba(255, 255, 255, .12);
}

.home-hero__content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 96px;
}

.home-hero__copy {
    width: min(760px, 75%);
}

.home-hero .home-eyebrow {
    margin-bottom: 24px;
    color: #ff5048;
}

.home-hero h1 {
    max-width: 800px;
    margin: 0;
    color: #fff;
    font-size: clamp(58px, 7.3vw, 102px);
    font-weight: 880;
    line-height: .88;
    letter-spacing: -.068em;
    text-wrap: balance;
    text-shadow: 0 10px 35px rgba(0, 0, 0, .28);
}

.home-hero__copy > p {
    max-width: 590px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .73);
    font-size: 18px;
    line-height: 1.75;
}

.home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.home-hero__stamp {
    position: absolute;
    right: 0;
    bottom: 150px;
    display: flex;
    width: 188px;
    height: 188px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    background: rgba(12, 14, 17, .24);
    color: #fff;
    text-align: center;
    backdrop-filter: blur(9px);
}

.home-hero__stamp::before,
.home-hero__stamp::after {
    content: "";
    position: absolute;
    inset: 9px;
    border: 1px dashed rgba(255, 255, 255, .24);
    border-radius: inherit;
}

.home-hero__stamp::after {
    inset: auto;
    top: -24px;
    width: 1px;
    height: 24px;
    border: 0;
    background: rgba(255, 255, 255, .35);
}

.home-hero__stamp strong {
    font-size: 48px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: -.06em;
}

.home-hero__stamp span {
    margin-top: 9px;
    color: rgba(255, 255, 255, .68);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.home-hero__bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    border-top: 1px solid rgba(255, 255, 255, .13);
    background: rgba(9, 11, 13, .69);
    backdrop-filter: blur(12px);
}

.home-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 1.35fr;
    min-height: 96px;
}

.home-trust > div,
.home-trust > a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 25px;
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.home-trust > a {
    border-right: 1px solid rgba(255, 255, 255, .12);
    background: #d91f18;
    color: #fff;
}

.home-trust strong {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
}

.home-trust span {
    margin-top: 4px;
    color: rgba(255, 255, 255, .53);
    font-size: 11px;
}

.home-trust > a span {
    color: rgba(255, 255, 255, .73);
}

/* Presentacion */
.home-intro {
    position: relative;
    overflow: hidden;
    padding: 125px 0;
    background: #fff;
}

.home-intro::after {
    content: "MONGE";
    position: absolute;
    right: -25px;
    bottom: -92px;
    color: rgba(16, 18, 20, .025);
    font-size: clamp(150px, 21vw, 320px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.08em;
}

.home-intro__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(70px, 10vw, 145px);
    align-items: start;
}

.home-intro__text {
    padding-top: 29px;
}

.home-intro__text p {
    margin: 0;
    color: #59636c;
    font-size: 17px;
    line-height: 1.9;
}

.home-intro__text strong {
    color: #101214;
}

.home-text-link {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    margin-top: 28px;
    padding-bottom: 5px;
    border-bottom: 1px solid #d91f18;
    color: #101214;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-text-link:hover {
    color: #d91f18;
}

/* Servicios */
.home-services {
    padding: 120px 0 130px;
    background: #eceeef;
}

.home-services__head {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 58px;
}

.home-services__head > p {
    margin: 0 0 3px;
    color: #606a73;
    font-size: 15px;
    line-height: 1.8;
}

.home-services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 385px;
    gap: 16px;
}

.home-service-card {
    position: relative;
    overflow: hidden;
    background: #171a1e;
    color: #fff;
    isolation: isolate;
}

.home-service-card--large {
    grid-row: span 2;
}

.home-service-card--wide {
    grid-column: span 1;
}

.home-service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(0deg, rgba(7, 9, 11, .92), rgba(7, 9, 11, .03) 75%);
    transition: background .35s ease;
}

.home-service-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2, .65, .3, 1);
}

.home-service-card:hover img {
    transform: scale(1.055);
}

.home-service-card:hover::after {
    background: linear-gradient(0deg, rgba(175, 22, 16, .92), rgba(7, 9, 11, .05) 77%);
}

.home-service-card__number {
    position: absolute;
    top: 24px;
    right: 25px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 50%;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
}

.home-service-card > div {
    position: absolute;
    right: 31px;
    bottom: 30px;
    left: 31px;
}

.home-service-card > div > span {
    color: #ff625b;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.home-service-card h3 {
    max-width: 430px;
    margin: 9px 0 0;
    color: #fff;
    font-size: clamp(25px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.035em;
}

.home-service-card b {
    display: inline-block;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    color: #fff;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: 0;
    transition: max-height .3s ease, margin .3s ease, opacity .3s ease;
}

.home-service-card:hover b {
    max-height: 30px;
    margin-top: 17px;
    opacity: 1;
}

.home-service-card--large h3 {
    font-size: clamp(34px, 4.6vw, 60px);
}

/* Ambiente */
.home-commitment {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 720px;
    background: #111317;
}

.home-commitment__image {
    position: relative;
    min-height: 650px;
    overflow: hidden;
}

.home-commitment__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 65%, #111317);
}

.home-commitment__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-commitment__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px max(40px, calc((100vw - var(--home-shell)) / 2)) 90px clamp(55px, 7vw, 120px);
}

.home-commitment__content h2 {
    max-width: 600px;
    margin: 18px 0 42px;
    color: #fff;
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 850;
    line-height: .98;
    letter-spacing: -.055em;
    text-align: left;
}

.home-environment-copy > ul {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-environment-copy li {
    position: relative;
    margin: 0;
    padding: 20px 0 20px 44px;
    border-top: 1px solid rgba(255, 255, 255, .13);
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
    line-height: 1.75;
}

.home-environment-copy li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.home-environment-copy li::before {
    content: "✓";
    position: absolute;
    top: 21px;
    left: 4px;
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;
    border-radius: 50%;
    background: #d91f18;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

/* Principios */
.home-principles {
    padding: 125px 0;
    background: #fff;
}

.home-principles__grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: clamp(70px, 10vw, 140px);
    align-items: start;
}

.home-principles__intro {
    position: sticky;
    top: 40px;
}

.home-principles__intro h2 {
    margin: 18px 0 26px;
    color: #101214;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 850;
    line-height: .94;
    letter-spacing: -.055em;
    text-align: left;
}

.home-principles__intro p {
    margin: 0 0 32px;
    color: #66707a;
    line-height: 1.8;
}

.home-principles__list > ol {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: premium-principle;
}

.home-principles__list li {
    position: relative;
    min-height: 92px;
    margin: 0;
    padding: 25px 45px 25px 76px;
    border-top: 1px solid #dfe2e4;
    color: #4d5760;
    line-height: 1.7;
    counter-increment: premium-principle;
    transition: color .2s ease, background .2s ease, padding .2s ease;
}

.home-principles__list li:last-child {
    border-bottom: 1px solid #dfe2e4;
}

.home-principles__list li::before {
    content: counter(premium-principle, decimal-leading-zero);
    position: absolute;
    top: 27px;
    left: 18px;
    color: #d91f18;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
}

.home-principles__list li::after {
    content: "↗";
    position: absolute;
    top: 27px;
    right: 17px;
    color: #a7adb2;
    font-size: 18px;
}

.home-principles__list li:hover {
    padding-left: 83px;
    background: #f4f5f5;
    color: #101214;
}

/* Marcas */
.home-brands {
    padding: 90px 0 100px;
    border-top: 1px solid #e2e4e5;
    background: #f2f3f3;
    text-align: center;
}

.home-brands h2 {
    margin: 13px 0 42px;
    color: #101214;
    font-size: 38px;
    font-weight: 850;
    letter-spacing: -.04em;
}

.home-brands__rail {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    overflow: hidden;
    border: 1px solid #d9dcde;
    background: #fff;
}

.home-brands__rail img {
    width: 100%;
    height: 118px;
    padding: 32px 28px;
    object-fit: contain;
    border-right: 1px solid #e1e3e5;
    filter: grayscale(1);
    opacity: .58;
    transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}

.home-brands__rail img:last-child {
    border-right: 0;
}

.home-brands__rail img:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.07);
}

/* Cierre */
.home-cta {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background: #d91f18;
    color: #fff;
}

.home-cta::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -200px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 50%;
    box-shadow:
        0 0 0 55px rgba(255, 255, 255, .035),
        0 0 0 110px rgba(255, 255, 255, .02);
}

.home-cta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

.home-cta .home-kicker {
    color: rgba(255, 255, 255, .67);
}

.home-cta h2 {
    max-width: 690px;
    margin: 15px 0 0;
    color: #fff;
    font-size: clamp(40px, 5vw, 66px);
    font-weight: 850;
    line-height: .96;
    letter-spacing: -.055em;
    text-align: left;
}

.home-cta__actions {
    display: flex;
    min-width: 230px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.home-cta__actions > a:last-child {
    color: rgba(255, 255, 255, .74);
    font-size: 12px;
}

.home-cta__actions > a:last-child strong {
    display: block;
    margin-top: 3px;
    color: #fff;
    font-size: 15px;
}

/* Header/footer additions */
#amnav_header .menu > .amnav__cta {
    align-items: center;
    margin-left: 7px;
}

#amnav_header .menu > .amnav__cta > a {
    height: 42px;
    padding: 0 17px;
    border-radius: 3px;
    background: #d91f18;
    color: #fff;
}

#amnav_header .menu > .amnav__cta > a::after {
    display: none;
}

#amnav_header .menu > .amnav__cta > a:hover {
    background: #a91712;
    color: #fff;
}

#amnav_footer .footer_tagline {
    margin-top: 18px;
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
    line-height: 1.7;
}

#amnav_footer .footer_bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin-top: 0;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .38);
    font-size: 11px;
    letter-spacing: .04em;
}

@media (max-width: 1050px) {
    .home-hero__stamp {
        right: 20px;
        bottom: 140px;
        width: 150px;
        height: 150px;
    }

    .home-hero__stamp strong {
        font-size: 38px;
    }

    .home-services__grid {
        grid-auto-rows: 330px;
    }

    .home-commitment {
        grid-template-columns: .8fr 1.2fr;
    }

    .home-brands__rail {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-brands__rail img:nth-child(3) {
        border-right: 0;
    }

    .home-brands__rail img:nth-child(-n+3) {
        border-bottom: 1px solid #e1e3e5;
    }
}

@media (max-width: 900px) {
    #amnav_header .menu > .amnav__cta {
        margin: 18px 0 0;
    }

    #amnav_header .menu > .amnav__cta > a {
        justify-content: center;
        height: 48px;
        border: 0;
    }

    .home-hero__copy {
        width: 100%;
        padding-right: 160px;
    }

    .home-trust {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-trust > a {
        display: none;
    }

    .home-trust > div:last-of-type {
        border-right: 1px solid rgba(255, 255, 255, .12);
    }

    .home-intro__grid,
    .home-services__head {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .home-intro__text {
        max-width: 720px;
        padding-top: 0;
    }

    .home-commitment {
        grid-template-columns: 1fr;
    }

    .home-commitment__image {
        min-height: 440px;
    }

    .home-commitment__image::after {
        background: linear-gradient(0deg, #111317, transparent 60%);
    }

    .home-commitment__content {
        padding: 20px 50px 90px;
    }

    .home-principles__grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .home-principles__intro {
        position: static;
        max-width: 650px;
    }

    .home-cta__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 42px;
    }
}

@media (max-width: 700px) {
    .home-shell {
        width: min(100% - 34px, var(--home-shell));
    }

    .home-hero {
        min-height: 660px;
        height: calc(100svh - 102px);
        max-height: 780px;
        background-position: 62% center;
    }

    .home-hero::before {
        display: none;
    }

    .home-hero__shade {
        background:
            linear-gradient(90deg, rgba(7, 9, 11, .91), rgba(7, 9, 11, .54)),
            linear-gradient(0deg, rgba(7, 9, 11, .65), transparent);
    }

    .home-hero__content {
        padding-bottom: 78px;
    }

    .home-hero__copy {
        padding: 0;
    }

    .home-hero h1 {
        font-size: clamp(52px, 16vw, 76px);
    }

    .home-hero__copy > p {
        font-size: 15px;
    }

    .home-hero__stamp {
        display: none;
    }

    .home-actions {
        align-items: stretch;
        flex-direction: column;
        width: min(100%, 330px);
    }

    .home-trust {
        grid-template-columns: repeat(3, 1fr);
        min-height: 78px;
    }

    .home-trust > div {
        padding: 13px 9px;
    }

    .home-trust strong {
        font-size: 10px;
    }

    .home-trust span {
        font-size: 8px;
    }

    .home-intro,
    .home-services,
    .home-principles {
        padding: 82px 0;
    }

    .home-section-heading h2 {
        font-size: 40px;
    }

    .home-intro__grid {
        gap: 29px;
    }

    .home-intro__text p {
        font-size: 15px;
        line-height: 1.8;
    }

    .home-services__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 350px;
    }

    .home-service-card--large {
        grid-row: span 1;
    }

    .home-service-card h3,
    .home-service-card--large h3 {
        font-size: 32px;
    }

    .home-service-card b {
        max-height: 30px;
        margin-top: 15px;
        opacity: 1;
    }

    .home-commitment__image {
        min-height: 330px;
    }

    .home-commitment__content {
        padding: 10px 24px 75px;
    }

    .home-commitment__content h2 {
        font-size: 43px;
    }

    .home-environment-copy li {
        padding-left: 40px;
        font-size: 13px;
    }

    .home-principles__intro h2 {
        font-size: 45px;
    }

    .home-principles__list li {
        padding: 23px 30px 23px 58px;
        font-size: 14px;
    }

    .home-principles__list li::before {
        left: 12px;
    }

    .home-principles__list li::after {
        display: none;
    }

    .home-brands {
        padding: 70px 0;
    }

    .home-brands__rail {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-brands__rail img {
        height: 100px;
        padding: 27px 21px;
        border-right: 1px solid #e1e3e5;
        border-bottom: 1px solid #e1e3e5;
    }

    .home-brands__rail img:nth-child(even) {
        border-right: 0;
    }

    .home-brands__rail img:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .home-cta {
        padding: 75px 0;
    }

    .home-cta h2 {
        font-size: 43px;
    }

    #amnav_footer .footer_bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =====================================================================
   HEADER V3 - navegación de taller premium
   ===================================================================== */
#amnav_header.site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: #fff;
    box-shadow: none;
}

.site-header__shell {
    width: min(1220px, calc(100% - 48px));
    margin-inline: auto;
}

#amnav_header .site-topbar {
    height: 37px;
    background: #0c0e10;
    color: rgba(255, 255, 255, .68);
}

#amnav_header .site-topbar .site-header__shell {
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

.site-topbar__location,
.site-topbar__contact,
.site-topbar__contact a {
    display: flex;
    align-items: center;
}

.site-topbar__location {
    gap: 9px;
    font-size: 10px;
    font-weight: 650;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.site-topbar__location > i {
    color: #e32921;
    font-size: 12px;
}

.site-topbar__status {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-left: 22px;
    padding-left: 22px;
    border-left: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .48);
}

.site-topbar__status b {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4cc36b;
    box-shadow: 0 0 0 4px rgba(76, 195, 107, .12);
}

.site-topbar__contact {
    height: 100%;
}

#amnav_header .site-topbar__contact a {
    height: 100%;
    gap: 8px;
    padding: 0 16px;
    border-left: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
    font-weight: 650;
    letter-spacing: .035em;
}

#amnav_header .site-topbar__contact a:last-child {
    border-right: 1px solid rgba(255, 255, 255, .12);
}

#amnav_header .site-topbar__contact a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .06);
}

.site-topbar__contact i {
    color: #e32921;
    font-size: 12px;
}

#amnav_header .site-nav {
    display: block;
    height: 86px;
    min-height: 0;
    padding: 0;
    border-bottom: 1px solid #e2e4e6;
    background: rgba(255, 255, 255, .98);
}

#amnav_header .site-nav__inner {
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

#amnav_header .site-brand {
    display: flex;
    height: 100%;
    align-items: center;
    color: #101214;
}

.site-brand__logo {
    display: grid;
    width: 70px;
    height: 70px;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    background: #fff;
}

.site-brand__logo img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.site-brand__text {
    display: flex;
    margin-left: 11px;
    flex-direction: column;
    line-height: 1;
    text-transform: uppercase;
}

.site-brand__text strong {
    color: #202428;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .23em;
}

.site-brand__text b {
    margin-top: 4px;
    color: #d91f18;
    font-size: 27px;
    font-weight: 900;
    letter-spacing: -.055em;
}

#amnav_header .site-menu {
    display: flex;
    height: 100%;
    align-items: stretch;
    gap: 4px;
}

#amnav_header .site-menu > li {
    position: relative;
    display: flex;
    height: 100%;
    align-items: stretch;
}

#amnav_header .site-menu > li > a {
    position: relative;
    display: flex;
    height: 100%;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    color: #252a2e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

#amnav_header .site-menu > li > a::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: -1px;
    left: 14px;
    height: 3px;
    background: #d91f18;
    transform: scaleX(0);
    transition: transform .22s ease;
}

#amnav_header .site-menu > li > a:hover {
    color: #d91f18;
    background: transparent;
}

#amnav_header .site-menu > li > a:hover::after {
    transform: scaleX(1);
}

#amnav_header .site-menu > li > a i {
    font-size: 9px;
}

#amnav_header .site-menu > .amnav__cta {
    height: 100%;
    margin: 0 0 0 8px;
    align-items: center;
}

#amnav_header .site-menu > .amnav__cta > a {
    height: 45px;
    padding: 0 19px;
    gap: 17px;
    border-radius: 2px;
    background: #d91f18;
    color: #fff;
    box-shadow: 0 10px 25px rgba(217, 31, 24, .17);
}

#amnav_header .site-menu > .amnav__cta > a:hover {
    background: #ad1712;
    color: #fff;
}

#amnav_header .site-menu > .amnav__cta > a::after {
    display: none;
}

#amnav_header .site-services-menu {
    position: absolute;
    top: 76px;
    right: auto;
    left: -180px;
    z-index: 30;
    display: grid;
    width: 680px;
    min-width: 0;
    grid-template-columns: 235px 1fr 1fr;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(16, 18, 20, .10);
    border-radius: 0;
    background: #fff;
    box-shadow: 0 28px 75px rgba(8, 10, 12, .19);
}

#amnav_header .site-menu__services:hover > .site-services-menu {
    display: grid;
}

#amnav_header .site-services-menu li {
    display: block;
    width: auto;
    background: #fff;
}

#amnav_header .site-services-menu__intro {
    grid-row: 1 / span 2;
    padding: 33px 28px;
    background:
        linear-gradient(rgba(11, 13, 15, .90), rgba(11, 13, 15, .93)),
        url("../img/servicio-de-llantas.jpg") center / cover !important;
}

.site-services-menu__intro span {
    display: block;
    color: #ff5048;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.site-services-menu__intro strong {
    display: block;
    margin-top: 15px;
    color: #fff;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.035em;
}

#amnav_header .site-services-menu__link {
    border-left: 1px solid #e7e9ea;
    border-bottom: 1px solid #e7e9ea;
}

#amnav_header .site-services-menu__link a {
    display: grid;
    height: 100%;
    min-height: 89px;
    grid-template-columns: 28px 1fr 20px;
    align-items: center;
    gap: 5px;
    padding: 18px 20px;
    color: #15181b;
    transition: color .2s ease, background .2s ease;
}

#amnav_header .site-services-menu__link a:hover {
    color: #d91f18;
    background: #f7f7f6;
}

#amnav_header .site-services-menu__link a > span {
    color: #d91f18;
    font-size: 9px;
    font-weight: 850;
}

#amnav_header .site-services-menu__link a > strong {
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
}

#amnav_header .site-services-menu__link a > i {
    font-size: 13px;
}

.site-menu-button,
.site-menu-close {
    display: none;
}

/* =====================================================================
   FOOTER V3 - cierre completo
   ===================================================================== */
#amnav_footer.site-footer {
    position: relative;
    display: block;
    padding: 0;
    overflow: hidden;
    background:
        linear-gradient(110deg, rgba(8, 10, 12, .985), rgba(18, 21, 24, .97)),
        url("../img/pag_inicio_pie.jpg") center / cover;
    color: rgba(255, 255, 255, .62);
}

#amnav_footer.site-footer::before {
    display: none;
}

.site-footer__accent {
    height: 7px;
    background:
        linear-gradient(90deg, #d91f18 0 31%, #a51611 31% 47%, #2a2e32 47% 100%);
}

.site-footer__shell {
    display: grid;
    width: min(1220px, calc(100% - 48px));
    grid-template-columns: 1.05fr 1.95fr;
    column-gap: clamp(60px, 9vw, 130px);
    margin-inline: auto;
    padding: 82px 0 27px;
}

.site-footer__lead {
    padding-right: 10px;
}

#amnav_footer .site-footer__brand {
    display: flex;
    align-items: center;
    color: #fff;
}

#amnav_footer .site-footer__brand img {
    width: 76px;
    height: 76px;
    object-fit: contain;
    border-radius: 50%;
    filter: brightness(0) invert(1);
    opacity: .92;
}

#amnav_footer .site-footer__brand > span {
    display: flex;
    margin-left: 13px;
    flex-direction: column;
    line-height: 1;
    text-transform: uppercase;
}

#amnav_footer .site-footer__brand strong {
    font-size: 9px;
    letter-spacing: .21em;
}

#amnav_footer .site-footer__brand b {
    margin-top: 4px;
    color: #f03a32;
    font-size: 29px;
    font-weight: 900;
    letter-spacing: -.055em;
}

#amnav_footer .site-footer__lead > p {
    max-width: 360px;
    margin: 26px 0 30px;
    color: rgba(255, 255, 255, .55);
    font-size: 14px;
    line-height: 1.8;
}

#amnav_footer .site-footer__appointment {
    display: flex;
    max-width: 325px;
    justify-content: space-between;
    align-items: center;
    padding: 17px 18px;
    border: 1px solid rgba(255, 255, 255, .17);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: border .2s ease, background .2s ease;
}

#amnav_footer .site-footer__appointment:hover {
    border-color: #d91f18;
    background: #d91f18;
}

.site-footer__columns {
    display: grid;
    grid-template-columns: .7fr .9fr 1.4fr;
    gap: 38px;
}

.site-footer__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#amnav_footer .site-footer__label {
    display: block;
    margin-bottom: 25px;
    color: #f13c34;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .19em;
    text-transform: uppercase;
}

#amnav_footer .site-footer__column > a {
    margin-bottom: 11px;
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    transition: padding .2s ease, color .2s ease;
}

#amnav_footer .site-footer__column > a:hover {
    padding-left: 4px;
    color: #fff;
}

#amnav_footer .site-footer__column--contact > .site-footer__contact-line {
    display: grid;
    width: 100%;
    grid-template-columns: 25px 1fr;
    gap: 7px;
    margin-bottom: 13px;
    font-size: 12px;
}

.site-footer__contact-line i,
.site-footer__address i {
    color: #e63730;
}

#amnav_footer .site-footer__column--contact > .site-footer__contact-line span {
    overflow-wrap: anywhere;
}

#amnav_footer .site-footer__address {
    display: grid;
    grid-template-columns: 25px 1fr;
    gap: 7px;
    margin: 8px 0 0;
    color: rgba(255, 255, 255, .52);
    font-size: 12px;
    line-height: 1.7;
}

.site-footer__schedule {
    grid-column: 2;
    margin-top: 42px;
    padding-top: 27px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

#amnav_footer .site-footer__schedule .site-footer__label {
    margin-bottom: 14px;
}

.site-footer__schedule > div {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.site-footer__schedule i {
    margin-top: 4px;
    color: #e63730;
}

#amnav_footer .site-footer__schedule p {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
    line-height: 1.8;
}

.site-footer__bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .35);
    font-size: 10px;
    letter-spacing: .055em;
}

.site-footer__bottom > div {
    display: flex;
    align-items: center;
    gap: 13px;
}

.site-footer__bottom b {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: rgba(255, 255, 255, .62);
    font-size: 8px;
}

/* =====================================================================
   GALERIA V3 - catálogo editorial
   ===================================================================== */
.gallery-premium {
    --gallery-shell: 1180px;
    background: #f1f2f2;
    color: #101214;
}

.gallery-shell {
    width: min(var(--gallery-shell), calc(100% - 56px));
    margin-inline: auto;
}

.gallery-kicker {
    display: block;
    color: #d91f18;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.gallery-hero {
    position: relative;
    display: flex;
    height: 570px;
    align-items: center;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    isolation: isolate;
}

.gallery-hero::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc((100% - min(var(--gallery-shell), calc(100% - 56px))) / 2 - 28px);
    width: 1px;
    background: rgba(255, 255, 255, .14);
}

.gallery-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(7, 9, 11, .94), rgba(7, 9, 11, .66) 55%, rgba(7, 9, 11, .22)),
        linear-gradient(0deg, rgba(7, 9, 11, .55), transparent);
}

.gallery-hero__content {
    position: relative;
}

.gallery-hero .gallery-kicker {
    color: #ff5149;
}

.gallery-hero h1 {
    max-width: 850px;
    margin: 19px 0 0;
    color: #fff;
    font-size: clamp(58px, 7vw, 94px);
    font-weight: 880;
    line-height: .9;
    letter-spacing: -.065em;
    text-align: left;
}

.gallery-hero__content > p {
    max-width: 590px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: 16px;
    line-height: 1.75;
}

.gallery-hero__meta {
    position: absolute;
    right: 0;
    bottom: -130px;
    display: flex;
    align-items: center;
    gap: 38px;
}

.gallery-hero__meta > span {
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, .56);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gallery-hero__meta strong {
    color: #fff;
    font-size: 28px;
    font-weight: 850;
    letter-spacing: -.04em;
}

.gallery-hero__meta a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, .45);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.gallery-catalog {
    padding: 115px 0 130px;
}

.gallery-catalog__header {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 90px;
    align-items: end;
    margin-bottom: 60px;
}

.gallery-catalog__header h2 {
    margin: 16px 0 0;
    color: #101214;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 860;
    line-height: .96;
    letter-spacing: -.06em;
    text-align: left;
}

.gallery-catalog__header > p {
    margin: 0 0 4px;
    color: #69727a;
    font-size: 14px;
    line-height: 1.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.gallery-product {
    overflow: hidden;
    border: 1px solid #dadddf;
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

.gallery-product:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 60px rgba(12, 15, 18, .13);
}

.gallery-product__visual {
    position: relative;
    display: grid;
    height: 390px;
    place-items: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(236, 238, 239, .92)),
        repeating-linear-gradient(90deg, transparent 0 49px, rgba(16, 18, 20, .025) 49px 50px);
}

.gallery-product__visual::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -100px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(16, 18, 20, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 30px rgba(16, 18, 20, .02);
}

.gallery-product__visual img {
    position: relative;
    z-index: 1;
    width: 74%;
    height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 24px 25px rgba(12, 15, 18, .15));
    transition: transform .45s cubic-bezier(.2, .7, .3, 1);
}

.gallery-product:hover .gallery-product__visual img {
    transform: scale(1.065) rotate(-1deg);
}

.gallery-product__index {
    position: absolute;
    top: 23px;
    left: 24px;
    color: #9ba1a6;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .1em;
}

.gallery-product__tag {
    position: absolute;
    top: 18px;
    right: 19px;
    z-index: 2;
    padding: 7px 10px;
    border: 1px solid #d9dcde;
    border-radius: 30px;
    background: rgba(255, 255, 255, .75);
    color: #4e585f;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}

.gallery-product__tag::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 7px;
    border-radius: 50%;
    background: #43b765;
}

.gallery-product__visual > a {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 3;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    background: #111316;
    color: #fff;
    transition: transform .2s ease, background .2s ease;
}

.gallery-product__visual > a:hover {
    transform: rotate(45deg);
    background: #d91f18;
    color: #fff;
}

.gallery-product__content {
    padding: 31px 30px 27px;
}

.gallery-product__title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
}

.gallery-product__title h3 {
    margin: 0;
    color: #101214;
    font-size: 25px;
    font-weight: 850;
    line-height: 1.1;
    letter-spacing: -.035em;
}

.gallery-product__title strong {
    flex: 0 0 auto;
    color: #d91f18;
    font-size: 18px;
    font-weight: 850;
}

.gallery-product__content > p {
    min-height: 51px;
    margin: 17px 0 24px;
    color: #687179;
    font-size: 13px;
    line-height: 1.7;
}

.gallery-product__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 19px;
    border-top: 1px solid #e3e5e6;
}

.gallery-product__footer > span {
    color: #92999f;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.gallery-product__footer a {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #171a1d;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gallery-product__footer a:hover {
    color: #d91f18;
}

.gallery-empty {
    padding: 80px;
    border: 1px solid #dadddf;
    background: #fff;
    text-align: center;
}

.gallery-assistance {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background:
        linear-gradient(100deg, rgba(10, 12, 14, .97), rgba(20, 23, 26, .94)),
        url("../img/talleres-corcuera-banner.jpg") center / cover;
}

.gallery-assistance::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -200px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    box-shadow: 0 0 0 50px rgba(255, 255, 255, .025);
}

.gallery-assistance__inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

.gallery-assistance h2 {
    max-width: 780px;
    margin: 14px 0 0;
    color: #fff;
    font-size: clamp(40px, 5vw, 66px);
    font-weight: 850;
    line-height: .97;
    letter-spacing: -.055em;
    text-align: left;
}

.gallery-assistance__inner > a {
    display: flex;
    min-width: 235px;
    justify-content: space-between;
    align-items: center;
    padding: 19px 20px;
    border: 1px solid rgba(255, 255, 255, .28);
    color: #fff;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
    transition: background .2s ease, border .2s ease;
}

.gallery-assistance__inner > a:hover {
    border-color: #d91f18;
    background: #d91f18;
    color: #fff;
}

@media (max-width: 980px) {
    #amnav_header .site-menu > li > a {
        padding-inline: 10px;
    }

    .site-brand__text {
        display: none;
    }

    .site-footer__shell {
        grid-template-columns: 1fr;
        row-gap: 60px;
    }

    .site-footer__columns {
        grid-column: 1;
    }

    .site-footer__schedule {
        grid-column: 1;
        margin-top: 0;
    }

    .gallery-product__visual {
        height: 330px;
    }

    .gallery-product__visual img {
        height: 250px;
    }
}

@media (max-width: 820px) {
    #amnav_header .site-topbar {
        height: 34px;
    }

    .site-topbar__status,
    .site-topbar__contact a:first-child,
    .site-topbar__contact a:last-child {
        display: none !important;
    }

    #amnav_header .site-topbar__contact a {
        border-right: 1px solid rgba(255, 255, 255, .12);
    }

    #amnav_header .site-nav {
        height: 72px;
    }

    #amnav_header .site-nav__inner {
        width: min(100% - 36px, 1220px);
    }

    .site-brand__logo {
        width: 59px;
        height: 59px;
    }

    .site-brand__logo img {
        width: 54px;
        height: 54px;
    }

    .site-brand__text {
        display: flex;
    }

    #amnav_header .site-menu-button {
        position: static;
        display: flex;
        width: 48px;
        height: 48px;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        gap: 5px;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .site-menu-button span {
        display: block;
        width: 26px;
        height: 2px;
        background: #111316;
    }

    .site-menu-button span:nth-child(2) {
        width: 19px;
    }

    #amnav_header .site-menu {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 100;
        display: none;
        width: min(88vw, 390px);
        height: 100dvh;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 85px 25px 30px;
        overflow-y: auto;
        background: #101214;
        box-shadow: -25px 0 70px rgba(0, 0, 0, .35);
    }

    #amnav_header .site-menu.visible {
        display: flex;
    }

    #amnav_header .site-menu-close {
        position: absolute;
        top: 21px;
        right: 21px;
        display: grid;
        width: 44px;
        height: 44px;
        place-items: center;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, .16);
        background: transparent;
        color: #fff;
        font-size: 19px;
    }

    #amnav_header .site-menu > li,
    #amnav_header .site-menu > .amnav__cta {
        display: block;
        width: 100%;
        height: auto;
        margin: 0;
    }

    #amnav_header .site-menu > li > a {
        display: flex;
        height: auto;
        justify-content: space-between;
        padding: 17px 7px;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        color: #fff;
        font-size: 13px;
    }

    #amnav_header .site-menu > li > a::after {
        display: none;
    }

    #amnav_header .site-menu > .amnav__cta {
        margin-top: 21px;
    }

    #amnav_header .site-menu > .amnav__cta > a {
        justify-content: center;
        padding: 17px;
        border: 0;
        background: #d91f18;
    }

    #amnav_header .site-services-menu,
    #amnav_header .site-menu__services:hover > .site-services-menu {
        position: static;
        display: none;
        width: 100%;
        grid-template-columns: 1fr;
        padding: 5px 0;
        border: 0;
        background: #1a1d21;
        box-shadow: none;
    }

    #amnav_header .site-menu__services:hover > .site-services-menu {
        display: grid;
    }

    #amnav_header .site-menu__services.submenu-open > .site-services-menu {
        display: grid;
    }

    #amnav_header .site-menu__services.submenu-open > a > i {
        transform: rotate(180deg);
    }

    #amnav_header .site-services-menu__intro {
        display: none;
    }

    #amnav_header .site-services-menu__link {
        border: 0;
        background: transparent;
    }

    #amnav_header .site-services-menu__link a {
        min-height: 0;
        padding: 12px 10px;
        color: rgba(255, 255, 255, .72);
        background: transparent;
    }

    .gallery-hero {
        height: 510px;
    }

    .gallery-hero__meta {
        position: static;
        margin-top: 37px;
    }

    .gallery-catalog__header {
        grid-template-columns: 1fr;
        gap: 27px;
    }

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

    .gallery-assistance__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 40px;
    }
}

/* Ubicaciones de la página de contacto. */
.contact-locations {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto clamp(60px, 8vw, 100px);
}

.contact-locations__heading {
    margin-bottom: 30px;
}

.contact-locations__heading > span {
    color: #e3231b;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.contact-locations__heading h2 {
    max-width: 620px;
    margin: 10px 0 0;
    color: #15181b;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 850;
    line-height: 1;
    letter-spacing: -.04em;
}

.contact-locations__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.contact-location {
    overflow: hidden;
    border: 1px solid rgba(21, 24, 27, .10);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(18, 21, 24, .10);
}

.contact-location__header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 24px;
}

.contact-location__header > span {
    color: #e3231b;
    font-size: 11px;
    font-weight: 900;
}

.contact-location__header h3 {
    margin: 0;
    color: #15181b;
    font-size: 20px;
    font-weight: 850;
}

.contact-location__header p {
    margin: 3px 0 0;
    color: #686d72;
    font-size: 14px;
}

.contact-location__map {
    height: 340px;
}

.contact-location__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-location > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-top: 1px solid rgba(21, 24, 27, .09);
    color: #15181b;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .04em;
}

.contact-location > a:hover {
    color: #e3231b;
}

@media (max-width: 820px) {
    .contact-locations {
        width: calc(100% - 32px);
    }

    .contact-locations__grid {
        grid-template-columns: 1fr;
    }

    .contact-location__map {
        height: 310px;
    }
}

@media (max-width: 580px) {
    .site-header__shell {
        width: calc(100% - 30px);
    }

    .site-topbar__location {
        font-size: 8px;
    }

    #amnav_header .site-topbar__contact a {
        padding: 0 9px;
        font-size: 9px;
    }

    .site-brand__text strong {
        font-size: 7px;
    }

    .site-brand__text b {
        font-size: 22px;
    }

    .site-footer__shell {
        width: calc(100% - 38px);
        padding-top: 60px;
    }

    .site-footer__columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 25px;
    }

    .site-footer__column--contact {
        grid-column: 1 / -1;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
    }

    .gallery-shell {
        width: calc(100% - 34px);
    }

    .gallery-hero {
        height: 540px;
        background-position: 60% center;
    }

    .gallery-hero::before {
        display: none;
    }

    .gallery-hero h1 {
        font-size: clamp(50px, 15vw, 70px);
    }

    .gallery-hero__content > p {
        font-size: 14px;
    }

    .gallery-hero__meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .gallery-catalog {
        padding: 78px 0 85px;
    }

    .gallery-catalog__header {
        margin-bottom: 42px;
    }

    .gallery-catalog__header h2 {
        font-size: 42px;
    }

    .gallery-product__visual {
        height: 300px;
    }

    .gallery-product__visual img {
        width: 80%;
        height: 220px;
    }

    .gallery-product__content {
        padding: 25px 21px 22px;
    }

    .gallery-product__title {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .gallery-product__content > p {
        min-height: 0;
    }

    .gallery-product__footer > span {
        display: none;
    }

    .gallery-assistance {
        padding: 75px 0;
    }

    .gallery-assistance h2 {
        font-size: 42px;
    }
}

/* =====================================================================
   AJUSTES DE COMPACIDAD Y CORRECCIONES
   ===================================================================== */
/* El megamenu permanece oculto hasta hover/foco en escritorio. */
#amnav_header .site-services-menu {
    display: none;
}

#amnav_header .site-menu__services:hover > .site-services-menu,
#amnav_header .site-menu__services:focus-within > .site-services-menu {
    display: grid;
}

/* Footer compacto */
#amnav_footer.site-footer--compact .site-footer__shell {
    display: block;
    width: min(1220px, calc(100% - 48px));
    padding: 52px 0 20px;
}

.site-footer__main {
    display: grid;
    grid-template-columns: 1.25fr .65fr 1.15fr .9fr;
    gap: clamp(30px, 4vw, 62px);
    align-items: start;
}

#amnav_footer.site-footer--compact .site-footer__lead {
    padding: 0;
}

#amnav_footer.site-footer--compact .site-footer__brand img {
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 6px;
    background: #fff;
    filter: none;
    opacity: 1;
}

#amnav_footer.site-footer--compact .site-footer__brand b {
    font-size: 25px;
}

#amnav_footer.site-footer--compact .site-footer__lead > p {
    max-width: 300px;
    margin: 18px 0 20px;
    font-size: 12px;
    line-height: 1.7;
}

#amnav_footer.site-footer--compact .site-footer__appointment {
    width: fit-content;
    min-width: 205px;
    padding: 12px 14px;
    font-size: 9px;
}

#amnav_footer.site-footer--compact .site-footer__label {
    margin-bottom: 16px;
}

#amnav_footer.site-footer--compact .site-footer__column > a {
    margin-bottom: 7px;
    font-size: 11px;
}

#amnav_footer.site-footer--compact .site-footer__column--contact > .site-footer__contact-line {
    margin-bottom: 8px;
    font-size: 10px;
}

#amnav_footer.site-footer--compact .site-footer__address {
    margin-top: 3px;
    font-size: 10px;
    line-height: 1.55;
}

.site-footer__hours > div {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 7px;
}

.site-footer__hours i {
    color: #e63730;
    font-size: 12px;
}

#amnav_footer .site-footer__hours p {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 10px;
    line-height: 1.8;
}

#amnav_footer.site-footer--compact .site-footer__bottom {
    margin-top: 35px;
    padding-top: 18px;
}

/* Galeria mas corta: hero reducido y tres productos por fila. */
.gallery-premium .gallery-hero {
    height: 430px;
}

.gallery-premium .gallery-hero h1 {
    font-size: clamp(52px, 6vw, 78px);
}

.gallery-premium .gallery-hero__content > p {
    margin-top: 18px;
}

.gallery-premium .gallery-hero__meta {
    bottom: -82px;
}

.gallery-premium .gallery-catalog {
    padding: 75px 0 85px;
}

.gallery-premium .gallery-catalog__header {
    margin-bottom: 40px;
}

.gallery-premium .gallery-catalog__header h2 {
    font-size: clamp(38px, 4vw, 56px);
}

.gallery-premium .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-premium .gallery-product__visual {
    height: 260px;
}

.gallery-premium .gallery-product__visual img {
    width: 78%;
    height: 200px;
}

.gallery-premium .gallery-product__index {
    top: 17px;
    left: 18px;
}

.gallery-premium .gallery-product__tag {
    top: 13px;
    right: 13px;
}

.gallery-premium .gallery-product__visual > a {
    right: 14px;
    bottom: 14px;
    width: 40px;
    height: 40px;
}

.gallery-premium .gallery-product__content {
    padding: 22px 21px 19px;
}

.gallery-premium .gallery-product__title {
    flex-direction: column;
    gap: 8px;
}

.gallery-premium .gallery-product__title h3 {
    font-size: 20px;
}

.gallery-premium .gallery-product__title strong {
    font-size: 15px;
}

.gallery-premium .gallery-product__content > p {
    display: -webkit-box;
    min-height: 45px;
    margin: 12px 0 17px;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.gallery-premium .gallery-product__footer {
    padding-top: 14px;
}

.gallery-premium .gallery-product__footer > span {
    display: none;
}

.gallery-premium .gallery-product__footer a {
    width: 100%;
    justify-content: space-between;
}

.gallery-premium .gallery-assistance {
    padding: 62px 0;
}

.gallery-premium .gallery-assistance h2 {
    font-size: clamp(36px, 4vw, 54px);
}

@media (max-width: 1000px) {
    .site-footer__main {
        grid-template-columns: 1.2fr .7fr 1.1fr;
    }

    .site-footer__hours {
        display: none;
    }

    .gallery-premium .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    #amnav_header .site-services-menu,
    #amnav_header .site-menu__services:hover > .site-services-menu,
    #amnav_header .site-menu__services:focus-within > .site-services-menu {
        display: none;
    }

    #amnav_header .site-menu__services.submenu-open > .site-services-menu {
        display: grid;
    }

    .site-footer__main {
        grid-template-columns: 1fr 1fr;
    }

    #amnav_footer.site-footer--compact .site-footer__lead {
        grid-column: 1 / -1;
    }

    #amnav_footer.site-footer--compact .site-footer__column--contact {
        grid-column: auto;
    }

    .gallery-premium .gallery-hero {
        height: 450px;
    }

    .gallery-premium .gallery-hero__meta {
        margin-top: 26px;
    }
}

@media (max-width: 580px) {
    #amnav_footer.site-footer--compact .site-footer__shell {
        width: calc(100% - 36px);
        padding-top: 43px;
    }

    .site-footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 34px 22px;
    }

    #amnav_footer.site-footer--compact .site-footer__column--contact {
        grid-column: 1 / -1;
    }

    #amnav_footer.site-footer--compact .site-footer__bottom {
        margin-top: 28px;
    }

    .gallery-premium .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-premium .gallery-hero {
        height: 470px;
    }

    .gallery-premium .gallery-catalog {
        padding: 62px 0 68px;
    }

    .gallery-premium .gallery-product__visual {
        height: 270px;
    }
}

/* =====================================================================
   PALETA MINERAL Y HEADER V4
   Fondo calido de bajo brillo + contraste grafito/rojo.
   ===================================================================== */
:root {
    --mineral-canvas: #e7e2d9;
    --mineral-light: #f1ede5;
    --mineral-card: #f8f5ef;
    --mineral-sage: #d9ded9;
    --mineral-line: #cfc9bf;
    --graphite: #15181a;
    --graphite-soft: #24282b;
    --signal-red: #d92720;
}

body {
    background-color: var(--mineral-canvas);
    background-image:
        radial-gradient(circle at 8% 12%, rgba(255, 255, 255, .46), transparent 25%),
        radial-gradient(circle at 91% 38%, rgba(155, 165, 157, .13), transparent 28%);
    color: var(--graphite);
}

/* Sustituye el blanco puro en las superficies principales. */
.home-premium {
    background: var(--mineral-canvas);
}

.home-intro {
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .28), transparent 42%),
        var(--mineral-light);
}

.home-services {
    background:
        linear-gradient(160deg, rgba(255, 255, 255, .20), transparent 44%),
        var(--mineral-sage);
}

.home-principles {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .22), transparent 36%),
        var(--mineral-canvas);
}

.home-principles__list li {
    border-color: rgba(77, 73, 67, .18);
    background: rgba(248, 245, 239, .58);
}

.home-principles__list li:hover {
    background: var(--mineral-card);
}

.home-brands {
    border-color: rgba(77, 73, 67, .17);
    background: #d7dcd7;
}

.home-brands__rail {
    border-color: rgba(77, 73, 67, .18);
    background: var(--mineral-card);
}

.gallery-premium,
.gallery-catalog {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .22), transparent 38%),
        #dfdbd3;
}

.gallery-product {
    border-color: #c9c5bd;
    background: var(--mineral-card);
}

.gallery-product__content {
    background: var(--mineral-card);
}

body:has(.banner-section) .valores-section,
body:has(.banner-section) .equipo-section {
    background: var(--mineral-light);
}

body:has(.banner-section) .historia-section {
    background: var(--mineral-sage) !important;
}

body:has(.section-hero__back_service) > .section {
    background: var(--mineral-light);
}

body:has(.section-hero__back_service) .section-content {
    background: transparent;
}

body:has(.section-hero__description_Contactenos) {
    background: var(--mineral-canvas);
}

body:has(.section-hero__description_Contactenos) > #contactForm {
    border-color: var(--mineral-line);
    background: var(--mineral-card);
}

body:has(.section-hero__description_Contactenos) > #contactForm > form#contactForm {
    background: #e2ded6;
}

/* Franja superior con jerarquia real. */
#amnav_header.site-header {
    background: var(--mineral-light);
}

#amnav_header .site-topbar {
    position: relative;
    height: 50px;
    overflow: hidden;
    background:
        linear-gradient(90deg, #121416 0%, #1b1e20 58%, #111315 100%);
}

#amnav_header .site-topbar::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: max(22px, calc((100vw - 1220px) / 2));
    background: var(--signal-red);
}

.site-topbar__location {
    align-self: stretch;
    gap: 11px;
}

.site-topbar__pin {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    color: #ff4b43;
}

.site-topbar__pin i {
    font-size: 12px;
}

.site-topbar__place {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.site-topbar__place small,
.site-topbar__contact a small {
    color: rgba(255, 255, 255, .36);
    font-size: 7px;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.site-topbar__place strong {
    margin-top: 5px;
    color: rgba(255, 255, 255, .84);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .055em;
}

.site-topbar__help {
    padding: 0 18px 0 0;
    color: rgba(255, 255, 255, .34);
    font-size: 8px;
    font-weight: 750;
    letter-spacing: .15em;
    text-transform: uppercase;
}

#amnav_header .site-topbar__contact a {
    min-width: 145px;
    padding: 0 17px;
}

#amnav_header .site-topbar__contact a:first-of-type {
    min-width: 48px;
    justify-content: center;
}

#amnav_header .site-topbar__contact a > span {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

#amnav_header .site-topbar__contact a strong {
    margin-top: 5px;
    color: rgba(255, 255, 255, .82);
    font-size: 10px;
    font-weight: 750;
}

#amnav_header .site-nav {
    position: relative;
    height: 94px;
    border: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .34), transparent 34%),
        var(--mineral-light);
    box-shadow: 0 12px 30px rgba(31, 29, 26, .08);
}

#amnav_header .site-nav::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--signal-red) 0 13%, #25292c 13% 100%);
}

.site-brand__logo {
    width: 76px;
    height: 76px;
    border: 1px solid #d1cbc1;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(26, 24, 21, .08);
}

.site-brand__logo img {
    width: 70px;
    height: 70px;
}

.site-brand__text {
    margin-left: 14px;
}

.site-brand__text strong {
    color: #595750;
    font-size: 9px;
}

.site-brand__text b {
    font-size: 30px;
}

#amnav_header .site-menu > li > a {
    color: #303336;
}

#amnav_header .site-menu > .amnav__cta > a {
    height: 49px;
    border-radius: 4px;
    box-shadow: 0 12px 27px rgba(184, 31, 25, .22);
}

#amnav_header .site-services-menu {
    top: 84px;
}

/* La altura visible inicial contempla las nuevas proporciones del header. */
.home-hero {
    height: calc(100svh - 144px);
}

@media (max-width: 820px) {
    #amnav_header .site-topbar {
        height: 46px;
    }

    #amnav_header .site-topbar::before {
        width: 6px;
    }

    .site-topbar__help,
    #amnav_header .site-topbar__contact a:first-of-type,
    #amnav_header .site-topbar__contact a:last-child {
        display: none;
    }

    #amnav_header .site-topbar__contact a {
        min-width: 0;
        padding: 0 12px;
    }

    #amnav_header .site-nav {
        height: 80px;
    }

    .site-brand__logo {
        width: 64px;
        height: 64px;
    }

    .site-brand__logo img {
        width: 59px;
        height: 59px;
    }

    .site-brand__text b {
        font-size: 24px;
    }

    .home-hero {
        height: calc(100svh - 126px);
    }
}

@media (max-width: 580px) {
    #amnav_header .site-topbar .site-header__shell {
        width: calc(100% - 22px);
    }

    .site-topbar__pin {
        width: 26px;
        height: 26px;
    }

    .site-topbar__place small {
        display: none;
    }

    .site-topbar__place strong {
        margin: 0;
        font-size: 8px;
    }

    #amnav_header .site-topbar__contact a span small {
        display: none;
    }

    #amnav_header .site-topbar__contact a strong {
        margin: 0;
        font-size: 8px;
    }
}

/* =====================================================================
   HEADER V5 - una sola barra, limpio y con presencia
   ===================================================================== */
#amnav_header.site-header {
    background: #141719;
    box-shadow: 0 10px 30px rgba(10, 12, 14, .16);
}

#amnav_header .site-topbar {
    display: none;
}

#amnav_header .site-nav {
    height: 90px;
    border: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .025), transparent 32%),
        #141719;
    box-shadow: none;
}

#amnav_header .site-nav::after {
    height: 2px;
    background: #d92720;
    opacity: .82;
}

#amnav_header .site-nav__inner {
    width: min(1240px, calc(100% - 48px));
}

#amnav_header .site-brand {
    color: #fff;
}

#amnav_header .site-brand__logo {
    width: 66px;
    height: 66px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: #f5f2eb;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .24);
}

#amnav_header .site-brand__logo img {
    width: 61px;
    height: 61px;
}

#amnav_header .site-brand__text {
    margin-left: 13px;
}

#amnav_header .site-brand__text strong {
    color: rgba(255, 255, 255, .50);
    font-size: 8px;
}

#amnav_header .site-brand__text b {
    color: #f0352d;
    font-size: 28px;
}

#amnav_header .site-menu {
    gap: 1px;
}

#amnav_header .site-menu > li > a {
    padding-inline: 12px;
    color: rgba(255, 255, 255, .72);
    font-size: 10px;
}

#amnav_header .site-menu > li > a::after {
    right: 12px;
    bottom: 0;
    left: 12px;
    height: 3px;
    background: #ef382f;
}

#amnav_header .site-menu > li > a:hover {
    color: #fff;
}

#amnav_header .site-menu__phone {
    margin-left: 7px;
    border-left: 1px solid rgba(255, 255, 255, .13);
}

#amnav_header .site-menu > .site-menu__phone > a {
    gap: 10px;
    padding: 0 16px;
}

#amnav_header .site-menu__phone > a::after {
    display: none;
}

#amnav_header .site-menu__phone i {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    color: #f13b33;
    font-size: 11px;
}

#amnav_header .site-menu__phone span {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

#amnav_header .site-menu__phone small {
    color: rgba(255, 255, 255, .34);
    font-size: 7px;
    font-weight: 750;
    letter-spacing: .14em;
    text-transform: uppercase;
}

#amnav_header .site-menu__phone strong {
    margin-top: 5px;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .03em;
}

#amnav_header .site-menu > .amnav__cta {
    margin-left: 2px;
}

#amnav_header .site-menu > .amnav__cta > a {
    height: 47px;
    padding: 0 18px;
    border: 1px solid #e22a22;
    border-radius: 3px;
    background: #d92720;
    color: #fff;
    box-shadow: 0 12px 28px rgba(217, 39, 32, .20);
}

#amnav_header .site-menu > .amnav__cta > a:hover {
    border-color: #ff4940;
    background: #f13b33;
}

#amnav_header .site-services-menu {
    top: 80px;
}

.home-hero {
    height: calc(100svh - 90px);
}

@media (max-width: 1100px) {
    #amnav_header .site-menu__phone {
        display: none;
    }
}

@media (max-width: 820px) {
    #amnav_header .site-nav {
        height: 78px;
    }

    #amnav_header .site-nav__inner {
        width: calc(100% - 32px);
    }

    #amnav_header .site-brand__logo {
        width: 58px;
        height: 58px;
    }

    #amnav_header .site-brand__logo img {
        width: 53px;
        height: 53px;
    }

    #amnav_header .site-brand__text {
        display: flex;
    }

    #amnav_header .site-brand__text b {
        font-size: 23px;
    }

    #amnav_header .site-menu-button {
        width: 46px;
        height: 46px;
    }

    #amnav_header .site-menu-button span {
        display: none;
    }

    #amnav_header .site-menu-button span:first-child {
        display: block;
        flex: 0 0 3px;
        width: 27px;
        min-height: 3px;
        border-radius: 3px;
        background: #fff;
        box-shadow: 0 -8px 0 #fff, 0 8px 0 #fff;
    }

    #amnav_header .site-menu__phone {
        display: block;
        margin: 18px 0 0;
        border: 0;
    }

    #amnav_header .site-menu > .site-menu__phone > a {
        justify-content: flex-start;
        border: 1px solid rgba(255, 255, 255, .13);
    }

    #amnav_header .site-menu__phone span {
        display: flex;
    }

    .home-hero {
        height: calc(100svh - 78px);
    }
}

@media (max-width: 430px) {
    #amnav_header .site-brand__text strong {
        font-size: 7px;
    }

    #amnav_header .site-brand__text b {
        font-size: 20px;
    }

    .home-hero h1 {
        font-size: clamp(44px, 13.5vw, 58px);
        line-height: .96;
    }
}

/* Submenú de servicios: presentación estable en teléfonos y tabletas. */
@media (max-width: 820px) {
    #amnav_header .site-menu__services {
        overflow: hidden;
    }

    #amnav_header .site-menu {
        overflow-x: hidden;
    }

    #amnav_header .site-services-menu,
    #amnav_header .site-menu__services:hover > .site-services-menu,
    #amnav_header .site-menu__services:focus-within > .site-services-menu {
        position: static;
        left: auto;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        max-height: none;
        grid-template-columns: minmax(0, 1fr);
        padding: 0;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, .10);
        border-radius: 4px;
        background: #15181b;
        box-shadow: none;
    }

    #amnav_header .site-services-menu li.site-services-menu__intro {
        display: block;
        width: 100%;
        min-height: 145px;
        grid-row: auto;
        padding: 28px 24px;
    }

    #amnav_header .site-services-menu li.site-services-menu__link {
        width: 100%;
        padding: 0;
        border: 0;
        border-top: 1px solid rgba(255, 255, 255, .09);
        background: #15181b;
        text-align: left;
    }

    #amnav_header .site-services-menu__link a {
        width: 100%;
        min-height: 62px;
        grid-template-columns: 30px minmax(0, 1fr) 18px;
        gap: 8px;
        padding: 14px 18px;
        color: rgba(255, 255, 255, .88);
        background: transparent;
        box-sizing: border-box;
    }

    #amnav_header .site-services-menu__link a > strong {
        color: #fff;
        font-size: 13px;
        line-height: 1.25;
    }

    #amnav_header .site-services-menu__link a > span,
    #amnav_header .site-services-menu__link a > i {
        color: #f13b33;
    }
}
