/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0f2b1a;
    --bg-section: #122d1b;
    --bg-card: #183825;
    --bg-card-hover: #1e4a30;
    --green-primary: #1a6b3c;
    --green-accent: #22c55e;
    --yellow: #d4a017;
    --yellow-light: #e6b422;
    --yellow-dark: #b8910f;
    --gold: #c5a028;
    --white: #ffffff;
    --gray-light: #c2d3c8;
    --gray: #8aa694;
    --text-primary: #ffffff;
    --text-secondary: #b4cabb;
    --border-color: rgba(255, 255, 255, 0.08);
    --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================
   HEADER BAR
   ============================ */
.header {
    background: linear-gradient(90deg, #1a5c32 0%, #2d7a45 50%, #1a5c32 100%);
    padding: 12px 30px;
    position: relative;
    z-index: 100;
}

.section-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--green-accent) 50%, transparent 100%);
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0.4;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-dot {
    width: 10px;
    height: 10px;
    background: var(--yellow);
    border-radius: 50%;
    display: inline-block;
}

.header-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
}

.btn-header {
    background: var(--yellow);
    color: #1a3a20;
    padding: 8px 22px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-header:hover {
    background: var(--yellow-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.4);
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
    background: linear-gradient(180deg, #0f2b1a 0%, #132e1c 50%, #0f2b1a 100%);
    padding: 40px 0 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(212, 160, 23, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-video-container {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #1a4a2e 0%, #0f2b1a 100%);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(212, 160, 23, 0.3);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.hero-video-placeholder iframe,
.hero-video-placeholder #ytPlayer {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: calc(100% + 120px);
    border: none;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(15, 43, 26, 0.7);
}

.video-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #e53e3e;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.video-presenter {
    position: absolute;
    top: 16px;
    right: 16px;
}

.presenter-name {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
}

.video-logos {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    gap: 12px;
}

.logo-petrobras, .logo-cpws {
    background: rgba(0, 0, 0, 0.6);
    color: var(--yellow);
    font-size: 12px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.9);
    border: none;
    color: #1a3a20;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--yellow-light);
}

.play-btn i {
    margin-left: 4px;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.highlight {
    color: var(--yellow);
    font-style: italic;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
}

.highlight-bold {
    color: var(--yellow);
    font-weight: 900;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Countdown */
.countdown-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    background: rgba(26, 58, 32, 0.6);
    padding: 12px 24px;
    border-radius: 12px;
    border: 1px solid rgba(212, 160, 23, 0.2);
}

.countdown-item {
    display: flex;
    align-items: baseline;
    gap: 2px;
    background: var(--yellow);
    color: #1a3a20;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 800;
}

.countdown-value {
    font-size: 22px;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    font-size: 12px;
    font-weight: 700;
    opacity: 0.7;
}

.countdown-separator {
    font-size: 22px;
    font-weight: 800;
    color: var(--yellow);
}

/* CTA Button */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 12px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    text-transform: uppercase;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-cta i {
    font-size: 20px;
}

.urgency-text {
    margin-top: 16px;
    font-size: 14px;
    color: var(--green-accent);
    font-weight: 600;
}

.urgency-text i {
    margin-right: 6px;
}

/* ============================
   SALARY SECTION
   ============================ */
.salarios {
    background: linear-gradient(180deg, #0e2816 0%, #132e1c 50%, #0e2816 100%);
    padding: 0 0 60px 0;
}

.section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    margin-top: 40px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.salary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.salary-card {
    background: linear-gradient(180deg, #183825 0%, #122d1b 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px 16px 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.salary-card:hover {
    border-color: rgba(212, 160, 23, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.salary-card-title {
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--white);
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.salary-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.salary-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.salary-table td {
    padding: 8px 4px;
    color: var(--text-secondary);
}

.salary-table .salary-value {
    text-align: right;
    color: var(--white);
    font-weight: 500;
}

.salary-total {
    background: var(--yellow);
    color: #1a3a20;
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    padding: 14px;
    margin: 16px -16px 0;
    border-radius: 0 0 16px 16px;
}

/* ============================
   AGENDA SECTION
   ============================ */
.agenda {
    background: linear-gradient(180deg, #132e1c 0%, #0f2b1a 100%);
    padding: 0 0 60px 0;
}

.agenda-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.agenda-card {
    background: linear-gradient(180deg, #183825 0%, #122d1b 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.agenda-card:hover {
    border-color: rgba(212, 160, 23, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.agenda-image {
    position: relative;
    overflow: hidden;
    background: #122d1b;
}

.agenda-image img {
    width: 100%;
    display: block;
    object-fit: contain;
}

.agenda-image .agenda-badges {
    position: absolute;
    bottom: 12px;
    left: 12px;
}

.agenda-badges {
    display: flex;
    gap: 8px;
}

.badge-date, .badge-time {
    background: var(--yellow);
    color: #1a3a20;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.agenda-info {
    padding: 20px;
}

.agenda-info h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.agenda-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================
   POR QUE PARTICIPAR
   ============================ */
.porque {
    background: linear-gradient(180deg, #0f2b1a 0%, #132e1c 100%);
    padding: 0 0 60px 0;
}

.porque-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.porque-card {
    background: linear-gradient(180deg, #183825 0%, #122d1b 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.porque-card:hover {
    border-color: rgba(212, 160, 23, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.porque-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 160, 23, 0.1);
    border: 2px solid var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px;
    color: var(--yellow);
}

.porque-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.porque-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================
   APROVADOS
   ============================ */
.aprovados {
    background: linear-gradient(180deg, #132e1c 0%, #0f2b1a 100%);
    padding: 0 0 60px 0;
}

.aprovados-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.aprovado-card {
    background: linear-gradient(180deg, #183825 0%, #122d1b 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.aprovado-card:hover {
    border-color: rgba(212, 160, 23, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.aprovado-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.aprovado-avatar {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    border: 3px solid var(--yellow) !important;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.aprovado-avatar img {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    object-position: top center !important;
    display: block !important;
}

.aprovado-info {
    display: flex;
    flex-direction: column;
}

.aprovado-info strong {
    font-size: 15px;
    font-weight: 700;
}

.aprovado-info span {
    font-size: 12px;
    color: var(--green-accent);
    font-weight: 600;
}

.aprovado-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

/* ============================
   FORMULÁRIO DE INSCRIÇÃO
   ============================ */
.inscricao {
    background: linear-gradient(180deg, #0f2b1a 0%, #132e1c 50%, #0f2b1a 100%);
    padding: 0 0 60px 0;
}

.form-container {
    max-width: 560px;
    margin: 0 auto;
    background: linear-gradient(180deg, #183825 0%, #122d1b 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
}

.form-header-banner {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    padding: 20px 24px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: white;
}

.form-header-banner i {
    margin-right: 8px;
    font-size: 18px;
}

.form-header-meta {
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
    opacity: 0.9;
}

.form-progress-container {
    padding: 20px 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.form-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--yellow), var(--yellow-light));
    border-radius: 4px;
    transition: width 0.5s ease;
}

.form-progress-text {
    font-size: 12px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.form-progress-percent {
    font-size: 13px;
    font-weight: 700;
    color: var(--yellow);
}

.form-step-label {
    padding: 16px 24px 0;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-step-label i {
    color: var(--yellow);
}

form {
    padding: 16px 24px 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: var(--white);
    font-size: 14px;
    font-family: var(--font);
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus {
    border-color: var(--yellow);
    background: rgba(255, 255, 255, 0.08);
}

.btn-form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: #1a3a20;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--font);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
}

.form-disclaimer {
    padding: 0 24px 24px;
    font-size: 11px;
    color: var(--gray);
    line-height: 1.5;
    text-align: center;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-secondary);
}

/* ============================
   QUIZ INTERATIVO
   ============================ */
.quiz-container {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(180deg, #183825 0%, #122d1b 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
}

.quiz-header-banner {
    background: linear-gradient(135deg, #d4a017 0%, #b8860b 100%);
    padding: 20px 24px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #1a3a20;
}

.quiz-header-banner i {
    margin-right: 8px;
    font-size: 18px;
}

.quiz-header-meta {
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
    opacity: 0.8;
}

.quiz-progress-container {
    padding: 20px 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.quiz-progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--yellow), var(--yellow-light));
    border-radius: 4px;
    transition: width 0.5s ease;
}

.quiz-progress-text {
    font-size: 12px;
    color: var(--text-secondary);
    white-space: nowrap;
}

/* Quiz Steps */
.quiz-step {
    display: none;
    padding: 28px 24px;
    animation: quizFadeIn 0.4s ease;
}

.quiz-step.active {
    display: block;
}

@keyframes quizFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.quiz-question {
    text-align: center;
    margin-bottom: 24px;
}

.quiz-emoji {
    font-size: 48px;
    margin-bottom: 12px;
}

.quiz-question h3 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 8px;
}

.quiz-hint {
    font-size: 13px;
    color: var(--text-secondary);
    font-style: italic;
}

/* Quiz Options */
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.quiz-option:hover {
    background: rgba(212, 160, 23, 0.1);
    border-color: var(--yellow);
    transform: translateX(4px);
}

.quiz-option.selected {
    background: rgba(212, 160, 23, 0.15);
    border-color: var(--yellow);
    box-shadow: 0 0 15px rgba(212, 160, 23, 0.2);
}

.quiz-option-icon {
    font-size: 22px;
    flex-shrink: 0;
}

/* Quiz Result */
.quiz-result-content {
    padding: 32px 24px 0;
}

.quiz-result-icon {
    text-align: center;
    font-size: 56px;
    margin-bottom: 12px;
}

.quiz-result-title {
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    color: var(--yellow);
    margin-bottom: 20px;
    line-height: 1.3;
}

.quiz-result-message {
    margin-bottom: 24px;
}

.quiz-result-message p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.quiz-result-message strong {
    color: var(--white);
}

/* Comparison */
.quiz-result-highlight {
    margin-bottom: 24px;
}

.quiz-result-compare {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 20px;
}

.compare-before, .compare-after {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.compare-label {
    font-size: 13px;
    font-weight: 700;
}

.compare-before .compare-label {
    color: #ff6b6b;
}

.compare-after .compare-label {
    color: #51cf66;
}

.compare-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.compare-arrow {
    color: var(--yellow);
    font-size: 20px;
    flex-shrink: 0;
}

/* Urgency */
.quiz-result-urgency {
    background: rgba(212, 160, 23, 0.08);
    border-left: 3px solid var(--yellow);
    border-radius: 0 12px 12px 0;
    padding: 20px;
    margin-bottom: 24px;
}

.quiz-result-urgency p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.quiz-result-urgency p:last-child {
    margin-bottom: 0;
}

.quiz-result-urgency strong {
    color: var(--white);
}

.quiz-result-urgency em {
    color: var(--yellow);
}

/* Price */
.quiz-result-price {
    text-align: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    margin-bottom: 28px;
}

.quiz-price-old {
    display: block;
    font-size: 14px;
    color: #ff6b6b;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.quiz-price-now {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1.1;
    margin-bottom: 8px;
}

.quiz-price-discount {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #1a3a20;
    background: var(--yellow);
    padding: 4px 14px;
    border-radius: 20px;
}

/* Quiz Form Section */
.quiz-form-section {
    padding: 0 24px 28px;
}

.quiz-form-label {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quiz-form-label i {
    color: var(--yellow);
}

.btn-quiz-submit {
    background: linear-gradient(135deg, #ff6b35 0%, #e04e1a 100%) !important;
    font-size: 17px !important;
    padding: 18px !important;
    animation: quizPulse 2s ease-in-out infinite;
}

.btn-quiz-submit:hover {
    background: linear-gradient(135deg, #ff7b45 0%, #f05e2a 100%) !important;
}

@keyframes quizPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(255, 107, 53, 0); }
}

/* Trust Badges */
.quiz-trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.quiz-trust-badges span {
    font-size: 11px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.quiz-trust-badges i {
    color: var(--green-accent);
    font-size: 12px;
}

/* Quiz Responsive */
@media (max-width: 600px) {
    .quiz-result-compare {
        flex-direction: column;
        text-align: center;
    }
    .compare-arrow {
        transform: rotate(90deg);
    }
    .quiz-question h3 {
        font-size: 17px;
    }
    .quiz-price-now {
        font-size: 40px;
    }
    .quiz-trust-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================
   CTA FINAL
   ============================ */
.cta-final {
    background: linear-gradient(180deg, #0f2b1a 0%, #0a1f12 100%);
    padding: 80px 20px;
    text-align: center;
}

.cta-final h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 14px;
}

.cta-final p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* ============================
   FOOTER
   ============================ */
.footer {
    background: #091a0f;
    padding: 24px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer p {
    font-size: 12px;
    color: var(--gray);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
    .salary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-subtitle br {
        display: none;
    }

    .section-title {
        font-size: 26px;
    }

    .salary-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .agenda-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .porque-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .aprovados-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .countdown-container {
        gap: 4px;
        padding: 10px 16px;
    }

    .countdown-item {
        padding: 6px 10px;
    }

    .countdown-value {
        font-size: 18px;
    }

    .btn-cta {
        font-size: 14px;
        padding: 14px 28px;
    }

    .cta-final h2 {
        font-size: 28px;
    }

    .header-inner {
        padding: 0 4px;
    }

    .btn-header {
        padding: 6px 16px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 22px;
    }

    .countdown-item {
        padding: 5px 8px;
    }

    .countdown-value {
        font-size: 16px;
    }

    .salary-total {
        font-size: 18px;
    }
}

/* ============================
   DECORATIVE ELEMENTS
   ============================ */
.salarios .container,
.agenda .container,
.porque .container,
.aprovados .container,
.inscricao .container {
    position: relative;
}

/* Diagonal stripe decoration */
.hero::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(212, 160, 23, 0.03) 10px,
        rgba(212, 160, 23, 0.03) 20px
    );
    pointer-events: none;
}

/* Section divider lines */
.salarios::before,
.agenda::before,
.porque::before,
.aprovados::before,
.inscricao::before {
    content: '';
    display: block;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.2), transparent);
    margin-bottom: 0;
}

/* ============================
   PRICE TAG IN FORM
   ============================ */
.form-price-tag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 20px;
}

.price-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.price-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--yellow);
}

/* ============================
   PIX MODAL
   ============================ */
.pix-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pix-modal {
    background: linear-gradient(180deg, #183825 0%, #122d1b 100%);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 20px;
    max-width: 460px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.pix-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.pix-modal-close:hover {
    background: rgba(229, 62, 62, 0.6);
}

.pix-modal-header {
    text-align: center;
    padding: 30px 24px 16px;
}

.pix-modal-header i {
    font-size: 48px;
    color: var(--green-accent);
    margin-bottom: 12px;
}

.pix-modal-header h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}

.pix-modal-header p {
    font-size: 14px;
    color: var(--text-secondary);
}

.pix-modal-body {
    padding: 0 24px 30px;
}

.pix-qr-container {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.pix-qr-img {
    width: 280px;
    height: 280px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 12px;
}

.pix-qr-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pix-qr-img i {
    font-size: 40px;
    color: var(--green-accent);
}

.pix-value-badge {
    text-align: center;
    margin-bottom: 20px;
}

.pix-value-badge span {
    display: inline-block;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--green-accent);
    font-size: 16px;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 50px;
}

.pix-value-badge strong {
    font-size: 20px;
    font-weight: 800;
}

.pix-copy-container {
    margin-bottom: 16px;
}

.pix-copy-container label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.pix-copy-field {
    display: flex;
    gap: 8px;
}

.pix-copy-field input {
    flex: 1;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: var(--white);
    font-size: 12px;
    font-family: var(--font);
    outline: none;
    min-width: 0;
}

.pix-copy-btn {
    padding: 12px 18px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: #1a3a20;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.pix-copy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.4);
}

.pix-copy-btn.copied {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.pix-copy-feedback {
    font-size: 12px;
    color: var(--green-accent);
    font-weight: 600;
    margin-top: 6px;
}

.pix-timer {
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.04);
    padding: 10px;
    border-radius: 8px;
}

.pix-timer i {
    color: var(--yellow);
    margin-right: 4px;
}

.pix-timer strong {
    color: var(--yellow);
}

/* Check Payment Button */
.pix-check-payment {
    margin-top: 16px;
    text-align: center;
    animation: pixFadeIn 0.5s ease;
}

@keyframes pixFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.pix-check-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--font);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pix-check-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.pix-check-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Verifying spinner */
.pix-verifying {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    margin-top: 12px;
    color: var(--yellow);
    font-size: 14px;
    font-weight: 600;
}

.pix-verifying-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(212, 160, 23, 0.2);
    border-top-color: var(--yellow);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success message */
.pix-success {
    text-align: center;
    padding: 32px 24px;
    animation: pixFadeIn 0.6s ease;
}

.pix-success-icon {
    font-size: 64px;
    color: #25D366;
    margin-bottom: 16px;
}

.pix-success-icon i {
    filter: drop-shadow(0 4px 12px rgba(37, 211, 102, 0.4));
}

.pix-success h3 {
    font-size: 22px;
    font-weight: 800;
    color: #25D366;
    margin-bottom: 16px;
}

.pix-success p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.pix-success-sub {
    font-size: 14px;
    color: var(--yellow);
    font-weight: 600;
    margin-top: 8px;
}

/* Not found message */
.pix-not-found {
    text-align: center;
    padding: 12px 16px;
    margin-top: 12px;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 10px;
    animation: pixFadeIn 0.4s ease;
}

.pix-not-found p {
    font-size: 13px;
    color: #ff6b6b;
    margin: 0;
}

.pix-not-found i {
    margin-right: 6px;
}

/* ============================
   LOADING OVERLAY
   ============================ */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(212, 160, 23, 0.2);
    border-top-color: var(--yellow);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-content p {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}
