/* ===============================================
   Casa Morêt - Responsive Design
   =============================================== */

/* Tablet - 768px */
@media (max-width: 768px) {
    /* Typography */
    html {
        font-size: 14px;
    }
    
    /* Container */
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    /* Navigation */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--blanco);
        flex-direction: column;
        gap: 0;
        padding: var(--spacing-md);
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: var(--spacing-sm) 0;
        border-bottom: 1px solid var(--gris-claro);
    }
    
    .nav-actions {
        margin-top: var(--spacing-sm);
    }
    
    /* Hero */
    .hero {
        height: 80vh;
        min-height: 500px;
    }
    
    /* Intro Grid */
    .intro-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .intro-content {
        padding-right: 0;
    }
    
    .intro-image {
        order: -1;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto var(--spacing-sm);
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Sections */
    section {
        padding: var(--spacing-md) 0;
    }
    
    /* WhatsApp Button */
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button img {
        width: 28px;
        height: 28px;
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    /* Typography */
    html {
        font-size: 13px;
    }
    
    /* Buttons */
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Hero */
    .hero {
        height: 70vh;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Features */
    .feature-card {
        padding: var(--spacing-sm);
    }
    
    /* CTA */
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}

/* Large Desktop - 1440px+ */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}
