/* Register — landing comercial */
.reg-page {
    --reg-bg-1: #120a22;
    --reg-bg-2: #1e1040;
    --reg-accent: #fe00fd;
    --reg-cyan: #00d4ff;
    --reg-warm: #ff9f6b;
    --reg-text: #f8f4ff;
    --reg-muted: rgba(248, 244, 255, 0.72);
    --reg-card: rgba(255, 255, 255, 0.06);
    --reg-font: 'Plus Jakarta Sans', system-ui, sans-serif;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    font-family: var(--reg-font);
    color: var(--reg-text);
    background: #0a0814;
}

.reg-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 90% 70% at 0% 30%, rgba(254, 0, 253, 0.28), transparent 55%),
        radial-gradient(ellipse 70% 60% at 100% 20%, rgba(0, 212, 255, 0.2), transparent 50%),
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(255, 159, 107, 0.1), transparent 55%),
        linear-gradient(145deg, var(--reg-bg-1) 0%, var(--reg-bg-2) 50%, #0a0814 100%);
}

.reg-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/img/booh-brain-copilot.png');
    background-size: min(720px, 55vw);
    background-position: 8% 55%;
    background-repeat: no-repeat;
    opacity: 0.14;
    filter: saturate(1.1);
}

.reg-bg-ghost {
    position: absolute;
    right: -5%;
    bottom: 5%;
    width: min(380px, 35vw);
    opacity: 0.08;
    pointer-events: none;
}

.reg-main {
    position: relative;
    z-index: 2;
    flex: 1 0 auto;
    display: grid;
    grid-template-columns: 1fr minmax(380px, 480px);
    gap: 0;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 28px 48px;
    align-items: center;
    box-sizing: border-box;
}

.reg-hero {
    padding: 24px 40px 24px 12px;
}

.reg-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(90deg, rgba(254, 0, 253, 0.35), rgba(0, 212, 255, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.18);
    margin-bottom: 22px;
}

.reg-hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--reg-warm);
    box-shadow: 0 0 10px var(--reg-warm);
}

.reg-hero h1 {
    font-size: clamp(2rem, 4.5vw, 2.85rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin: 0 0 18px;
    max-width: 520px;
}

.reg-hero h1 .reg-gradient {
    background: linear-gradient(100deg, #fff 10%, #e8c4ff 45%, var(--reg-cyan) 95%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.reg-hero-lead {
    font-size: 1.12rem;
    line-height: 1.6;
    color: var(--reg-muted);
    max-width: 480px;
    margin: 0 0 32px;
}

.reg-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 440px;
}

.reg-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
}

.reg-benefits-ico {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: linear-gradient(145deg, rgba(254, 0, 253, 0.25), rgba(0, 212, 255, 0.15));
}

.reg-benefits strong {
    display: block;
    color: #fff;
    font-size: 0.92rem;
    margin-bottom: 2px;
}

.reg-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-top: 36px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
}

.reg-trust span::before {
    content: '✓ ';
    color: var(--reg-cyan);
}

.reg-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
}

.reg-card {
    width: 100%;
    max-width: 440px;
    padding: 36px 32px 40px;
    background: var(--reg-card);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    backdrop-filter: blur(24px);
    box-shadow: 0 28px 70px rgba(8, 4, 20, 0.5);
}

.reg-card-head {
    text-align: center;
    margin-bottom: 24px;
}

.reg-card-head h2 {
    margin: 0 0 8px;
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
}

.reg-card-head p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--reg-muted);
}

.reg-plan-box {
    margin-bottom: 22px;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(254, 0, 253, 0.08));
    border: 1px solid rgba(0, 212, 255, 0.25);
    text-align: left;
}

.reg-plan-box strong {
    display: block;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 6px;
}

.reg-plan-box p,
.reg-plan-box ul {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.5;
    color: var(--reg-muted);
}

.reg-plan-box ul {
    margin-top: 8px;
    padding-left: 18px;
}

.reg-plan-box a {
    color: var(--reg-cyan);
    font-weight: 700;
    text-decoration: none;
}

.reg-plan-box a:hover {
    text-decoration: underline;
}

