/* Media Queries para Responsividad */

/* Tablets */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .about-content,
    .founder-content,
    .contact-content {
        flex-direction: column;
    }

    .about-image,
    .founder-image {
        order: -1;
        margin-bottom: 40px;
    }

    .hero-visual {
        display: none;
    }

    .stats {
        justify-content: space-around;
    }

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

/* Tablets pequeñas y móviles grandes */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1.5rem 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Móviles */
@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .service-card,
    .value-card,
    .mv-card {
        padding: 2rem 1.5rem;
    }

    .contact-content {
        gap: 40px;
    }
}