/*
 * ============================================================================
 * CARGO SOLUTIONS ECUADOR - Pagina "Proximamente"
 * ============================================================================
 * Sitio web: https://cargoec.com
 * Descripcion: Pagina de pre-lanzamiento de Cargo Solutions Ecuador.
 *              Empresa de soluciones integrales en comercio exterior
 *              y logistica internacional.
 *
 * ESTRUCTURA:
 *   1. Variables CSS (colores de marca)
 *   2. Reset y estilos base
 *   3. Fondo con efectos decorativos
 *   4. Contenedor principal (centrado vertical y horizontal)
 *   5. Logo
 *   6. Separador decorativo
 *   7. Titulo y subtitulo
 *   8. Tags de servicios
 *   9. Botones de contacto (WhatsApp, Telefono, Email)
 *  10. Redes sociales
 *  11. Ubicaciones
 *  12. Footer
 *  13. Responsive (tablet y movil)
 *
 * COLORES DE MARCA:
 *   - Naranja: #E8651A (acentos, botones, CTAs)
 *   - Azul marino: #1B2B5B (fondo principal, textos)
 *
 * Para el sitio completo: reemplazar este CSS con el definitivo.
 * Ultima actualizacion: 2025-02-21
 * ============================================================================
 */


/* ==========================================================================
   1. VARIABLES CSS
   ========================================================================== */
:root {
    --orange: #E8651A;
    --orange-dark: #D05A15;
    --orange-light: #F5935A;
    --navy: #1B2B5B;
    --navy-dark: #0F1A3A;
    --navy-light: #2A3F7A;
    --white: #FFFFFF;
}


/* ==========================================================================
   2. RESET Y BASE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}


/* ==========================================================================
   3. FONDO Y EFECTOS DECORATIVOS
   ==========================================================================
   Fondo con gradiente azul marino + resplandores naranja animados.
   La grilla de fondo (bg-grid) agrega textura sutil.
   ========================================================================== */
.coming-soon {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(145deg, #0d1117 0%, #161b2e 40%, #1c2541 70%, #0d1117 100%);
    padding: 2rem 1.5rem;
    overflow: hidden;
}

/* Contenedor de efectos de fondo (no interactivo) */
.bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Resplandores naranja decorativos */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
}

/* Resplandor superior derecho */
.bg-glow-1 {
    width: 600px;
    height: 600px;
    background: var(--orange);
    top: -15%;
    right: -10%;
    animation: glow-float 8s ease-in-out infinite;
}

/* Resplandor inferior izquierdo */
.bg-glow-2 {
    width: 400px;
    height: 400px;
    background: var(--orange-light);
    bottom: -10%;
    left: -5%;
    animation: glow-float 10s ease-in-out infinite reverse;
}

/* Animacion flotante de los resplandores */
@keyframes glow-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
}

/* Grilla de fondo para textura sutil */
.bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}


/* ==========================================================================
   4. CONTENEDOR PRINCIPAL
   ========================================================================== */
.coming-soon-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    width: 100%;
}


/* ==========================================================================
   5. LOGO
   ========================================================================== */
.logo-container {
    margin-bottom: 2rem;
}

.logo-container img {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 30px rgba(255,255,255,0.15));
}


/* ==========================================================================
   6. SEPARADOR DECORATIVO
   ==========================================================================
   Linea horizontal con icono de camion en el centro.
   ========================================================================== */
.divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,101,26,0.5), transparent);
}

.divider-icon {
    color: var(--orange);
    display: flex;
    align-items: center;
}

.divider-icon svg {
    width: 28px;
    height: 28px;
}


/* ==========================================================================
   7. TITULO Y SUBTITULO
   ========================================================================== */
.title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

/* Texto resaltado en naranja */
.title span {
    color: var(--orange);
    display: block;
}

.subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}


/* ==========================================================================
   8. TAGS DE SERVICIOS
   ==========================================================================
   Etiquetas que muestran los servicios principales.
   Aparecen como "chips" horizontales con scroll si no caben.
   ========================================================================== */
.tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.tag {
    background: rgba(232,101,26,0.12);
    border: 1px solid rgba(232,101,26,0.25);
    color: var(--orange-light);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}


/* ==========================================================================
   9. SECCION DE CONTACTO Y BOTONES
   ========================================================================== */
.contact-section {
    margin-bottom: 2rem;
}

.contact-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

/* Estilos base de todos los botones */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

/* Boton WhatsApp (verde) */
.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

/* Boton telefono (borde blanco semi-transparente) */
.btn-phone {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-phone:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
}

/* Boton email (borde blanco semi-transparente) */
.btn-email {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-email:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
}


/* ==========================================================================
   10. REDES SOCIALES
   ========================================================================== */
.social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}


/* ==========================================================================
   11. UBICACIONES
   ========================================================================== */
.locations {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.location svg {
    color: var(--orange);
    flex-shrink: 0;
}

.location strong {
    color: rgba(255,255,255,0.7);
}


/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.footer-bar {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    max-width: 700px;
}

.footer-bar span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
}


/* ==========================================================================
   13. RESPONSIVE
   ========================================================================== */

/* ---- TABLET (max 768px) ---- */
@media (max-width: 768px) {
    .title {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .logo-container img {
        max-width: 220px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .locations {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
}

/* ---- MOVIL PEQUENO (max 480px) ---- */
@media (max-width: 480px) {
    .coming-soon {
        padding: 1.5rem 1rem;
    }

    .title {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .logo-container img {
        max-width: 180px;
    }

    .tags {
        gap: 0.4rem;
    }

    .tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
    }

    .divider {
        padding: 0 0.5rem;
    }
}