.reg-card label {
    display: block;
    text-align: left;
    margin-top: 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

.reg-card label:first-of-type {
    margin-top: 0;
}

.reg-card input[type='text'],
.reg-card input[type='email'],
.reg-card input[type='password'] {
    width: 100%;
    padding: 14px 16px;
    margin-top: 6px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.reg-card input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.reg-card input:focus {
    outline: none;
    border-color: var(--reg-cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.reg-btn {
    width: 100%;
    margin-top: 22px;
    padding: 16px 24px;
    border: none;
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: inherit;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(105deg, #fe00fd 0%, #a855f7 50%, #00d4ff 110%);
    background-size: 200% auto;
    box-shadow: 0 12px 32px rgba(254, 0, 253, 0.35);
    transition: transform 0.15s, box-shadow 0.2s, background-position 0.35s;
}

.reg-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(254, 0, 253, 0.45);
    background-position: 100% center;
}

.reg-footer-text {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--reg-muted);
}

.reg-footer-text a {
    color: var(--reg-cyan);
    font-weight: 700;
    text-decoration: none;
}

.reg-footer-text a:hover {
    text-decoration: underline;
}

.reg-divider {
    color: rgba(255, 255, 255, 0.4);
    margin: 20px 0 16px;
    font-size: 0.88rem;
    text-align: center;
    position: relative;
}

.reg-divider::before,
.reg-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 38%;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.reg-divider::before { left: 0; }
.reg-divider::after { right: 0; }

.reg-google-wrap {
    display: flex;
    justify-content: center;
    margin-top: 4px;
}

.reg-alert {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
    font-size: 0.9rem;
    line-height: 1.45;
    text-align: left;
}

.reg-alert--error {
    background: rgba(244, 63, 94, 0.15);
    border: 1px solid rgba(244, 63, 94, 0.3);
    color: #fecdd3;
}

.reg-alert--success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.28);
    color: #bbf7d0;
}

.reg-alert--success a {
    color: var(--reg-cyan);
    font-weight: 700;
}

/* Footer (register no carga style.css — estilos aquí) */
.reg-page .site-footer {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    margin-top: auto;
    padding: 56px 0 24px;
    box-sizing: border-box;
    color: var(--reg-text);
    background: linear-gradient(180deg, rgba(10, 8, 20, 0.4) 0%, #0a0814 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reg-page .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 40px 48px;
    box-sizing: border-box;
}

.reg-page .footer-col h4 {
    margin: 0 0 14px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--reg-cyan);
    letter-spacing: 0.02em;
}

.reg-page .footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.reg-page .footer-col ul li {
    margin-bottom: 10px;
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--reg-muted);
}

.reg-page .footer-col ul li a {
    color: rgba(248, 244, 255, 0.82);
    text-decoration: none;
    transition: color 0.2s ease;
}

.reg-page .footer-col ul li a:hover {
    color: var(--reg-cyan);
}

.reg-page .footer-desc {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--reg-muted);
    max-width: 300px;
}

.reg-page .footer-logo {
    display: block;
    width: min(200px, 65vw);
    height: auto;
    margin: 0 0 16px;
}

.reg-page .footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 24px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(248, 244, 255, 0.5);
    box-sizing: border-box;
}

.reg-page .footer-bottom p {
    margin: 0;
}

@media (max-width: 980px) {
    .reg-page .footer-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px 32px;
    }

    .reg-page .footer-col-logo {
        grid-column: 1 / -1;
    }

    .reg-page .footer-desc {
        max-width: 520px;
    }
}

@media (max-width: 640px) {
    .reg-page .site-footer {
        padding: 44px 0 20px;
    }

    .reg-page .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px;
        text-align: center;
    }

    .reg-page .footer-col-logo,
    .reg-page .footer-col {
        margin: 0 auto;
    }

    .reg-page .footer-logo {
        margin: 0 auto 14px;
    }

    .reg-page .footer-desc {
        max-width: none;
        margin: 0 auto;
    }

    .reg-page .footer-bottom {
        margin-top: 32px;
        padding: 18px 20px 0;
        font-size: 0.8rem;
    }
}

@media (max-width: 960px) {
    .reg-main {
        grid-template-columns: 1fr;
        padding: 24px 18px 40px;
        min-height: auto;
    }

    .reg-hero {
        padding: 12px 8px 28px;
        text-align: center;
    }

    .reg-hero h1,
    .reg-hero-lead,
    .reg-benefits {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .reg-benefits {
        max-width: 520px;
    }

    .reg-trust {
        justify-content: center;
    }

    .reg-bg::after {
        background-position: center 85%;
        background-size: min(480px, 90vw);
        opacity: 0.1;
    }
}

@media (max-width: 480px) {
    .reg-card {
        padding: 28px 22px 32px;
        border-radius: 22px;
    }
}
