/* =====================================================
   ENVÍOS YA - EXPORTACIÓN
   exportacion.css
===================================================== */


/* =====================================================
   VARIABLES
===================================================== */

:root {

    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #eff6ff;

    --secondary: #0f172a;

    --text: #334155;
    --text-light: #64748b;

    --background: #ffffff;
    --background-soft: #f8fafc;

    --border: #e2e8f0;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;

    --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.12);

    --container: 1180px;
}


/* =====================================================
   RESET
===================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);
    background: var(--background);
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

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


/* =====================================================
   CONTENEDORES
===================================================== */

.section-container,
.header-container,
.footer-container,
.hero-container,
.cta-container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid var(--border);
}

.header-container {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =====================================================
   LOGO
===================================================== */

.brand {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}

.brand-symbol {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 9px;
}

.brand-symbol img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;
}

.brand-name {
    display: flex;
    align-items: baseline;

    gap: 2px;

    color: var(--secondary);

    font-size: 20px;
    font-weight: 700;
}

.brand-name strong {
    color: #dc2626;
}


/* =====================================================
   NAVEGACIÓN
===================================================== */

.main-nav {
    display: flex;
    align-items: center;

    gap: 30px;

    margin-left: auto;
    margin-right: 40px;
}

.nav-item {
    position: relative;

    padding: 26px 0;

    color: var(--text-light);

    font-size: 14px;
    font-weight: 600;

    transition:
        color 0.2s ease;
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary);
}

.nav-item.active::after {
    content: "";

    position: absolute;

    bottom: 17px;
    left: 0;

    width: 100%;
    height: 2px;

    background: var(--primary);

    border-radius: 10px;
}


/* =====================================================
   CONTACTO HEADER
===================================================== */

.header-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 11px 17px;

    border: 1px solid var(--border);
    border-radius: 10px;

    color: var(--secondary);

    font-size: 13px;
    font-weight: 700;

    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        background 0.2s ease;
}

.header-contact i {
    color: var(--primary);
}

.header-contact:hover {
    border-color: var(--primary);
    color: var(--primary);

    transform: translateY(-1px);
}


/* =====================================================
   MENÚ MÓVIL
===================================================== */

.mobile-menu {
    display: none;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: #ffffff;
    color: var(--secondary);

    font-size: 18px;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.mobile-menu:hover {
    border-color: var(--primary);

    color: var(--primary);
    background: var(--primary-light);
}


/* =====================================================
   MENÚ MÓVIL ABIERTO
===================================================== */

/*
   Estas reglas funcionan con el JS compartido
   si el JS agrega la clase "active" al menú/nav.
*/

.main-nav.active {
    display: flex;
}

.mobile-menu.active {
    color: var(--primary);
    border-color: var(--primary);
    background: var(--primary-light);
}


/* =====================================================
   SECTION TAG
===================================================== */

.section-tag {
    display: inline-block;

    margin-bottom: 15px;
    padding: 7px 15px;

    border-radius: 30px;

    background: var(--primary-light);
    color: var(--primary);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


/* =====================================================
   HERO EXPORTACIÓN
===================================================== */

.hero-exportacion {
    position: relative;

    overflow: hidden;

    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            #eff6ff 0%,
            #ffffff 60%,
            #f8fafc 100%
        );
}

.hero-exportacion::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -150px;
    top: -200px;

    border-radius: 50%;

    background: rgba(37, 99, 235, 0.07);

    pointer-events: none;
}

.hero-container {
    position: relative;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    align-items: center;

    gap: 70px;
}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    margin-bottom: 24px;

    color: var(--secondary);

    font-size: clamp(42px, 5vw, 64px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -2.5px;
}

.hero-content h1 span {
    display: block;

    color: var(--primary);
}

.hero-content p {
    max-width: 650px;

    margin-bottom: 25px;

    color: var(--text-light);

    font-size: 18px;

    line-height: 1.8;
}


/* =====================================================
   RUTA HERO
===================================================== */

.hero-route {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 32px;

    color: var(--secondary);

    font-size: 14px;
    font-weight: 700;
}

.hero-route span {
    display: inline-flex;
    align-items: center;

    gap: 7px;
}

.hero-route i {
    color: var(--primary);

    font-size: 13px;
}


/* =====================================================
   BOTONES
===================================================== */

.hero-actions {
    display: flex;
    align-items: center;

    gap: 14px;

    flex-wrap: wrap;
}

