:root {
            --primary-red: #D32F2F;
            --secondary-orange: #FF5722;
            --accent-gold: #FFA726;
            --neutral-dark: #212121;
            --neutral-gray: #424242;
            --neutral-light: #FAFAFA;
            --white: #FFFFFF;
            --gradient-primary: linear-gradient(135deg, #D32F2F 0%, #FF5722 50%, #FFA726 100%);
            --gradient-secondary: linear-gradient(45deg, rgba(211, 47, 47, 0.9), rgba(255, 87, 34, 0.9));
            --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
            --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.15);
            --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.25);
            --border-radius: 12px;
            --transition: all 0.3s ease;
            --bg-global-image: url('../images/img_coverage.png');
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--neutral-dark);
            overflow-x: hidden;
            background: 
        linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), /* Cambiar a 0.6 */
                var(--bg-global-image);
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1000;
            transition: var(--transition);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-img {
            width: 110px;
            height: 110px;
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-link {
            text-decoration: none;
            color: var(--neutral-gray);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-red);
        }

        .cta-button {
            background: var(--gradient-primary);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--shadow-soft);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: var(--primary-red);
            transition: var(--transition);
        }

        .mobile-menu.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu.open span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu.open span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            padding-top: 70px; /* Compensar altura del header */
           background: 
            linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%),
            url('../images/img_hero.png');           
            background-size: cover;
            background-position: center 80%;
            background-attachment: scroll; 
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

            
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(211, 47, 47, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 167, 38, 0.1) 0%, transparent 50%);
            z-index: 1;
        }

        .hero-content {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            padding: 0 5%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            z-index: 2;
        }

        .hero-text {
            color: white;
            animation: slideInLeft 1s ease;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--accent-gold);
            margin-bottom: 3rem;
            opacity: 0;
            animation: fadeIn 1s ease 0.3s forwards;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
        }

                /* AGREGAR línea dorada: */
        .hero-subtitle::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 2px;
            background: var(--accent-gold);
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeIn 1s ease 0.6s forwards;
        }

        .hero-description {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeIn 1s ease 0.9s forwards;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            opacity: 0;
            animation: fadeIn 1s ease 1.2s forwards;
        }

        /* AGREGAR PARA IMAGEN DE HERO 
        .professional-truck {
            position: relative;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%),
                url('../images/img_hero.png');
            background-size: contain;
            background-position: center right;
            background-repeat: no-repeat;
            border-radius: 20px;
            backdrop-filter: blur(5px);
            box-shadow: var(--shadow-strong);
            animation: float 4s ease-in-out infinite;
            overflow: hidden;
        }*/

        .btn-primary {
            background: var(--white);
            color: var(--primary-red);
            padding: 15px 30px;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--shadow-soft);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c0392b 100%);
    color: white;  /* Cambiar de var(--primary-red) a white */
    padding: 18px 36px;  /* Aumentar de 15px 30px */
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

        /* AGREGAR efecto de brillo: */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 15px 30px;
            border: 2px solid white;
            border-radius: var(--border-radius);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary-red);
            transform: translateY(-3px);
        }

        .hero-visual {
    position: relative;
    animation: slideInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    height: 500px;
}

        /* Floating Animation */
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-10px) rotate(0.5deg); }
            50% { transform: translateY(-20px) rotate(0deg); }
            75% { transform: translateY(-10px) rotate(-0.5deg); }
        }

        /* Slide Animations */
        @keyframes slideInLeft {
            from { transform: translateX(-100px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes slideInRight {
            from { transform: translateX(100px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Stats Section */
.stats {
    background: rgba(255, 255, 255, 0.6); /* Cambiar de 0.85 a 0.6 */
    backdrop-filter: blur(10px);
    padding: 4rem 5%;
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .stat-card, .service-card, .contact-form, .info-card {
            background: rgba(255, 255, 255, 0.9); /* Cambiar de white o 0.95 a 0.9 */
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
            padding: 2rem;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: var(--shadow-soft);
            transition: var(--transition);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .stat-icon {
            font-size: 2.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-red);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-weight: 600;
            color: var(--neutral-gray);
        }

        /* About Section */
        .about {
    padding: 6rem 5%;
    background: transparent; /* Agregar esta línea */
}

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: stretch; /* Cambiar de 'center' a 'stretch' */
            min-height: 500px; /* Asegurar altura mínima */
        }

        .about-text {
            display: flex;
            flex-direction: column;
            justify-content: center; /* Centrar el texto verticalmente */
        }

        .about-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--neutral-dark);
            margin-bottom: 1.5rem;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--neutral-gray);
            margin-bottom: 1.5rem;
        }

        .highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }

        /* Reemplaza el CSS existente de .about-visual y .about-image */
.about-visual {
    position: relative;
    animation: slideInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%; /* Ocupa toda la altura del contenedor */
    min-height: 500px; /* Altura mínima */
}

.professional-image {
    position: relative;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%),
        url('../images/img_complement.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
    transition: var(--transition);
}

.professional-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Overlay sutil para profesionalismo */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(211, 47, 47, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 167, 38, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.professional-image:hover .image-overlay {
    opacity: 1;
}

/* Efecto de brillo sutil */
.professional-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
    z-index: 2;
}

.professional-image:hover::before {
    left: 100%;
}

        /* Services Section */
.services {
    background: none; /* Cambiar de 0.9 a 0.7 */
    backdrop-filter: blur(4px);
    padding: 6rem 5%;
}

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--neutral-dark);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--neutral-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {

    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;

}

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-medium);
        }

        .service-icon {
            font-size: 2.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--neutral-dark);
        }

        .service-description {
            color: var(--neutral-gray);
            line-height: 1.8;
        }

        /* Fleet Section */
        .fleet {
    padding: 6rem 5%;
    background: transparent; /* Agregar esta línea */
}

        .fleet-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .fleet-info {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 3rem;
        }

