/* Responsive Design */
@media (max-width: 992px) {
    .hero-container, .adspro-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero {
        padding-top: 120px;
    }

    /* 1. Ocultar navegación y botón desktop; mostrar hamburguesa */
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header .btn {
        display: none;
    }

    /* 2. Soporte Safe Area para iPhone y redimensionar Header */
    .header {
        padding-top: env(safe-area-inset-top);
    }

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

    .header.scrolled .header-container {
        min-height: 80px;
    }

    /* 3. Redimensionar logotipo (más grande, nítido y premium) */
    #main-logo {
        max-width: 280px;
    }

    #main-logo img {
        height: 78px;
        max-height: 78px;
    }
    
    .header.scrolled #main-logo img {
        height: 68px;
        max-height: 68px;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    /* Estilos Responsivos del Modal de Demos */
    .demo-product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .demo-modal-container {
        padding: 2.5rem 1.5rem 3rem;
    }
    
    .demo-modal-title {
        font-size: 1.75rem;
    }
}