.primary-button,
.secondary-button {
    min-height: 48px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.primary-button {
    background: var(--primary);
    color: #ffffff;
}

.primary-button:hover {
    background: var(--primary-dark);

    transform: translateY(-2px);
}

.secondary-button {
    background: #ffffff;

    color: var(--secondary);

    border: 1px solid var(--border);
}

.secondary-button:hover {
    color: var(--primary);

    border-color: var(--primary);

    transform: translateY(-2px);
}


/* =====================================================
   HERO IMAGEN
===================================================== */

.hero-image {
    position: relative;

    height: 470px;

    overflow: hidden;

    border-radius: var(--radius-lg);

    background: var(--background-soft);

    border: 1px solid var(--border);

    box-shadow: var(--shadow-lg);
}

.hero-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(15, 23, 42, 0.18),
            transparent 50%
        );

    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

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


/* =====================================================
   SECCIONES GENERALES
===================================================== */

.export-services,
.gallery-section,
.process-section {
    padding: 100px 0;
}

.export-services,
.process-section {
    background: var(--background-soft);
}


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {
    max-width: 700px;

    margin-bottom: 55px;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.section-heading h2 {
    margin-bottom: 15px;

    color: var(--secondary);

    font-size: clamp(32px, 4vw, 46px);

    font-weight: 800;

    line-height: 1.15;

    letter-spacing: -1.5px;
}

.section-heading p {
    color: var(--text-light);

    font-size: 16px;

    line-height: 1.7;
}


/* =====================================================
   SERVICIOS
===================================================== */

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.service-card {
    position: relative;

    min-height: 330px;

    display: flex;
    flex-direction: column;

    padding: 30px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid var(--border);
    border-radius: 20px;

    box-shadow: var(--shadow-sm);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: var(--primary);

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: #cbd5e1;

    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}


/* =====================================================
   ICONOS SERVICIOS
===================================================== */

.service-icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 16px;

    background: var(--secondary);

    color: #ffffff;

    font-size: 22px;
}

.service-card:nth-child(2) .service-icon {
    background: #1d4ed8;
}

.service-card:nth-child(3) .service-icon {
    background: #7c3aed;
}

.service-card:nth-child(4) .service-icon {
    background: #0891b2;
}

.service-card:nth-child(5) .service-icon {
    background: #059669;
}


/* =====================================================
   NUMERO SERVICIO
===================================================== */

.service-number {
    display: block;

    margin-bottom: 6px;

    color: #94a3b8;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;
}


/* =====================================================
   CONTENIDO SERVICIO
===================================================== */

.service-card h3 {
    margin-bottom: 12px;

    color: var(--secondary);

    font-size: 21px;
    font-weight: 750;
}

.service-card p {
    color: var(--text-light);

    font-size: 14px;

    line-height: 1.7;
}


/* =====================================================
   RUTA SERVICIO
===================================================== */

.service-route {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: auto;
    padding-top: 25px;

    color: #475569;

    font-size: 12px;
    font-weight: 700;
}

.service-route span {
    display: inline-flex;
    align-items: center;

    gap: 6px;
}

.service-route i {
    color: #64748b;

    font-size: 11px;
}


/* =====================================================
   GALERÍA
===================================================== */

.gallery-section {
    background: #ffffff;
}

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    grid-auto-rows: 230px;

    gap: 18px;
}

.gallery-item {
    position: relative;

    overflow: hidden;

    border-radius: var(--radius-md);

    background: var(--background-soft);

    border: 1px solid var(--border);
}

.gallery-item::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(15, 23, 42, 0.18),
            transparent 50%
        );

    pointer-events: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-large {
    grid-row: span 2;
}


/* =====================================================
   PROCESO
===================================================== */

.process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}

.process-card {
    position: relative;

    padding: 32px 28px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.process-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-md);
}

.process-number {
    position: absolute;

    top: 20px;
    right: 22px;

    color: #cbd5e1;

    font-size: 13px;
    font-weight: 800;
}

.process-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 23px;

    border-radius: 14px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 21px;
}

.process-card h3 {
    margin-bottom: 10px;

    color: var(--secondary);

    font-size: 19px;
}

.process-card p {
    color: var(--text-light);

    font-size: 14px;

    line-height: 1.7;
}


/* =====================================================
   CAJAS DE EXPORTACIÓN
===================================================== */

