/* -------------------------------------------------------------------------- */
/* PLASO PLD SOFT - "Próximamente" Stylesheet (Light & White Theme)           */
/* Color Palette: Cyan (#0085CA), Magenta (#E51A54), Pure White Card (#FFFFFF) */
/* -------------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    --color-cyan: #0085CA;
    --color-cyan-glow: rgba(0, 133, 202, 0.25);
    --color-magenta: #E51A54;
    --color-magenta-glow: rgba(229, 26, 84, 0.25);
    --color-light-bg: #F8FAFC;
    --color-card-bg: #FFFFFF;
    --color-card-border: #E2E8F0;
    --color-text-heading: #0F172A;
    --color-text-body: #475569;
    --color-text-muted: #64748B;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background-color: var(--color-light-bg);
    color: var(--color-text-body);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Background Canvas */
#bubbles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: auto;
}

/* Main Container - Centered */
.page-wrapper {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2.5rem 1.5rem;
}

/* Central Card - White Container */
.content-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 32px;
    padding: 3.5rem 3rem;
    max-width: 720px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.08),
                0 10px 25px -5px rgba(0, 133, 202, 0.06),
                0 1px 3px rgba(0, 0, 0, 0.04);
    animation: fadeInScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    position: relative;
    overflow: hidden;
}

/* Glowing top accent line */
.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-magenta));
}

/* Header & Logo */
.brand-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.75rem;
}

.brand-logo {
    max-width: 290px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.02);
}

/* Hero Illustration Container */
.illustration-container {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 1.75rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-illustration {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
    animation: floatIllustration 5s ease-in-out infinite;
    filter: drop-shadow(0 15px 25px rgba(0, 133, 202, 0.12));
}

/* Title Badge & Centered Typography */
.title-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    background: rgba(0, 133, 202, 0.08);
    border: 1px solid rgba(0, 133, 202, 0.2);
    color: var(--color-cyan);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
}

.title-badge .dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-magenta);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-magenta);
    animation: pulseDot 2s infinite;
}

.main-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--color-text-heading);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.subtitle {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--color-text-body);
    max-width: 580px;
    margin: 0 auto 2rem auto;
    font-weight: 400;
}

/* Feature Pills */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.25rem;
}

.feature-pill {
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1E293B;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    background: rgba(0, 133, 202, 0.1);
    border-color: var(--color-cyan);
    color: var(--color-cyan);
    transform: translateY(-2px);
}

.feature-pill svg {
    width: 16px;
    height: 16px;
    fill: var(--color-cyan);
}

/* Form Container */
.notify-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 480px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

@media (max-width: 520px) {
    .content-card {
        padding: 2.5rem 1.5rem;
    }
    .form-group {
        flex-direction: column;
    }
}

.input-email {
    flex: 1;
    background: #F8FAFC;
    border: 1.5px solid #CBD5E1;
    border-radius: 14px;
    padding: 0.95rem 1.25rem;
    color: var(--color-text-heading);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.input-email::placeholder {
    color: #94A3B8;
}

.input-email:focus {
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 4px rgba(0, 133, 202, 0.15);
    background: #FFFFFF;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-cyan) 0%, #006BB0 100%);
    border: none;
    border-radius: 14px;
    padding: 0.95rem 1.85rem;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0096E6 0%, var(--color-cyan) 100%);
    box-shadow: none;
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

.form-response {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-cyan);
    margin-top: 0.25rem;
    min-height: 20px;
    display: none;
}

/* Footer */
.footer-text {
    margin-top: 2.25rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-link {
    color: var(--color-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--color-magenta);
    text-decoration: underline;
}

/* Keyframe Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes floatIllustration {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseDot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}
