        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header Superior */
         .top-header {
            background:rgb(235, 235, 235);
            color: rgb(0, 0, 0);
            padding: 12px 0;
            font-size: 14px;
            position: relative;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

     .top-header.collapsed {
            max-height: 50px;
        }

        .top-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: shine 3s infinite;
        }
      @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }
       .top-header-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .contact-info {
            display: flex;
            gap: 40px;
            align-items: center;
            transition: all 0.3s ease;
        }

       
        

        /* Botón toggle para header superior en móvil */
        .top-header-toggle {
            display: none;
            position: absolute;
            top: 10px;
            right: 20px;
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            padding: 8px;
            border-radius: 5px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }
 .top-header-toggle:hover {
            background: rgba(255,255,255,0.3);
        }
        .contact-item:hover {
            transform: translateY(-2px);
        }

        .contact-item i {
            font-size: 16px;
            opacity: 0.9;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            color: white;
            text-decoration: none;
            width: 35px;
            height: 35px;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .social-links a:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        /* Header Principal */
         .main-header {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
           
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 20px;
        }
.company-info img {
            max-height: 130px;
            width: auto;
        }
        

        .logo:hover {
            transform: translateY(-5px) rotate(5deg);
            box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
        }

        .company-info h1 {
            font-size: 28px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 5px;
            background: linear-gradient(135deg, #2c3e50, #3498db);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .company-info .subtitle {
            font-size: 16px;
            color: #7f8c8d;
            font-weight: 400;
        }

        .iso-badge {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
            transition: all 0.3s ease;
        }

        .iso-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
        }

        /* Navegación */
        .main-nav {
            display: flex;
            gap: 5px;
        }

        .nav-item {
            padding: 12px 20px;
            color: #34495e;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
        }

        .nav-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #f5ac007a;
            transition: all 0.3s ease;
            z-index: -1;
        }

        .nav-item:hover::before,
        .nav-item.active::before {
            left: 0;
        }

         .nav-item:hover,
        .nav-item.active {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
        }

        /* Menu móvil - Ahora a la derecha */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #34495e;
            padding: 10px;
            border-radius: 8px;
            transition: all 0.3s ease;
            margin-left: auto;
        }

        .mobile-menu-btn:hover {
            background: rgba(52, 73, 94, 0.1);
        }

        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(255,255,255,0.98);
            backdrop-filter: blur(20px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-radius: 0 0 20px 20px;
            padding: 20px;
            flex-direction: column;
            gap: 10px;
        }

       .mobile-nav.active {
            display: flex;
        }

        /* Carrusel */
      .carousel-container {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
            background: #000;
        }

        .carousel-wrapper {
            position: relative;
            height: 100%;
            width: 300%;
            display: flex;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .carousel-slide {
            position: relative;
            width: 33.333%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
        }

     .slide-1 {
            background-image: linear-gradient(135deg, rgba(231, 77, 60, 0.274), rgba(0,0,0,0.4)), 
                              url('img/primera.jpg');
        }

        .slide-2 {
            background-image: linear-gradient(135deg, rgba(52, 152, 219, 0.226), rgba(0,0,0,0.4)), 
                              url('img/segunda.jpg');
        }

        .slide-3 {
            background-image: linear-gradient(135deg, rgba(46, 204, 112, 0.384), rgba(0,0,0,0.4)), 
                              url('img/tercera.png');
        }
        .slide-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
            color: white;
            z-index: 2;
            text-align: center;
            animation: slideInUp 1s ease-out;
        }

         @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(60px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slide-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 300;
            margin-bottom: 30px;
            text-shadow: 0 10px 30px rgba(0,0,0,0.8);
            letter-spacing: -2px;
            line-height: 1.1;
        }

         .slide-subtitle {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            font-weight: 300;
            opacity: 0.95;
            max-width: 700px;
            line-height: 1.6;
            text-shadow: 0 5px 15px rgba(0,0,0,0.6);
            margin: 0 auto 40px;
        }

        .slide-btn {
            display: inline-block;
            padding: 15px 35px;
            background: rgba(255,255,255,0.2);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.3);
            transition: all 0.3s ease;
        }

       .slide-btn:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        /* Navegación del carrusel */
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255,255,255,0.3);
            color: white;
            font-size: 24px;
            width: 70px;
            height: 70px;
            cursor: pointer;
            z-index: 3;
            transition: all 0.3s ease;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }


          .carousel-nav:hover {
            background: rgba(255,255,255,0.25);
            border-color: rgba(255,255,255,0.5);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .carousel-prev {
            left: 30px;
        }

        .carousel-next {
            right: 30px;
        }

        /* Indicadores */
        .carousel-indicators {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 20px;
            z-index: 3;
        }

          .indicator {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            backdrop-filter: blur(10px);
        }

        .indicator.active {
            background: white;
            transform: scale(1.3);
            box-shadow: 0 0 20px rgba(255,255,255,0.5);
        }

        .indicator:hover {
            background: rgba(255,255,255,0.7);
            transform: scale(1.2);
        }

        /* Partículas de fondo */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .particle {
            position: absolute;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .top-header-content {
                padding: 0 15px;
            }
            
          
            
            .contact-info {
                gap: 20px;
            }
        }

        @media (max-width: 968px) {
            .main-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .slide-content {
                padding: 0 30px;
            }
        }

        @media (max-width: 768px) {
            .top-header-content {
                
                gap: 15px;
                text-align: center;
                padding: 15px;
            }

            .contact-info {
                flex-direction: column;
                gap: 12px;
            }

            .contact-item {
                font-size: 13px;
            }

            .header-content {
                
                gap: 20px;
                
            }

            .logo-section {
                justify-content: center;
                text-align: center;
            }

            .company-info h1 {
                font-size: 24px;
            }

            .carousel-container {
                height: 80vh;
                min-height: 500px;
            }

            .slide-content {
                padding: 0 20px;
                text-align: center;
            }

            .carousel-nav {
                width: 60px;
                height: 60px;
                font-size: 20px;
            }

            .carousel-prev {
                left: 15px;
            }

            .carousel-next {
                right: 15px;
            }
        }

        @media (max-width: 480px) {
            .top-header {
                padding: 10px 0;
                font-size: 12px;
            }

            .logo {
                width: 60px;
                height: 60px;
                font-size: 20px;
            }

            .company-info h1 {
                font-size: 20px;
            }

            .company-info .subtitle {
                font-size: 14px;
            }

            .carousel-container {
                height: 70vh;
                min-height: 400px;
            }

            .slide-content {
                padding: 0 15px;
            }

            .carousel-nav {
                width: 50px;
                height: 50px;
                font-size: 18px;
            }

            .carousel-prev {
                left: 10px;
            }

            .carousel-next {
                right: 10px;
            }

            .indicator {
                width: 12px;
                height: 12px;
            }
        }
  
      .container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
        }
        /* Header Section */
  
        .header-section {
            text-align: center;
            padding: 60px 20px 40px;
            background: white;
        }

        .header-section h1 {
            font-size: 2.5rem;
            font-weight: normal;
            color: #666;
            margin-bottom: 30px;
            letter-spacing: 2px;
        }

        .main-services {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            margin-bottom: 0;
        }


        .service-item {
            position: relative;
            text-align: center;
            overflow: hidden;
        }

        .service-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }  
        .service-item:hover img {
            transform: scale(1.05);
        }

         .service-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 15px;
            transition: all 0.3s ease;
        }

        .service-title {
            font-size: 0.9rem;
            text-transform: uppercase;
            font-weight: normal;
            letter-spacing: 1px;
        }

        .hover-buttons {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-item:hover .hover-buttons {
            opacity: 1;
        }

      
        .hover-btn {
            background: #f5ac007a;
            color: white;
            padding: 8px 15px;
            margin: 5px;
            text-decoration: none;
            font-size: 0.8rem;
            display: inline-block;
            border-radius: 3px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .hover-btn:hover {
            background: #f5ac007a;
            transform: translateY(-2px);
        }

        /* Contact Banner */
         .contact-banner {
            background: #f5ac007a;
            color: rgb(7, 7, 7);
            padding: 30px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

      .contact-banner h2 {
            font-size: 1.5rem;
            font-weight: normal;
            margin-bottom: 10px;
        }

        .contact-text {
            font-size: 0.9rem;
            line-height: 1.4;
            flex: 1;
            max-width: 70%;
        }

        .quote-btn {
            background: #333;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            font-size: 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .quote-btn:hover {
            background: #555;
            transform: translateY(-2px);
        }

        /* About Section */
        .about-section {
            padding: 60px 20px;
            text-align: center;
        }
         .modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
        }
 .modal-content {
            margin: 5% auto;
            display: block;
            max-width: 90%;
            max-height: 80%;
            object-fit: contain;
        }
        
        .close {
            position: absolute;
            top: 20px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
        }

        .close:hover {
            color: #e74c3c;
        }
        .about-section h2 {
            font-size: 2rem;
            color: #666;
            margin-bottom: 40px;
            font-weight: normal;
            letter-spacing: 1px;
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto 60px;
            font-size: 0.95rem;
            line-height: 1.6;
            color: #666;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        .about-item {
            text-align: left;
        }

        .about-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            margin-bottom: 15px;
        }

        .about-item p {
            font-size: 0.9rem;
            line-height: 1.5;
            color: #666;
        }

        .about-images {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .about-images img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }

        .mission-vision {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 40px;
        }

        .mission-vision div {
            text-align: left;
        }

        .mission-vision h3 {
            font-size: 1.2rem;
            color: #333;
            margin-bottom: 15px;
        }

        .mission-vision p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #666;
        }

        /* Services Section */
        .services-section {
            padding: 60px 20px;
            text-align: center;
        }

        .services-section h2 {
            font-size: 2rem;
            color: #666;
            margin-bottom: 50px;
            font-weight: normal;
            letter-spacing: 1px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
        }

        .service-card {
            background: #444;
            color: white;
            padding: 40px 20px;
            text-align: center;
            position: relative;
        }

        .service-card:nth-child(1) { background: #444; }
        .service-card:nth-child(2) { background: #555; }
        .service-card:nth-child(3) { background: #666; }
        .service-card:nth-child(4) { background: #777; }

        .service-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .service-card:nth-child(1) .service-icon { background: #e74c3c; }
        .service-card:nth-child(2) .service-icon { background: #27ae60; }
        .service-card:nth-child(3) .service-icon { background: #3498db; }
        .service-card:nth-child(4) .service-icon { background: #f39c12; }

        .service-card h3 {
            font-size: 1rem;
            margin-bottom: 20px;
            font-weight: bold;
            text-transform: uppercase;
        }

        .service-list {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
            font-size: 0.85rem;
        }

        .service-list li {
            padding: 3px 0;
            position: relative;
            padding-left: 15px;
        }

        .service-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #27ae60;
        }

        .service-btn {
            background: #f5ac007a;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            font-size: 0.9rem;
        }

        /* Contact Section */
        .contact-section {
            background: #000000cb;
            color: white;
            padding: 40px 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .contact-info h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            font-weight: normal;
        }

        .contact-details p {
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        .map-container {
            background: #000000cb;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #bdc3c7;
        }

        /* Footer */
        .footer {
            background: #000000cb;
            color: #bdc3c7;
            padding: 30px 20px;
            text-align: center;
            font-size: 0.8rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: #e74c3c;
            text-decoration: none;
        }

       /* CORRECCIONES PRINCIPALES PARA RESPONSIVIDAD */

/* 1. Ajustes para el header superior en móvil */
@media (max-width: 768px) {
    .top-header {
        padding: 10px 0;
        min-height: 10px;
         background-color: white;
       
    }

    .top-header.collapsed {
        max-height: 10px;
         background-color: white;
    }

    .top-header-toggle {
        display: block;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        background: rgba(255,255,255,0.2);
        border: none;
        color: rgb(0, 0, 0);
        padding: 8px 10px;
        border-radius: 5px;
        cursor: pointer;
        z-index: 10;
    }

    .top-header-content {
        padding: 0 60px 0 20px; /* Espacio para el botón */
        transition: all 0.3s ease;
    }

    .top-header.collapsed .top-header-content {
        overflow: hidden;
        height: 0;
        padding: 0;
    }

    .contact-info {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .contact-item {
        font-size: 12px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .contact-item i {
        font-size: 14px;
        min-width: 16px;
    }
}

/* 2. Mejoras al header principal */
@media (max-width: 968px) {
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }

    .logo-section {
        flex: 1;
        min-width: 200px;
    }

    .mobile-menu-btn {
        order: 3;
        margin-left: 0;
    }

    .mobile-nav {
        order: 4;
        width: 100%;
        margin-top: 10px;
    }
}

/* 3. Corrección del carrusel */
@media (max-width: 768px) {
    .carousel-container {
        height: 50vh;
        min-height: 350px;
    }

    .slide-content {
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .slide-title {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: 20px;
    }

    .slide-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
        margin-bottom: 25px;
    }

    .slide-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .carousel-nav {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .carousel-prev { left: 10px; }
    .carousel-next { right: 10px; }

    .carousel-indicators {
        bottom: 20px;
    }

    .indicator {
        width: 12px;
        height: 12px;
    }
}

/* 4. Servicios principales responsive */
@media (max-width: 768px) {
    .main-services {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .service-item {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .service-item img {
        height: 200px;
    }

    .service-overlay {
        position: relative;
        background: rgba(0,0,0,0.8);
        padding: 20px;
    }

    .service-title {
        font-size: 1rem;
    }

    .hover-buttons {
        position: relative;
        opacity: 1;
        transform: none;
        top: auto;
        left: auto;
        margin-top: 15px;
    }

    .hover-btn {
        display: block;
        width: 100%;
        margin: 10px 0;
        padding: 12px;
        text-align: center;
    }
}

/* 5. Banner de contacto responsive */
@media (max-width: 768px) {
    .contact-banner {
        flex-direction: column;
        text-align: center;
        padding: 25px 15px;
    }

    .contact-text {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .quote-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

/* 6. Sección about responsive */
@media (max-width: 768px) {
    .about-section {
        padding: 40px 15px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* 7. Servicios grid responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .service-list {
        text-align: center;
    }

    .service-list li {
        padding-left: 0;
        padding: 8px 0;
    }

    .service-list li::before {
        position: relative;
        left: auto;
        margin-right: 8px;
    }
}

/* 8. Contacto y footer responsive */
@media (max-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 15px;
    }

    .map-container {
        height: 200px;
    }

    .footer {
        padding: 20px 15px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* 9. Móviles muy pequeños */
@media (max-width: 480px) {
    .header-section h1 {
        font-size: 1.8rem;
    }

    .carousel-container {
        height: 45vh;
        min-height: 300px;
    }

    .slide-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }

    .slide-subtitle {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }

    .contact-item {
        font-size: 11px;
    }

    .contact-item span {
        word-break: break-word;
    }
}

/* 10. JavaScript para toggle del header */
/* Agrega este JavaScript a tu archivo in.js */
/*

*/