.boxes-section {
    width: 100%;

    padding: 100px 0;

    background: var(--background-soft);
}

.boxes-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    max-width: 1250px;

    margin: 0 auto;
}

.box-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 330px;

    padding: 30px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 20px;

    box-shadow: var(--shadow-sm);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.box-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: var(--primary);

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform 0.3s ease;
}

.box-card:hover {
    transform: translateY(-7px);

    border-color: #cbd5e1;

    box-shadow:
        0 20px 45px rgba(15, 23, 42, 0.10);
}

.box-card:hover::before {
    transform: scaleX(1);
}


/* =====================================================
   BOX ICON
===================================================== */

.box-icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 16px;

    background: var(--primary);

    color: #ffffff;

    font-size: 22px;
}


/* =====================================================
   BOX NUMBER
===================================================== */

.box-number {
    display: block;

    margin-bottom: 6px;

    color: #94a3b8;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;
}


/* =====================================================
   BOX TITULO
===================================================== */

.box-card h3 {
    margin: 0 0 12px;

    color: var(--secondary);

    font-size: 21px;
    font-weight: 750;
}


/* =====================================================
   BOX DESCRIPCIÓN
===================================================== */

.box-card p {
    margin: 0;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.7;
}


/* =====================================================
   BOX PRECIO
===================================================== */

.box-price {
    display: flex;
    flex-direction: column;

    margin-top: 25px;
}

.box-price strong {
    color: var(--secondary);

    font-size: 32px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: -1px;
}

.box-price span {
    margin-top: 7px;

    color: #94a3b8;

    font-size: 11px;
    font-weight: 700;
}


/* =====================================================
   BOX INFORMACIÓN
===================================================== */

.box-route {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-top: auto;
    padding-top: 22px;

    color: #475569;

    font-size: 12px;
    font-weight: 700;
}

.box-route span {
    display: inline-flex;
    align-items: center;

    gap: 6px;
}

.box-route i {
    color: #94a3b8;

    font-size: 10px;
}

.box-route span:first-child i {
    color: var(--primary);
}


/* =====================================================
   NOTA DE CAJAS
===================================================== */

.boxes-note {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    max-width: 900px;

    margin: 35px auto 0;

    padding: 18px 22px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);
}

.boxes-note i {
    flex-shrink: 0;

    margin-top: 3px;

    color: var(--primary);

    font-size: 14px;
}

.boxes-note p {
    margin: 0;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.6;
}


/* =====================================================
   CTA
===================================================== */