.fleet-specs {
    background: rgba(255, 255, 255, 0.9); /* Cambiar de white a 0.9 */
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}        
               

        .spec-item {
            display: flex;
            justify-content: space-between;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

        .spec-label {
            font-weight: 600;
            color: var(--neutral-gray);
        }

        .spec-value {
            font-weight: 600;
            color: var(--primary-red);
        }

        .compliance-badges {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .badge {
            background: var(--gradient-primary);
            color: white;
            padding: 1rem;
            border-radius: var(--border-radius);
            text-align: center;
            font-weight: 600;
            box-shadow: var(--shadow-soft);
        }

        /* Biblical Section */
        .biblical {
    background: 
        linear-gradient(105deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%),
        url('../images/img_biblical_content.png');
    background-size: cover;
    background-position: center 80%;
    background-attachment: fixed;
    color: white;
    padding: 4rem 5%;
    text-align: center;
}

        .biblical-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .verse {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-style: italic;
            line-height: 1.8;
            margin: 2rem 0;
            opacity: 0.95;
        }

        .verse-reference {
            font-weight: 600;
            color: var(--accent-gold);
            font-size: 1rem;
            margin-top: 1rem;
        }

        /* Coverage Section */
        #coverage {
  position: relative; /* Necesario para posicionar la capa oscura encima */
  background-image: url('../images/img_coverage.png'); /* Reemplaza esto con la URL de la imagen */
  background-size: cover; /* Hace que la imagen cubra toda la sección */
  background-position: center; /* Centra la imagen */
  background-attachment: fixed; /* Crea un efecto parallax al hacer scroll */
  color: white; /* Cambia el color del texto para que sea legible sobre el fondo oscuro */
}

/* Esta es la capa oscura que va sobre la imagen */
#coverage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6); /* Color negro con 60% de opacidad. Puedes ajustar este valor. */
  z-index: 1; /* Pone la capa oscura entre el fondo y el contenido */
}

/* Esto asegura que tu contenido se vea por encima de la capa oscura */
.coverage-container {
  position: relative;
  z-index: 2;
}

/* Ajuste opcional para los títulos dentro de la sección */
#coverage .section-title, 
#coverage .section-subtitle {
    color: white;
}

/* En escritorio: efecto parallax */
@media (min-width: 768px) {
  #coverage {
    background-attachment: fixed;
  }
}

/* En móviles: fallback */
@media (max-width: 767px) {
  #coverage {
    background-attachment: scroll;
  }
}


        .usa-map {
            width: 100%;
            max-width: 600px;
            height: 400px;
           /* background: var(--gradient-primary);*/

           background: rgba(255, 255, 255, 0.15); /* Color blanco con muy poca opacidad */
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px); /* Para compatibilidad con Safari */
border: 1px solid rgba(255, 255, 255, 0.2); /* Borde sutil que define el objeto */

            border-radius: var(--border-radius);
            margin: 3rem auto;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            box-shadow: var(--shadow-medium);
        }

        /* Contact Section */
        .contact {
    padding: 6rem 5%;
    background: transparent; /* Agregar esta línea */
}

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-form {

            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-soft);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--neutral-gray);
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid rgba(0,0,0,0.1);
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary-red);
            box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: var(--gradient-primary);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        
        
        .truck-animation-container {
    box-shadow: var(--shadow-soft);
    border-radius: var(--border-radius);
    background: var(--gradient-secondary);
    padding: 1rem;
}

/* Media query específica para iPhone */
@media screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
    .hero {
        background-size: cover !important;
        background-position: center 20% !important;
        background-attachment: scroll;
        min-height: 70vh; /* Reducir altura en iPhone */
    }
}


