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

/* --- DESIGN SYSTEM SYSTEM VARIABLES --- */
:root {
    --bg-primary: #0A0C10;      /* Slate profundo quase preto */
    --bg-secondary: #111522;    /* Marinho escuro sofisticado */
    --bg-card: rgba(22, 28, 45, 0.7); /* Efeito vidro fosco */
    --accent-gold: #E5C453;     /* Dourado Champagne */
    --accent-gold-hover: #D4AF37;
    --accent-gold-glow: rgba(229, 196, 83, 0.15);
    --accent-gold-border: rgba(229, 196, 83, 0.3);
    
    --text-primary: #F8FAFC;    /* Branco off-white */
    --text-secondary: #E2E8F0;  /* Prata brilhante */
    --text-muted: #94A3B8;      /* Cinza ardósia suave */
    
    --red-alert: #EF4444;       /* Vermelho para "Para quem NÃO é" e "❌" */
    --green-success: #10B981;   /* Verde para "Para quem é" e "✓" */
    
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius-lg: 16px;
    --border-radius-sm: 8px;
}

/* --- RESET & BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* --- BACKGROUND DECORATIVE GLOWS --- */
body::before, body::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 196, 83, 0.05) 0%, rgba(17, 21, 34, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

body::before {
    top: 5%;
    left: -200px;
}

body::after {
    top: 50%;
    right: -200px;
}

.glow-blue {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.02) 0%, rgba(229, 196, 83, 0.01) 50%, rgba(0,0,0,0) 80%);
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
}

.highlight-gold {
    color: var(--accent-gold);
    background: linear-gradient(135deg, #FFF 30%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- CONTAINER --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- HEADER --- */
header {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(10, 12, 16, 0.8);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: var(--font-title);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--accent-gold);
}

.logo-badge {
    background: linear-gradient(135deg, var(--accent-gold), #FFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px solid var(--accent-gold-border);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #D4AF37);
    color: #0A0C10;
    box-shadow: 0 4px 20px var(--accent-gold-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(229, 196, 83, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.pulse-btn {
    animation: buttonPulse 2s infinite alternate;
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(229, 196, 83, 0.4);
    }
    100% {
        box-shadow: 0 0 0 12px rgba(229, 196, 83, 0);
    }
}

/* --- HERO SECTION --- */
.hero {
    padding: 80px 0 100px 0;
    text-align: center;
    position: relative;
}

.badge-exclusivo {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(229, 196, 83, 0.08);
    border: 1px solid var(--accent-gold-border);
    color: var(--accent-gold);
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.15em;
    border-radius: 50px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 54px;
    font-weight: 800;
    max-width: 950px;
    margin: 0 auto 28px auto;
    letter-spacing: -0.03em;
}

.hero .subheadline {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    font-weight: 300;
}

.hero-ctas {
    margin-bottom: 48px;
}

.hero-objections {
    display: flex;
    justify-content: center;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.objection-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.objection-item svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

/* --- STATS / OUTCOME BANNER --- */
.outcome-banner {
    background: linear-gradient(90deg, rgba(22, 28, 45, 0.4), rgba(229, 196, 83, 0.03), rgba(22, 28, 45, 0.4));
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 32px 0;
    text-align: center;
}

.outcome-text {
    font-family: var(--font-title);
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
}

.outcome-text strong {
    color: var(--accent-gold);
}

/* --- CARD GLASS --- */
.card-glass {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    transition: var(--transition-smooth);
}

.card-glass:hover {
    border-color: rgba(229, 196, 83, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* --- SECTION GENERAL --- */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 800;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- A GRANDE PERGUNTA SECTION --- */
.grande-pergunta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.pergunta-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pergunta-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background: rgba(229, 196, 83, 0.1);
    border: 1px solid rgba(229, 196, 83, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 20px;
}

.pergunta-card h3 {
    font-size: 18px;
    font-weight: 600;
}

.pergunta-card p {
    font-size: 14px;
    color: var(--text-muted);
}

.grande-pergunta-quote {
    text-align: center;
    max-width: 800px;
    margin: 40px auto 0 auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.grande-pergunta-quote blockquote {
    font-family: var(--font-title);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

/* --- O PROBLEMA SECTION --- */
.problema-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.problemas-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.problema-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(239, 68, 68, 0.03);
    border: 1px solid rgba(239, 68, 68, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 20px 24px;
    transition: var(--transition-smooth);
}

.problema-item:hover {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
    transform: translateX(4px);
}

.problema-icon {
    color: var(--red-alert);
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.problema-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* --- NOSSO MODELO SECTION --- */
.modelo-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.modelo-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(16, 185, 129, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.1);
    padding: 16px;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    font-weight: 500;
}

.feature-tag svg {
    color: var(--green-success);
    flex-shrink: 0;
}

.modelo-visual-card {
    text-align: center;
    position: relative;
    border: 1px solid rgba(229, 196, 83, 0.15);
}

.modelo-visual-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.modelo-visual-hours {
    font-size: 64px;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--font-title);
}

.modelo-visual-desc {
    color: var(--text-muted);
    font-size: 14px;
}

/* --- PROVA SOCIAL / RENAN ROCHA SECTION --- */
.autoridade-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.autoridade-img-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.autoridade-img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.autoridade-img-container:hover .autoridade-img {
    transform: scale(1.05);
}

.autoridade-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 12, 16, 0.9), transparent);
    padding: 24px;
    text-align: center;
}

.autoridade-img-overlay .name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.autoridade-img-overlay .title {
    font-size: 13px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.autoridade-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 800;
}

.autoridade-bio {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.autoridade-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlight-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.highlight-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-gold);
    margin-top: 8px;
    flex-shrink: 0;
}

.highlight-item p {
    font-size: 15px;
    color: var(--text-secondary);
}

.highlight-item p strong {
    color: var(--text-primary);
}

/* --- QUALIFICATION SECTION --- */
.qualificacao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.qualificacao-col {
    padding: 40px;
}

.qualificacao-col.para-quem {
    border-left: 3px solid var(--green-success);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.02) 0%, rgba(22, 28, 45, 0.2) 100%);
}

.qualificacao-col.para-quem-nao {
    border-left: 3px solid var(--red-alert);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.02) 0%, rgba(22, 28, 45, 0.2) 100%);
}

