@font-face {
    font-family: 'helvetica-w01-bold';
    font-style: normal;
    font-weight: 400;
    src: url(//static.parastorage.com/fonts/v2/2f12de04-5ca4-4ada-9e66-a958673b12b5/v1/helvetica-lt-w10-bold.woff2) format('woff2');
    unicode-range: U +0000, U +0401 -040C, U +040E-044F, U +0451 -045C, U +045E-045F, U +0490 -0491, U +2116;
    font-display: swap;
}

@font-face {
    font-family: 'helvetica-w01-light';
    font-style: normal;
    font-weight: 400;
    src: url(//static.parastorage.com/fonts/v2/2f12de04-5ca4-4ada-9e66-a958673b12b5/v1/helvetica-lt-w10-light.woff2) format('woff2');
    unicode-range: U +0000, U +0401 -040C, U +040E-044F, U +0451 -045C, U +045E-045F, U +0490 -0491, U +2116;
    font-display: swap;
}

:root {

    --primary-blue: #002DFF;
    --dark-blue: #142881;
    --carrier-green: #00B02B;
    --light-blue: #aecff2;
    --white: #ffffff;
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Evita que el header tape la sección */
}

body {
    font-family: 'helvetica-w01-light', Arial, sans-serif;
    overflow-x: hidden;
    background: #f8f9fa;
}

h1,
h2,
h3,
.Subtitulos,
.Subtitulos2 {
    font-family: 'helvetica-w01-bold', Arial, sans-serif;
}

/* --- ANIMACIONES CORE --- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(5px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.reveal {
    opacity: 0;
    transition: var(--transition-smooth);
}

.reveal.active {
    animation: fadeUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* --- RESPONSIVIDAD Y TIPOGRAFÍA FLUIDA --- */
.Subtitulos {
    font-size: clamp(24px, 5vw, 40px);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.Subtitulos2 {
    font-size: clamp(2rem, 6vw, 2.7rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

section {
    padding: 0;
    width: 100%;
}

/* Sistema de Contenedores Responsivos */
.padded-content,
.supra-container,
.contenedorAzul,
.fondoGris,
.container,
.section-padding {
    padding: 5rem 15% !important;
    /* Escritorio estándar */
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

/* Columnas Universales */
.seccionCol-6 {
    flex: 1 1 calc(50% - 2rem);
    max-width: 50%;
    min-width: 300px;
    /* Prevenir que se vean muy flacas antes de romper */
    padding: 1rem;
    box-sizing: border-box;
}

.seccionCol-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 1rem;
    box-sizing: border-box;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

@media (max-width: 1200px) {

    .padded-content,
    .supra-container,
    .contenedorAzul,
    .fondoGris,
    .container,
    .section-padding {
        padding: 4rem 10% !important;
    }
}

@media (max-width: 991px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .padded-content,
    .supra-container,
    .contenedorAzul,
    .fondoGris,
    .container,
    .section-padding {
        padding: 3rem 5% !important;
        flex-direction: column !important;
    }

    .seccionCol-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .logo img {
        height: 40px !important;
    }

    #map-container-wrapper {
        height: 50vh !important;
        min-height: 350px !important;
    }
}

/* --- EFECTOS INTERACTIVOS --- */
.hover-lift {
    transition: var(--transition-fast);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- FIXES ADICIONALES --- */
img,
svg {
    max-width: 100%;
    height: auto;
}

.disp-flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}