@media (max-width: 480px) {
    .truck-animation-container { max-width: 300px; }
    .contact-form h3 { font-size: 1.3rem; }
    .contact-form p { font-size: 0.85rem; }
    .btn-primary { padding: 10px 16px; font-size: 0.9rem; }
}

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .info-card {

            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-soft);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .info-icon {
            font-size: 1.5rem;
            color: var(--primary-red);
        }

        .info-text {
            color: var(--neutral-gray);
        }

        /* Footer */
        .footer {
            background: var(--neutral-dark);
            color: white;
            padding: 3rem 5% 2rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: var(--accent-gold);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-section ul li a:hover {
            color: var(--accent-gold);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
        }

        /* Responsive Design */
    @media (max-width: 768px) {
    body {
        background: 
            linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)),
            var(--bg-global-image);
        background-size: cover;
        background-attachment: fixed; /* VOLVER a fixed */
        background-position: center center; /* Posición estable */
        background-repeat: no-repeat;
        /* AGREGAR esto para forzar que funcione en móviles: */
        min-height: 100vh;
    }
    
    /* Si sigue sin funcionar, usa una imagen estática: */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--bg-global-image);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
        opacity: 0.5;
    }

    .about {
    padding: 6rem 5%;
    background: rgba(255, 255, 255, 0.4) !important;
}

        .fleet {
    padding: 6rem 5%;
    background: rgba(255, 255, 255, 0.4) !important;
}

    /* Reducir aún más la opacidad en móviles para que se vea */
    .stats, .services {
        background: rgba(255, 255, 255, 0.2) !important;
    }
    
    .stat-card, .service-card, .contact-form, .info-card {
        background: rgba(255, 255, 255, 0.3) !important;
    }


            .truck-animation-container { max-width: 400px; }
            .contact-form h3 { font-size: 1.5rem; }
            .contact-form p { font-size: 0.9rem; }

            .nav-menu {
                display: none;
            }

            .mobile-menu {
                display: flex;
            }

            .nav-menu.active-mobile {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--white);
                padding: 1rem;
                box-shadow: var(--shadow-soft);
                z-index: 999;
                gap: 1rem;
                border-radius: 0 0 8px 8px;
            }

            .nav-menu.active-mobile li {
                text-align: center;
            }

            .nav-menu.active-mobile .nav-link {
                font-size: 1rem;
                padding: 0.5rem 0;
                display: block;
            }

            .hero {
        padding-top: 120px !important; /* Aumentar de 70px a 120px */
        min-height: 80vh;
        background-attachment: scroll;
        background-size: cover;
        background-position: center 30%;
    }

    .hero-content {
        padding: 2rem 5% 0 5%; /* Agregar padding adicional */
    }

    .hero-title {
        font-size: 2.2rem !important; /* Aumentar de 2rem */
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        margin-top: 0; /* Quitar margin-top que puede estar empujando hacia arriba */
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1rem !important; /* Aumentar de 0.95rem */
        margin-bottom: 2rem;
    }

            .truck-container {
                height: 300px;
                max-width: 400px;
            }

            .hero-buttons {
                margin-top: 2rem;
                margin-bottom: 2rem;
                position: relative;
                z-index: 10;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                max-width: 300px;
                text-align: center;
                justify-content: center;
                 padding: 14px 24px !important;
                font-size: 0.95rem !important;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                min-height: auto;
            }
    
            .about-visual {
                height: 300px; /* Altura fija en móvil */
                min-height: 300px;
                order: -1; /* Poner la imagen arriba en móvil */
            }
    
            .professional-image {
                height: 100%;
                border-radius: 12px;
            }

            .biblical {
                background-attachment: scroll; /* Cambiar fixed a scroll en móviles */
            }

            .about-container,
            .fleet-info,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 480px) {
            .nav {
                padding: 0.5rem 3%;
            }

            .logo-img {
                width: 90px;
                height: 90px;
                font-size: 1rem;
            }

            .logo-text {
                font-size: 1.1rem;
            }

            .cta-button {
                padding: 8px 16px;
                font-size: 0.85rem;
            }

            .mobile-menu {
                gap: 3px;
            }

            .mobile-menu span {
                width: 20px;
                height: 2px;
            }

            .nav-menu.active-mobile {
                padding: 0.5rem;
            }

            .nav-menu.active-mobile .nav-link {
                font-size: 0.9rem;
            }

            .hero {
                padding-top: 140px !important;
                padding-bottom: 1.5rem;
            }
            
            .hero-content {
                padding: 1rem 3%;
                gap: 1rem;
            }

             .hero-title {
                font-size: 1.8rem !important; /* Aumentar de 1.6rem */
            }

            .hero-subtitle {
                font-size: 0.9rem !important;
            }

            .hero-description {
                font-size: 0.9rem !important;
            }

            .truck-container {
                height: 200px;
                max-width: 300px;
            }

            .btn-primary, .btn-secondary {
                padding: 10px 16px;
                font-size: 0.9rem;
            }

            .about-visual {
                height: 250px;
                min-height: 250px;
            }
        }

        /* Scroll animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* ================================================
   NOTIFICACIONES — antes se inyectaban por JS,
   ahora viven aquí correctamente
   ================================================ */
@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0);    opacity: 1; }
    to   { transform: translateX(100%); opacity: 0; }
}

.notification-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    margin-left: 10px;
}

.truck-loader {
    font-size: 2rem;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-20px); }
}