.qualificacao-col h3 {
    font-size: 24px;
    margin-bottom: 28px;
    font-weight: 700;
}

.qualificacao-col.para-quem h3 {
    color: var(--green-success);
}

.qualificacao-col.para-quem-nao h3 {
    color: var(--red-alert);
}

.qualificacao-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.qualificacao-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.qualificacao-item svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.qualificacao-col.para-quem svg {
    color: var(--green-success);
}

.qualificacao-col.para-quem-nao svg {
    color: var(--red-alert);
}

.qualificacao-item p {
    font-size: 15px;
    font-weight: 500;
}

/* --- SESSÃO DIAGNÓSTICA SECTION --- */
.diagnostico-wrapper {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.diagnostico-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
    text-align: left;
}

.diagnostico-feat-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 16px;
    border-radius: var(--border-radius-sm);
}

.diagnostico-feat-item svg {
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.diagnostico-feat-item p {
    font-size: 14px;
}

/* --- FORM MULTI STEP --- */
.form-section {
    padding: 100px 0;
    background: radial-gradient(circle at top, rgba(22, 28, 45, 0.5) 0%, rgba(10, 12, 16, 0) 60%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(229, 196, 83, 0.15);
}

.form-header-progress {
    margin-bottom: 32px;
}

.progress-bar-bg {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    margin-top: 12px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, var(--accent-gold), #FFF);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.step-indicator {
    font-family: var(--font-title);
    font-size: 13px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.form-step {
    display: none;
    animation: stepFadeIn 0.4s forwards;
}

.form-step.active {
    display: block;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-step h3 {
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(229, 196, 83, 0.05);
}

/* Choice fields (radios/checkboxes) custom styled */
.options-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-box {
    display: block;
    position: relative;
    padding: 16px 16px 16px 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-smooth);
    user-select: none;
}

.option-box:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(229, 196, 83, 0.2);
}

.option-box input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.option-checkmark {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.option-box input:checked ~ .option-checkmark {
    border-color: var(--accent-gold);
    background-color: var(--accent-gold);
}

.option-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.option-box input:checked ~ .option-checkmark:after {
    display: block;
}

.option-box .option-checkmark:after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid #0A0C10;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.option-box.selected {
    border-color: var(--accent-gold);
    background: rgba(229, 196, 83, 0.03);
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 16px;
}

.form-navigation button {
    flex: 1;
}

/* --- FOOTER --- */
footer {
    padding: 60px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #07090D;
    text-align: center;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
}

/* --- PAGE 2: OBRIGADO & CALENDAR LAYOUT --- */
.obrigado-hero {
    text-align: center;
    padding: 60px 0 40px 0;
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--green-success);
    font-weight: 600;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
}

.success-badge svg {
    font-size: 16px;
}

.obrigado-hero h1 {
    font-size: 40px;
    margin-bottom: 12px;
}

.obrigado-hero p {
    font-size: 16px;
    color: var(--text-secondary);
}

.options-pathways {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 32px auto 48px auto;
}

.pathway-card {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
    position: relative;
    overflow: hidden;
}

.pathway-card.featured {
    border-color: rgba(229, 196, 83, 0.3);
    background: linear-gradient(135deg, rgba(229, 196, 83, 0.02) 0%, rgba(22, 28, 45, 0.4) 100%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.featured-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-gold);
    color: #0A0C10;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pathway-card .number {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: block;
}

.pathway-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.pathway-card p {
    font-size: 13px;
    color: var(--text-muted);
}

.calendar-section-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: start;
}