.cta-section {
    padding: 80px 0;

    background: var(--secondary);
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.cta-content {
    max-width: 700px;
}

.cta-content .section-tag {
    background: rgba(147, 197, 253, 0.12);

    color: #93c5fd;
}

.cta-content h2 {
    margin-bottom: 15px;

    color: #ffffff;

    font-size: clamp(32px, 4vw, 46px);

    line-height: 1.15;

    letter-spacing: -1.5px;
}

.cta-content p {
    color: #cbd5e1;

    font-size: 16px;

    line-height: 1.7;
}

.cta-actions {
    display: flex;
    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}

.cta-section .secondary-button {
    background: transparent;

    color: #ffffff;

    border-color: #475569;
}

.cta-section .secondary-button:hover {
    border-color: #ffffff;
}


/* =====================================================
   FOOTER
===================================================== */

.main-footer {
    background: #020617;

    color: #ffffff;
}

.footer-container {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr;

    gap: 50px;

    padding: 70px 0;
}

.footer-brand .logo {
    display: inline-flex;

    margin-bottom: 18px;
}

.footer-brand .logo img {
    height: 42px;
}

.footer-brand p {
    max-width: 300px;

    color: #94a3b8;

    font-size: 14px;

    line-height: 1.7;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 18px;

    font-size: 15px;
}

.footer-links a,
.footer-contact a {
    margin-bottom: 10px;

    color: #94a3b8;

    font-size: 14px;

    transition:
        color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffffff;
}

.footer-contact p {
    margin-bottom: 8px;

    color: #94a3b8;

    font-size: 14px;
}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {
    padding: 22px 20px;

    border-top: 1px solid #1e293b;

    text-align: center;
}

.footer-bottom p {
    color: #64748b;

    font-size: 12px;
}


/* =====================================================
   TABLET GRANDE
===================================================== */

@media (max-width: 1100px) {

    .main-nav {
        gap: 20px;

        margin-right: 20px;
    }

    .hero-container {
        grid-template-columns: 1fr 0.85fr;

        gap: 45px;
    }

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

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

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


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .hero-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .hero-content {
        max-width: 750px;
    }

    .hero-image {
        width: 100%;
        max-width: 700px;

        height: 430px;

        margin: 0 auto;
    }

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

        grid-auto-rows: 250px;
    }

    .gallery-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .cta-container {
        flex-direction: column;

        align-items: flex-start;
    }

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


/* =====================================================
   MENÚ MÓVIL - TABLET / MOBILE
===================================================== */

@media (max-width: 750px) {

    /* =================================================
       HEADER
    ================================================= */

    .header-container {
        min-height: 68px;
    }

    .main-nav,
    .header-contact {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    /*
       Menú desplegable.

       El JS compartido puede agregar .active
       al .main-nav.
    */

    .main-nav.active {
        position: absolute;

        top: 68px;
        left: 15px;
        right: 15px;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        margin: 0;

        padding: 10px;

        background: #ffffff;

        border: 1px solid var(--border);

        border-radius: 14px;

        box-shadow: var(--shadow-lg);
    }

    .main-nav.active .nav-item {
        display: flex;
        align-items: center;

        min-height: 48px;

        padding: 12px 14px;

        border-radius: 8px;
    }

    .main-nav.active .nav-item:hover {
        background: var(--primary-light);
    }

    .main-nav.active .nav-item.active::after {
        display: none;
    }

    .main-nav.active .nav-item.active {
        background: var(--primary-light);
    }

    /* =================================================
       CONTENEDORES
    ================================================= */

    .section-container,
    .header-container,
    .footer-container,
    .hero-container,
    .cta-container {

        width: min(
            calc(100% - 30px),
            var(--container)
        );
    }


    /* =================================================
       HERO
    ================================================= */

    .hero-exportacion {
        padding: 70px 0;
    }

    .hero-content h1 {
        font-size: 42px;

        letter-spacing: -1.8px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-image {
        height: 350px;
    }

    .hero-actions {
        gap: 12px;
    }


    /* =================================================
       SECCIONES
    ================================================= */

    .export-services,
    .gallery-section,
    .process-section,
    .boxes-section {

        padding: 70px 0;
    }


    /* =================================================
       SERVICIOS
    ================================================= */

    .services-grid,
    .process-grid {

        grid-template-columns: 1fr;
    }


    /* =================================================
       GALERÍA
    ================================================= */

    .gallery-grid {

        grid-template-columns: 1fr;

        grid-auto-rows: 260px;

        gap: 14px;
    }

    .gallery-large {

        grid-column: auto;
        grid-row: auto;
    }


    /* =================================================
       CAJAS
    ================================================= */

    .boxes-grid {

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .box-card {

        min-height: auto;

        padding: 27px;
    }

    .box-route {

        margin-top: 25px;
    }

    .boxes-note {

        padding: 17px 19px;
    }


    /* =================================================
       CTA
    ================================================= */

    .cta-section {
        padding: 65px 0;
    }

    .cta-actions {

        width: 100%;

        flex-direction: column;

        align-items: stretch;
    }

    .cta-actions a {

        width: 100%;
    }


    /* =================================================
       FOOTER
    ================================================= */

    .footer-container {

        grid-template-columns: 1fr;

        gap: 35px;

        padding: 55px 0;
    }
}


/* =====================================================
   MOBILE PEQUEÑO
===================================================== */

@media (max-width: 480px) {

    .brand-symbol {
        width: 33px;
        height: 33px;
    }

    .brand-name {
        font-size: 17px;
    }

    .mobile-menu {
        width: 40px;
        height: 40px;
    }

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

    .hero-route {
        flex-wrap: wrap;

        gap: 10px;
    }

    .hero-actions {

        flex-direction: column;

        align-items: stretch;
    }

    .hero-actions a {

        width: 100%;
    }

    .hero-image {
        height: 280px;
    }

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

    .service-card,
    .process-card {
        padding: 27px;
    }

    .box-card {
        padding: 25px;
    }

    .box-price strong {
        font-size: 29px;
    }

    .gallery-grid {
        grid-auto-rows: 220px;
    }

    .footer-container {
        padding: 50px 0;
    }
}


/* =====================================================
   ACCESIBILIDAD / REDUCIR ANIMACIONES
===================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}