/* 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;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header .btn {
        display: none;
    }

    #main-logo {
        max-width: 200px;
    }

    #main-logo img {
        height: 55px; /* Reducción proporcional óptima en móvil */
        max-height: 55px;
    }
    
    .header.scrolled #main-logo img {
        height: 48px;
        max-height: 48px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}