.calendar-info h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.calendar-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.calendar-info-item {
    display: flex;
    gap: 16px;
}

.calendar-info-item svg {
    color: var(--accent-gold);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.calendar-info-item h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.calendar-info-item p {
    font-size: 13px;
    color: var(--text-muted);
}

.calendar-pill-stats {
    display: flex;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

.pill-stat {
    font-size: 13px;
    color: var(--text-secondary);
}

.pill-stat strong {
    color: var(--accent-gold);
}

/* WIDGET CALENDÁRIO */
.calendar-widget {
    background: var(--bg-card);
    border: 1px solid rgba(229, 196, 83, 0.2);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: widgetGlow 3s infinite alternate;
}

@keyframes widgetGlow {
    0% {
        box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    }
    100% {
        box-shadow: 0 20px 50px rgba(229, 196, 83, 0.06);
    }
}

.calendar-widget-header {
    background: rgba(22, 28, 45, 0.9);
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calendar-widget-header h3 {
    font-size: 16px;
    font-weight: 600;
}

.calendar-widget-header .timezone {
    font-size: 12px;
    color: var(--text-muted);
}

.calendar-widget-body {
    padding: 24px;
}

/* Calendário Simulado */
.calendar-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.calendar-month-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}

.calendar-month-selector button {
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.calendar-month-selector button:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-gold);
}

.calendar-days-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.calendar-days-numbers {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

.calendar-day-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.calendar-day-cell.inactive {
    color: rgba(255, 255, 255, 0.15);
    pointer-events: none;
}

.calendar-day-cell.available {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
}

.calendar-day-cell.available:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(229, 196, 83, 0.05);
}

.calendar-day-cell.selected {
    background: var(--accent-gold) !important;
    color: #0A0C10 !important;
    font-weight: 700;
    box-shadow: 0 4px 10px var(--accent-gold-glow);
}

/* Horários */
.time-selector-container {
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    display: none;
    animation: stepFadeIn 0.3s forwards;
}

.time-selector-container.active {
    display: block;
}

.time-selector-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.time-slot {
    padding: 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.time-slot:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(229, 196, 83, 0.05);
}

.time-slot.selected {
    background: var(--accent-gold);
    color: #0A0C10;
    border-color: var(--accent-gold);
}

/* Confirmação de Agendamento */
.booking-confirmation {
    margin-top: 24px;
    text-align: center;
    display: none;
    animation: stepFadeIn 0.3s forwards;
}

.booking-confirmation.active {
    display: block;
}

.booking-confirm-btn {
    width: 100%;
}

.booking-summary-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    margin-bottom: 16px;
    font-weight: 500;
    color: var(--text-secondary);
}

