/* Estilos Mobile - Responsive */

/* Tablet y móvil */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 0.5rem !important;
        height: auto !important;
        min-height: 100vh;
    }

    .logo-container {
        margin-bottom: 2rem !important;
    }

    .logo-container img {
        max-width: 400px !important;
        width: 90% !important;
        margin-bottom: 1.5rem !important;
    }

    .main-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem) !important;
        margin-bottom: 1rem !important;
        white-space: normal !important;
        line-height: 1.3 !important;
    }

    .subtitle {
        font-size: clamp(1.2rem, 4vw, 1.8rem) !important;
        margin-bottom: 1rem !important;
    }

    .description {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem) !important;
        margin-bottom: 1rem !important;
        padding: 0 !important;
        -webkit-line-clamp: unset !important;
        display: block !important;
        overflow: visible !important;
    }

    .contact-info {
        padding: 1rem !important;
        margin-bottom: 0.75rem !important;
        max-width: 100% !important;
    }

    .contact-item {
        flex-direction: row !important;
        gap: 0.5rem !important;
        margin-bottom: 0.75rem !important;
        font-size: clamp(0.85rem, 2vw, 0.95rem) !important;
    }

    .contact-item:last-child {
        margin-bottom: 0 !important;
    }

    .closing-text {
        font-size: clamp(1rem, 2.5vw, 1.1rem) !important;
        margin-top: 0.75rem !important;
    }
}

/* Pantallas con altura reducida - Solo en móvil */
@media (max-width: 768px) and (max-height: 700px) {
    .logo-container {
        margin-bottom: 0.75rem !important;
    }

    .logo-container img {
        max-width: 300px !important;
        margin-bottom: 0.5rem !important;
    }

    .main-title {
        font-size: clamp(1.2rem, 3vw, 1.8rem) !important;
        margin-bottom: 0.25rem !important;
    }

    .subtitle {
        font-size: clamp(1rem, 2.5vw, 1.4rem) !important;
        margin-bottom: 0.5rem !important;
    }

    .description {
        font-size: clamp(0.85rem, 1.5vw, 0.95rem) !important;
        margin-bottom: 1rem !important;
    }

    .contact-info {
        padding: 1rem !important;
        margin-bottom: 0.75rem !important;
    }

    .contact-item {
        margin-bottom: 0.5rem !important;
    }

    .closing-text {
        margin-top: 0.5rem !important;
        font-size: clamp(0.9rem, 1.8vw, 1rem) !important;
    }
}

