/* ===== RESPONSIVE FIXES - UNAGENCI ===== */
/* Archivo de correcciones responsive organizadas */
/* Mantiene el diseño desktop intacto */

/* ===== BREAKPOINTS CONSOLIDADOS ===== */

/* ===== TABLET (768px and below) ===== */
@media (max-width: 768px) {
    /* Variables CSS actualizadas */
    :root {
        --container-padding: 1.5rem;
        --section-padding: 4rem 0;
    }
    
    /* ===== NAVEGACIÓN MÓVIL OPTIMIZADA ===== */
    .nav-container {
        padding: 0 1rem;
        position: relative;
    }
    
    .logo-img {
        height: 32px;
        max-width: 100%;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
        opacity: 0;
        transform: translateY(20px);
        animation: slideInFromTop 0.3s ease forwards;
        list-style: none;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu li:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu li:nth-child(6) { animation-delay: 0.6s; }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        border-radius: 10px;
        margin: 0 1rem;
        transition: all 0.3s ease;
        text-decoration: none;
        color: var(--text-primary);
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-menu a:hover {
        background: rgba(251, 191, 36, 0.1);
        color: var(--primary);
        transform: translateX(10px);
    }
    
    .nav-toggle {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1100;
        margin-left: 1.2rem;
        position: relative;
    }
    
    .nav-toggle span {
        display: block;
        width: 26px;
        height: 3px;
        background: #fff;
        margin: 4px 0;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .nav-icons {
        display: none !important;
    }
    
    /* ===== HERO SECTION OPTIMIZADO ===== */
    .hero {
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height */
        padding: 6rem 0 0;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-services-slider {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 1rem 0;
        background: rgba(10, 10, 10, 0.8);
        backdrop-filter: blur(10px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1.5rem;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        line-height: 1.1;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-icon-text {
        font-size: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        margin: 1.5rem 0;
        flex-wrap: wrap;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-top: 2rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* ===== SERVICIOS SLIDER ===== */
    .services-slider-section {
        padding: 0.8rem 0;
        background: var(--bg-secondary);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }
    
    .services-slider-container {
        padding: 0 1rem;
    }
    
    .services-slider-track {
        gap: 0.5rem;
    }
    
    .service-item {
        padding: 0.5rem 1rem;
        margin: 0 0.2rem;
        min-width: 140px;
        font-size: 0.8rem;
        border-radius: 20px;
    }
    
    /* ===== COUNTER SECTION ===== */
    .counter-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .counter-item {
        padding: 1.5rem 1rem;
    }
    
    .counter-number {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .counter-label {
        font-size: 0.9rem;
    }
    
    /* ===== CATEGORÍAS ===== */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .category-item {
        padding: 1.5rem 1rem;
    }
    
    .category-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .category-item p {
        font-size: 0.85rem;
    }
    
    /* ===== PROCESO ===== */
    .process-steps {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .process-step {
        padding: 2rem 1rem;
    }
    
    .step-number {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .step-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .step-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* ===== COMBOS ===== */
    .combos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .combo-card {
        padding: 2rem 1.5rem;
    }
    
    .combo-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .combo-card p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .combo-price {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    /* ===== TESTIMONIOS ===== */
    .testimonials-grid {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* ===== CTA ===== */
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 44px;
    }
    
    /* ===== ABOUT ===== */
    .about-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 1.5rem 1rem;
    }
    
    .value-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .value-item p {
        font-size: 0.85rem;
    }
    
    /* ===== CONTACTO ===== */
    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-form {
        width: 100%;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 1rem;
        font-size: 16px; /* Evita zoom en iOS */
        min-height: 44px;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        outline: 2px solid var(--primary);
        outline-offset: 2px;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-method {
        padding: 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* ===== FOOTER ===== */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        margin-bottom: 1rem;
    }
    
    .footer-logo {
        height: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* ===== GENERAL ===== */
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 2rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .btn {
        min-height: 44px;
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    
    .btn:hover {
        transform: translateY(-1px);
    }
    
    /* ===== ANIMACIONES MÓVILES OPTIMIZADAS ===== */
    @media (hover: none) {
        .btn:hover {
            transform: none;
        }
        
        .category-item:hover {
            transform: none;
        }
        
        .combo-card:hover {
            transform: none;
        }
        
        .testimonial-card:hover {
            transform: none;
        }
        
        .portfolio-item:hover {
            transform: none;
        }
        
        .value-item:hover {
            transform: none;
        }
        
        .contact-method:hover {
            transform: none;
        }
        
        .floating-card:hover {
            transform: none;
        }
    }
    
    /* ===== LANDSCAPE ORIENTATION ===== */
    @media (max-width: 768px) and (orientation: landscape) {
        .hero {
            min-height: 100vh;
            padding: 4rem 0 0;
        }
        
        .hero-container {
            gap: 1rem;
        }
        
        .hero-title {
            font-size: clamp(2rem, 6vw, 2.5rem);
        }
        
        .hero-services-slider {
            padding: 0.5rem 0;
        }
        
        .nav-menu {
            top: 60px;
            height: calc(100vh - 60px);
            padding: 1rem 0;
        }
    }
    
    /* ===== FOCUS STATES PARA ACCESIBILIDAD ===== */
    .btn:focus,
    .nav-menu a:focus,
    .contact-method:focus {
        outline: 2px solid var(--primary);
        outline-offset: 2px;
    }
    
    /* ===== UTILIDADES MÓVILES ===== */
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
}

/* ===== MOBILE (480px and below) ===== */
@media (max-width: 480px) {
    /* Variables CSS para móviles pequeños */
    :root {
        --container-padding: 1rem;
        --section-padding: 3rem 0;
    }
    
    /* ===== NAVEGACIÓN PARA MÓVILES PEQUEÑOS ===== */
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .nav-menu {
        top: 65px;
        padding: 1.5rem 0;
        height: calc(100vh - 65px);
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
        margin: 0 0.5rem;
        min-height: 44px;
    }
    
    .nav-toggle {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
    
    .nav-toggle span {
        width: 22px;
        height: 2px;
    }
    
    /* ===== HERO PARA MÓVILES PEQUEÑOS ===== */
    .hero {
        padding: 5rem 0 0;
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .hero-container {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 2.8rem);
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-icon-text {
        font-size: 0.9rem;
        margin: 1rem 0;
    }
    
    .hero-buttons {
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* ===== SERVICIOS SLIDER PARA MÓVILES PEQUEÑOS ===== */
    .hero-services-slider {
        padding: 0.5rem 0;
        max-height: 8vh;
    }
    
    .service-item {
        padding: 0.4rem 0.8rem;
        margin: 0 0.3rem;
        min-width: 110px;
        font-size: 0.7rem;
        border-radius: 15px;
    }
    
    .service-item span {
        font-size: 0.65rem;
    }
    
    /* ===== COUNTER PARA MÓVILES PEQUEÑOS ===== */
    .counter-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .counter-item {
        padding: 1.2rem;
    }
    
    .counter-number {
        font-size: 2.2rem;
        margin-bottom: 0.3rem;
    }
    
    .counter-label {
        font-size: 0.8rem;
    }
    
    /* ===== CATEGORÍAS PARA MÓVILES PEQUEÑOS ===== */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .category-item {
        padding: 1.2rem 0.8rem;
    }
    
    .category-item h3 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    
    .category-item p {
        font-size: 0.75rem;
    }
    
    /* ===== PROCESO PARA MÓVILES PEQUEÑOS ===== */
    .process-steps {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .process-step {
        padding: 1.5rem 0.8rem;
    }
    
    .step-number {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .step-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .step-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* ===== COMBOS PARA MÓVILES PEQUEÑOS ===== */
    .combos-grid {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .combo-card {
        padding: 1.5rem 1rem;
    }
    
    .combo-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .combo-card p {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }
    
    .combo-price {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    /* ===== TESTIMONIOS PARA MÓVILES PEQUEÑOS ===== */
    .testimonials-grid {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* ===== CTA PARA MÓVILES PEQUEÑOS ===== */
    .cta-buttons {
        gap: 0.8rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        min-height: 44px;
    }
    
    /* ===== ABOUT PARA MÓVILES PEQUEÑOS ===== */
    .about-content {
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-item {
        padding: 1.2rem 0.8rem;
    }
    
    .value-item h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .value-item p {
        font-size: 0.8rem;
    }
    
    /* ===== CONTACTO PARA MÓVILES PEQUEÑOS ===== */
    .contact-content {
        gap: 1.5rem;
    }
    
    .contact-form {
        padding: 0;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 16px;
        min-height: 44px;
    }
    
    .contact-method {
        padding: 0.8rem;
        min-height: 44px;
    }
    
    /* ===== FOOTER PARA MÓVILES PEQUEÑOS ===== */
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-logo {
        height: 35px;
    }
    
    /* ===== GENERAL PARA MÓVILES PEQUEÑOS ===== */
    .section-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .manifesto {
        padding: 1rem;
    }
    
    .manifesto-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .btn {
        min-height: 44px;
        font-size: 0.95rem;
        padding: 0.9rem 1.5rem;
    }
    
    .btn:hover {
        transform: none;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* ===== ELEMENTOS FLOTANTES ===== */
    .floating-card {
        display: none; /* Ocultar en móviles muy pequeños */
    }
    
    .floating-card i {
        font-size: 1.5rem;
    }
    
    /* ===== PORTFOLIO ===== */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .portfolio-item {
        padding: 1rem;
    }
    
    .portfolio-info h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .portfolio-info p {
        font-size: 0.8rem;
    }
}

/* ===== WHATSAPP FLOAT OPTIMIZADO ===== */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-icon {
        font-size: 24px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button {
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-icon {
        font-size: 20px;
    }
}

/* ===== ANIMACIÓN PARA MENÚ MÓVIL ===== */
@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FORMULARIOS MÓVILES OPTIMIZADOS ===== */
@media (max-width: 768px) {
    .contact-form {
        width: 100%;
        max-width: 100%;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 1rem;
        font-size: 16px !important; /* Evita zoom en iOS */
        min-height: 44px;
        border: 2px solid var(--border);
        border-radius: 8px;
        background: var(--bg-card);
        color: var(--text-primary);
        transition: all 0.3s ease;
        -webkit-appearance: none;
        appearance: none;
    }
    
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
    }
    
    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: var(--text-muted);
        font-size: 16px;
    }
    
    /* Botones de formulario */
    .contact-form .btn,
    .newsletter-form .btn {
        width: 100%;
        max-width: 100%;
        min-height: 44px;
        font-size: 16px;
        padding: 1rem 2rem;
        margin-top: 1rem;
    }
    
    /* Newsletter form específico */
    .newsletter-form .form-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form input {
        width: 100%;
        min-height: 44px;
        font-size: 16px;
    }
    
    .newsletter-form button {
        width: 100%;
        min-height: 44px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem;
        font-size: 16px !important;
        min-height: 44px;
    }
    
    .contact-form .btn,
    .newsletter-form .btn {
        padding: 0.9rem 1.5rem;
        font-size: 16px;
        min-height: 44px;
    }
}

/* ===== ESTADOS DE FOCO MEJORADOS ===== */
@media (max-width: 768px) {
    .btn:focus,
    .nav-menu a:focus,
    .contact-method:focus,
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        outline: 2px solid var(--primary);
        outline-offset: 2px;
        box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
    }
}

/* ===== UTILIDADES RESPONSIVE ===== */
.desktop-only { 
    display: block; 
}

.mobile-only { 
    display: none; 
}

@media (max-width: 900px) {
    .desktop-only { 
        display: none !important; 
    }
    
    .mobile-only { 
        display: block !important; 
    }
}

/* ===== CLASES UTILITARIAS PARA MÓVILES ===== */
@media (max-width: 768px) {
    .mobile-hidden {
        display: none !important;
    }
    
    .mobile-visible {
        display: block !important;
    }
    
    .mobile-text-center {
        text-align: center !important;
    }
    
    .mobile-full-width {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .mobile-margin-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* ===== MENÚ HAMBURGUESA RESPONSIVE ROBUSTO ===== */

/* Por defecto, el botón hamburguesa está oculto */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    margin-left: 1.2rem;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mostrar hamburguesa en móvil SIEMPRE */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex !important;
    }
    .nav-icons {
        display: none !important;
    }
    .nav-menu {
        display: none !important;
    }
    .nav-menu.active {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        padding: 2rem;
    }
    .nav-menu.active li {
        opacity: 0;
        animation: slideInFromTop 0.3s ease forwards;
    }
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu.active a {
        color: #fff;
        font-size: 1.5rem;
        font-weight: 300;
        text-decoration: none;
        padding: 1rem 0;
        transition: all 0.3s ease;
        position: relative;
    }
    .nav-menu.active a:hover {
        color: #00d4ff;
        transform: translateX(10px);
    }
    .nav-menu.active a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: #00d4ff;
        transition: width 0.3s ease;
    }
    .nav-menu.active a:hover::after {
        width: 100%;
    }
}

/* En desktop, solo mostrar hamburguesa si navbar tiene .scrolled */
@media (min-width: 901px) {
    .navbar.scrolled .nav-toggle {
        display: flex !important;
    }
}

@keyframes slideInFromTop {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== OPTIMIZACIONES DEL HERO SECTION ===== */

/* Hero section responsive y dinámico */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height para iOS */
        height: auto;
        padding: 2rem 0;
    }
    
    .hero-bg-canvas,
    .hero-bg-overlay {
        height: 100vh;
        height: 100dvh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
        min-height: calc(100vh - 80px);
        min-height: calc(100dvh - 80px);
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-icon-text {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Hero en tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
        text-align: center;
    }
    
    .hero-icon-text {
        justify-content: center;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1.5rem;
    }
}

/* Hero en landscape móvil */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .hero-container {
        min-height: calc(100vh - 60px);
        min-height: calc(100dvh - 60px);
        gap: 1rem;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-icon-text {
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        width: auto;
        min-width: 200px;
    }
}

/* Hero services slider responsive */
@media (max-width: 768px) {
    .hero-services-slider {
        bottom: 1rem;
        height: 40px;
    }
    
    .service-item {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .service-item span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-services-slider {
        bottom: 0.5rem;
        height: 35px;
    }
    
    .service-item {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .service-item span {
        font-size: 0.7rem;
    }
}

/* ===== OPTIMIZACIONES DE LA GRID DE COMBOS ===== */

/* Combos en tablets - 2 columnas */
@media (min-width: 769px) and (max-width: 1024px) {
    .combos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .combo-card {
        padding: 2rem 1.5rem;
        min-height: 400px;
    }
    
    .combo-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .combo-card p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .combo-price {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .combo-card .btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Combos en móviles - 1 columna */
@media (max-width: 768px) {
    .combos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .combo-card {
        padding: 1.5rem;
        min-height: auto;
        margin: 0 auto;
        max-width: 400px;
    }
    
    .combo-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .combo-card p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .combo-price {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .combo-card .btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .combo-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
        top: 0.8rem;
        right: 0.8rem;
    }
    
    .combo-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .combo-icon i {
        font-size: 1.5rem;
    }
}

/* Combos en móviles pequeños */
@media (max-width: 480px) {
    .combos-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .combo-card {
        padding: 1.2rem;
        margin: 0;
    }
    
    .combo-card h3 {
        font-size: 1.2rem;
    }
    
    .combo-card p {
        font-size: 0.85rem;
    }
    
    .combo-price {
        font-size: 1.1rem;
    }
    
    .combo-card .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Títulos de sección responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        line-height: 1.3;
        text-align: center;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        margin-bottom: 1.5rem;
    }
}

/* ===== OPTIMIZACIONES GENERALES DE ESPACIADO Y TIPOGRAFÍA ===== */

/* Espaciado general en móviles */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    section:first-child {
        padding-top: 2rem;
    }
    
    /* Tipografía responsive */
    h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    h2 {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    h3 {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    /* Botones responsive */
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-height: 44px; /* Touch target mínimo */
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    /* Grids responsive */
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Espaciado en tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .counter-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Espaciado en móviles pequeños */
@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .counter-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .counter-item {
        padding: 1rem;
    }
    
    .value-item {
        padding: 1rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .counter-label {
        font-size: 0.8rem;
    }
    
    .value-item h4 {
        font-size: 1rem;
    }
    
    .value-item p {
        font-size: 0.8rem;
    }
}

/* Optimizaciones de formularios */
@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem;
        font-size: 16px; /* Previene zoom en iOS */
        min-height: 44px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-method {
        width: 100%;
        padding: 1rem;
        min-height: 44px;
    }
}

/* Optimizaciones de footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

/* ===== OPTIMIZACIONES DE IMÁGENES Y ELEMENTOS VISUALES ===== */

/* Imágenes responsive */
@media (max-width: 768px) {
    .logo-img {
        max-width: 120px;
        height: auto;
    }
    
    .footer-logo {
        max-width: 100px;
        height: auto;
    }
    
    .combo-icon img {
        width: 40px !important;
        height: 40px !important;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
    }
    
    .author-avatar i {
        font-size: 1rem;
    }
    
    .team-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .team-placeholder i {
        font-size: 3rem;
    }
    
    .team-placeholder p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        max-width: 100px;
    }
    
    .footer-logo {
        max-width: 80px;
    }
    
    .combo-icon img {
        width: 35px !important;
        height: 35px !important;
    }
    
    .team-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .team-placeholder i {
        font-size: 2.5rem;
    }
    
    .team-placeholder p {
        font-size: 0.8rem;
    }
}

/* Optimizaciones de animaciones en móviles */
@media (max-width: 768px) {
    /* Reducir animaciones pesadas en móviles */
    .animated-background {
        opacity: 0.3;
    }
    
    .circle {
        animation-duration: 8s;
    }
    
    .floating-card {
        animation-duration: 6s;
    }
    
    /* Desactivar animaciones 3D en móviles */
    .hero-content,
    .hero-title,
    .hero-icon-text,
    .hero-buttons {
        transform: none !important;
        transition: none !important;
    }
    
    /* Optimizar animaciones de entrada */
    [data-animation] {
        animation-duration: 0.6s;
    }
    
    .animate-fadeInUp,
    .animate-fadeInLeft,
    .animate-fadeInRight,
    .animate-scaleIn {
        animation-duration: 0.6s;
    }
}

/* Optimizaciones de performance */
@media (max-width: 768px) {
    /* Reducir sombras y efectos */
    .combo-card,
    .testimonial-card,
    .value-item,
    .category-item {
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .combo-card:hover,
    .testimonial-card:hover,
    .value-item:hover,
    .category-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    /* Simplificar gradientes */
    .highlight {
        background: none !important;
        -webkit-background-clip: initial !important;
        -webkit-text-fill-color: #8b5cf6 !important;
        background-clip: initial !important;
        color: #8b5cf6 !important;
        font-weight: 700;
        animation: none !important;
    }
    
    .btn-primary::before,
    .btn-secondary::before {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
    }
}

/* Optimizaciones de accesibilidad */
@media (max-width: 768px) {
    /* Mejorar contraste en móviles */
    .nav-menu a {
        color: var(--text-primary, #fff);
        text-shadow: 0 1px 2px rgba(0,0,0,0.8);
    }
    
    .hero-title {
        text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    }
    
    .section-title {
        text-shadow: 0 1px 2px rgba(0,0,0,0.6);
    }
    
    /* Mejorar focus states */
    .btn:focus,
    .nav-toggle:focus,
    .contact-method:focus {
        outline: 2px solid var(--primary, #00d4ff);
        outline-offset: 2px;
    }
    
    /* Aumentar touch targets */
    .nav-menu a,
    .contact-method,
    .footer-section ul li a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Optimizaciones específicas para iOS */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 768px) {
        /* Fix para Safari en iOS */
        .hero {
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }
        
        .nav-menu {
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }
        
        /* Prevenir zoom en inputs */
        .form-group input,
        .form-group textarea,
        .form-group select {
            font-size: 16px;
            -webkit-appearance: none;
            appearance: none;
        }
        
        /* Fix para botones en iOS */
        .btn {
            -webkit-appearance: none;
            appearance: none;
            -webkit-tap-highlight-color: transparent;
        }
    }
}

/* Optimizaciones específicas para Android */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    @media (max-width: 768px) {
        /* Fix para Chrome en Android */
        .hero {
            will-change: transform;
        }
        
        .nav-menu {
            will-change: transform;
        }
        
        /* Mejorar scrolling */
        body {
            -webkit-overflow-scrolling: touch;
            overflow-scrolling: touch;
        }
    }
}

/* Optimizaciones para pantallas de alta densidad */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    @media (max-width: 768px) {
        /* Optimizar imágenes para pantallas retina */
        .logo-img,
        .footer-logo {
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }
    }
}

/* Optimizaciones para pantallas muy pequeñas */
@media (max-width: 360px) {
    .container {
        padding: 0 0.3rem;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    
    .section-title {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .combo-card {
        padding: 1rem;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .value-item {
        padding: 1rem;
    }
}

/* Optimizaciones para pantallas muy grandes */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .hero-container {
        max-width: 1400px;
    }
    
    .combos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    
    .counter-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

/* ===== SISTEMA DE NAVEGACIÓN COMPLETAMENTE NUEVO ===== */

/* ===== NAVEGACIÓN DESKTOP ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo a {
    display: block;
}

.logo-img {
    height: 40px;
    width: auto;
}

/* Menú desktop */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #00d4ff;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00d4ff;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Iconos sociales */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-icon {
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.nav-icon:hover {
    color: #00d4ff;
    transform: translateY(-2px);
}

/* Botón hamburguesa - oculto por defecto */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== NAVEGACIÓN MÓVIL ===== */
@media (max-width: 900px) {
    .nav-container {
        padding: 1rem;
    }
    
    /* Ocultar menú desktop */
    .nav-menu {
        display: none !important;
    }
    
    /* Ocultar iconos sociales */
    .nav-icons {
        display: none !important;
    }
    
    /* Mostrar botón hamburguesa */
    .nav-toggle {
        display: flex !important;
    }
    
    /* Menú móvil cuando está activo */
    .nav-menu.active {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        padding: 2rem;
    }
    
    .nav-menu.active li {
        opacity: 0;
        animation: slideInFromTop 0.3s ease forwards;
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu.active li:nth-child(6) { animation-delay: 0.6s; }
    
    .nav-menu.active a {
        color: #fff;
        font-size: 1.5rem;
        font-weight: 300;
        text-decoration: none;
        padding: 1rem 0;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .nav-menu.active a:hover {
        color: #00d4ff;
        transform: translateX(10px);
    }
    
    .nav-menu.active a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: #00d4ff;
        transition: width 0.3s ease;
    }
    
    .nav-menu.active a:hover::after {
        width: 100%;
    }
}

/* ===== NAVEGACIÓN DESKTOP CON SCROLL ===== */
@media (min-width: 901px) {
    .navbar.scrolled .nav-toggle {
        display: flex !important;
    }
    
    .navbar.scrolled .nav-menu {
        display: none !important;
    }
    
    .navbar.scrolled .nav-icons {
        display: none !important;
    }
}

/* ===== ANIMACIONES ===== */
@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== OPTIMIZACIONES DEL HERO SECTION ===== */

/* Hero section responsive y dinámico */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height para iOS */
        height: auto;
        padding: 2rem 0;
    }
    
    .hero-bg-canvas,
    .hero-bg-overlay {
        height: 100vh;
        height: 100dvh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
        min-height: calc(100vh - 80px);
        min-height: calc(100dvh - 80px);
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-icon-text {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Hero en tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
        text-align: center;
    }
    
    .hero-icon-text {
        justify-content: center;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1.5rem;
    }
}

/* Hero en landscape móvil */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .hero-container {
        min-height: calc(100vh - 60px);
        min-height: calc(100dvh - 60px);
        gap: 1rem;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-icon-text {
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        width: auto;
        min-width: 200px;
    }
}

/* Hero services slider responsive */
@media (max-width: 768px) {
    .hero-services-slider {
        bottom: 1rem;
        height: 40px;
    }
    
    .service-item {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .service-item span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-services-slider {
        bottom: 0.5rem;
        height: 35px;
    }
    
    .service-item {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .service-item span {
        font-size: 0.7rem;
    }
} 

body {
    padding-top: 90px !important; /* Ajusta según la altura real del navbar */
} 