:root {
    --primary: #0a6cf1;
    --primary-dark: #0548a8;
    --accent: #f97316;
    --slate: #0f172a;
    --muted: #6b7280;
    --pink: #ec4899;
    --violet: #7c3aed;
}

.login-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    background: radial-gradient(circle at 10% 20%, rgba(10, 108, 241, 0.08), transparent 25%),
        radial-gradient(circle at 90% 10%, rgba(249, 115, 22, 0.1), transparent 22%),
        linear-gradient(135deg, #f7f9fc 0%, #eef2f7 100%);
}

.login-card {
    width: 100%;
    max-width: 1180px;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 20px 70px rgba(15, 23, 42, 0.15);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    overflow: hidden;
}

.login-panel {
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-panel {
    background: #ffffff;
}

.info-panel {
    background: radial-gradient(circle at 20% 20%, rgba(236, 72, 153, 0.2), transparent 32%),
        radial-gradient(circle at 80% 0%, rgba(124, 58, 237, 0.35), transparent 40%),
        linear-gradient(135deg, #0a6cf1 0%, #0c7dff 30%, #0ca0f5 60%, #0b79f3 100%);
    color: #ffffff;
    position: relative;
    isolation: isolate;
}

.info-panel::after,
.info-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.12) 0, transparent 35%),
        radial-gradient(circle at 80% 15%, rgba(6, 182, 212, 0.22) 0, transparent 32%),
        radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.08) 0, transparent 28%);
    z-index: 0;
}

.info-panel > * {
    position: relative;
    z-index: 1;
}

.hero-card {
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-card h4 {
    margin: 0 0 8px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.hero-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.brand-inline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-inline .badge {
    background: var(--primary);
    color: #fff;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.brand-inline2 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-inline2 .badge2 {
    background: var(--primary);
    color: #fff;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
        width: 140px;
}

.pulse {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.35);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.info-headline h3 {
    margin: 0 0 6px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.info-headline p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
}

.page-title {
    font-weight: 700;
    color: var(--slate);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.page-subtitle {
    color: var(--muted);
    margin-bottom: 4px;
}

.modern-form .form-group label {
    color: var(--muted);
    font-size: 14px;
}

.modern-form .form-control {
    border-radius: 12px;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    box-shadow: none;
}

.modern-form .input-group {
    display: flex;
    align-items: stretch;
}

.modern-form .input-group .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.modern-form .input-group-btn {
    display: flex;
}

.modern-form .input-group-btn .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.modern-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 108, 241, 0.15);
}

.btn-modern {
    border-radius: 12px;
    border: none;
    padding: 12px 16px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.btn-primary-modern {
    background: var(--primary);
    color: #fff;
}

.btn-primary-modern:hover {
    background: var(--primary-dark);
    color: #fff;
}

.btn-neutral {
    background: #f3f4f6;
    color: #111827;
}

.password-field {
    position: relative;
}

.password-toggle-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 6px;
}

.password-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}


.password-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.password-toggle:hover,
.password-toggle:focus {
    color: var(--primary-dark);
    text-decoration: none;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.22);
}

.helper-text {
    font-size: 13px;
    color: #ffffff;
}

.helper-text2 {
    font-size: 13px;
    color: #6e6d6d;
}

.hero-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.hero-card__header h4 {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.label {
    font-size: 12px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 4px;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.feature-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.feature-card h4 {
    margin: 0 0 4px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.feature-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.social-card {
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 18px;
    padding: 16px;
    display: grid;
    gap: 10px;
}

.social-card h4 {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.social-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.16);
    color: #ecfeff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.social-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 14px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Base dos botões */
.pill {
    background: #f5f7fb;              /* cinza claro neutro */
    color: #1f3c88;                   /* azul padrão do layout */
    border: 1px solid #dbe1f1;
    transition: all 0.2s ease;
}

/* Ícones herdam a cor */
.pill i {
    color: inherit;
}

/* Instagram */
.pill.instagram {
        color: #1f3c88;                   /* azul padrão do layout */
                   /* azul padrão do layout */
;                   /* cor institucional, sem exagero */
}

/* YouTube */
.pill.youtube {
        color: #1f3c88;                   /* azul padrão do layout */

}

/* Hover discreto */
.pill:hover {
    background: #eef2ff;              /* leve destaque */
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    text-decoration: none;
}


.support-card {
    border-radius: 14px;
    padding: 14px 16px;
    background: #f8fafc;
    color: #0f172a;
    border: 1px solid #e5e7eb;
}

.support-card strong {
    color: #0a6cf1;
}

/* =============================
   MOBILE
============================= */
@media (max-width: 960px) {
    .login-card {
        border-radius: 20px;
    }
}

@media (max-width: 560px) {
    .login-shell {
        padding: 16px 12px 32px;
    }

    .login-card {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .login-panel {
        padding: 20px;
    }

    .login-panel > * {
        margin-left: 2px;
        margin-right: 2px;
    }
}
