/**
 * Responsive Styles - Fundación Obligado
 */

/* Desktop (1440px) */
@media (max-width: 1440px) {}

/* Laptop (1024px) */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablet (768px) */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .header-container {
        padding: 0 20px;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: var(--shadow-medium);
    }

    .main-navigation.active {
        max-height: 500px;
    }

    .nav-menu {
        flex-direction: column;
        padding: 20px;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    .hamburger {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        position: relative;
    }

    .hamburger::before,
    .hamburger::after {
        content: '';
        position: absolute;
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        left: 0;
    }

    .hamburger::before {
        top: -8px;
    }

    .hamburger::after {
        bottom: -8px;
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-ctas .btn {
        margin: 10px 0;
        display: block;
        width: 100%;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Mobile (320px) */
@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }

    .hero-section {
        min-height: 60vh;
    }
}