/* mobile.css: Solo estilos para móviles */
@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--oscuro);
        flex-direction: column;
        display: none;
        align-items: center;
        justify-content: flex-start;
        padding-bottom: 1rem;
    }

    nav.active {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem 0;
        width: 100%;
        text-align: center;
    }

    .cta-button {
        display: none;
    }

    .cta-button-mobile {
        display: block;
        margin: 1rem auto 0;
        width: calc(100% - 2rem);
        max-width: 250px;
        background: var(--rojo);
        color: var(--blanco);
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 25px;
        cursor: pointer;
        flex-shrink: 0;
        flex-grow: 0;
    }

    .hero-content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
        flex: 1 1 100%;
    }

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

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

    .hero-carousel {
        height: auto;
        max-width: 90%;
        flex: 1 1 100%;
        margin-bottom: 1rem;
    }

    .hero-carousel img {
        height: 250px;
    }

    .proyectos-galeria,
    .diferenciador-contenido,
    .clientes-logos {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }

    .proyecto-card,
    .servicio-card {
        width: 100%;
        max-width: 350px;
    }
}