.booking-summary-pill strong {
    color: var(--accent-gold);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 42px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .modelo-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .modelo-visual-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .autoridade-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .autoridade-img-container {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .qualificacao-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .options-pathways {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .calendar-section-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 80px 0;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero .subheadline {
        font-size: 16px;
    }
    
    .hero-objections {
        gap: 16px 24px;
    }
    
    .card-glass {
        padding: 24px;
    }
    
    .modelo-features {
        grid-template-columns: 1fr;
    }
    
    .diagnostico-features-grid {
        grid-template-columns: 1fr;
    }
    
    .form-navigation {
        flex-direction: column;
    }
    
    .form-navigation button {
        width: 100%;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- MOBILE SPECIFIC FINE TUNING (SCREEN WIDTH <= 480px) --- */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .hero {
        padding: 40px 0 54px 0;
    }
    
    .hero h1 {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .hero .subheadline {
        font-size: 15px;
        margin-bottom: 32px;
    }
    
    .hero-objections {
        flex-direction: column;
        align-items: flex-start;
        display: inline-flex;
        gap: 12px;
        text-align: left;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .section-header p {
        font-size: 15px;
    }
    
    .grande-pergunta-quote blockquote {
        font-size: 18px;
    }
    
    .card-glass {
        padding: 20px;
    }
    
    .form-step h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .option-box {
        padding: 14px 14px 14px 44px;
        font-size: 13px;
    }
    
    .qualificacao-col {
        padding: 24px;
    }
    
    .qualificacao-col h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    /* Obrigado Page */
    .obrigado-hero h1 {
        font-size: 28px;
    }
    
    .obrigado-hero p {
        font-size: 14px;
    }
    
    .pathway-card {
        padding: 20px;
    }
    
    .calendar-info h2 {
        font-size: 24px;
    }
    
    .calendar-widget-body {
        padding: 16px;
    }
    
    .calendar-days-numbers {
        gap: 4px;
    }
    
    .calendar-day-cell {
        font-size: 11px;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .time-slot {
        padding: 8px;
        font-size: 12px;
    }
}

/* --- ADMIN PANEL SPECIFIC STYLES --- */
.admin-body {
    background: #07090D;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.admin-login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
}

.admin-login-card {
    width: 100%;
    max-width: 420px;
    padding: 40px;
}

.admin-login-card h2 {
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 700;
    text-align: center;
}

.admin-login-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 32px;
    text-align: center;
}

/* Dashboard Layout */
.admin-dashboard-wrapper {
    max-width: 1100px;
    width: 100%;
    margin: 40px auto;
    padding: 0 20px;
    flex-grow: 1;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.admin-header h1 {
    font-size: 28px;
    font-weight: 700;
}

.admin-header .user-info {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--text-secondary);
}

.admin-tabs {
    display: flex;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1px;
    margin-bottom: 32px;
    overflow-x: auto;
}

.admin-tab-btn {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.admin-tab-btn:hover {
    color: var(--text-primary);
}

.admin-tab-btn.active {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.admin-tab-content {
    display: none;
    animation: stepFadeIn 0.3s forwards;
}

.admin-tab-content.active {
    display: block;
}

/* Card layout inside admin */
.admin-card {
    margin-bottom: 24px;
}

.admin-card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.admin-card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-gold);
}

.admin-card-header p {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Tables style */
.admin-table-container {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.admin-table th, .admin-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.admin-table th {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.01);
}

.admin-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}

/* Switch styling */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 22px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .3s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: var(--text-primary);
    transition: .3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--green-success);
}

input:checked + .slider:before {
    transform: translateX(22px);
}

/* Badges for active status */
.badge-status {
    display: inline-block;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge-status.active {
    background: rgba(16, 185, 129, 0.1);
    color: var(--green-success);
}

.badge-status.blocked {
    background: rgba(239, 68, 68, 0.1);
    color: var(--red-alert);
}

/* Admin lists layout split */
.admin-split-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
}

@media (max-width: 768px) {
    .admin-split-grid {
        grid-template-columns: 1fr;
    }
}

