/* =============================================
   LP Checklist Planejamento de Matrículas
   lp-checklist-matriculas.css
   ============================================= */

:root {
    --primary-color: #083FCF;
    --secondary-color: #FC7D55;
    --tertiary-color: #B073FF;
    --quaternary-color: #FFE4DC;
    --senary-color: #EFE2FF;
    --text-color: #1F2937;
    --text-light: #6b7280;
    --background-color: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 40px rgba(8,63,207,0.12);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    --font-family-headings: 'Outfit', sans-serif;
    --font-family-body: 'Nunito', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-family-body);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }

/* =============================================
   UTILITY
   ============================================= */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.title-accent      { color: var(--secondary-color); }
.title-accent-blue { color: var(--primary-color); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-family-headings);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--tertiary-color) 100%);
    color: #fff;
    padding: 0 var(--spacing-md);
    height: 56px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--tertiary-color) 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(252,125,85,0.35);
}

.btn-large {
    height: 60px;
    padding: 0 var(--spacing-lg);
    font-size: 1.05rem;
}

.btn-full { width: 100%; }

/* =============================================
   HERO
   ============================================= */
.em-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e50e8 50%, var(--tertiary-color) 100%);
    background-size: 200% 200%;
    animation: heroGradient 12s ease infinite;
    padding: var(--spacing-xxl) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@keyframes heroGradient {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}

.em-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(252,125,85,0.12) 0%, transparent 50%);
    pointer-events: none;
}

.em-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.em-hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

/* =============================================
   CHECKLIST MOCKUP (document preview)
   ============================================= */
.cl-doc-wrap {
    position: relative;
    width: 340px;
}

/* Sombra flutuante */
.cl-doc-wrap::before {
    content: '';
    position: absolute;
    inset: 16px 20px -20px 20px;
    background: rgba(0,0,0,0.28);
    filter: blur(24px);
    border-radius: 8px;
    z-index: 0;
    pointer-events: none;
}

.cl-doc-mockup {
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
    transform-origin: center center;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow:
        0 2px 0 0 #d0cece,
        0 4px 0 0 #dad7d7,
        0 6px 0 0 #e4e1e1;
}

.cl-doc-wrap:hover .cl-doc-mockup {
    transform: perspective(1200px) rotateY(-1deg) rotateX(0.5deg) scale(1.02);
}

/* Shine overlay */
.cl-doc-mockup::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        rgba(255,255,255,0.16) 0%,
        rgba(255,255,255,0.04) 25%,
        transparent 55%,
        rgba(0,0,0,0.03) 80%,
        rgba(0,0,0,0.07) 100%
    );
    pointer-events: none;
    z-index: 10;
}

/* Capa do documento */
.cl-doc-cover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    padding: 28px 24px 24px;
    position: relative;
    overflow: hidden;
}

.cl-doc-cover::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.cl-doc-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.cl-doc-logo img {
    height: 19px;
    width: auto;
    display: block;
}

.cl-doc-badge-mini {
    display: inline-block;
    background: rgba(252,125,85,0.3);
    border: 1px solid rgba(252,125,85,0.5);
    color: #FFCAB3;
    font-family: var(--font-family-headings);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 10px;
    margin-bottom: 10px;
    width: fit-content;
}

.cl-doc-title-mini {
    font-family: var(--font-family-headings);
    font-size: 1.35rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.cl-doc-title-mini span { color: #FC7D55; }

.cl-doc-subtitle-mini {
    font-family: var(--font-family-body);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin-bottom: 16px;
}

.cl-doc-pills {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.cl-doc-pill {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-family: var(--font-family-body);
    font-size: 0.62rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 10px;
}

/* Preview de itens do checklist */
.cl-doc-body {
    background: #fafbff;
    padding: 16px 20px 20px;
}

.cl-doc-section-label {
    font-family: var(--font-family-headings);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cl-doc-section-label::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--secondary-color);
    flex-shrink: 0;
}

.cl-doc-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cl-doc-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 7px;
    animation: clItemIn 0.5s ease both;
}

.cl-doc-item:nth-child(1) { animation-delay: 0.1s; }
.cl-doc-item:nth-child(2) { animation-delay: 0.2s; }
.cl-doc-item:nth-child(3) { animation-delay: 0.3s; }
.cl-doc-item:nth-child(4) { animation-delay: 0.4s; }
.cl-doc-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes clItemIn {
    from { opacity: 0; transform: translateX(-8px); }
    to   { opacity: 1; transform: translateX(0); }
}

.cl-doc-check {
    width: 14px; height: 14px;
    border-radius: 3px;
    flex-shrink: 0;
}

.cl-doc-check.empty {
    border: 1.5px solid #d1d5db;
    background: white;
}

.cl-doc-check.done {
    background: #10B981;
    border: 1.5px solid #10B981;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cl-doc-check.done::after {
    content: '✓';
    color: white;
    font-size: 8px;
    font-weight: 800;
}

.cl-doc-line {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: #e5e7eb;
}

.cl-doc-line.short { flex: 0.65; }

.cl-doc-tag {
    width: 24px; height: 10px;
    border-radius: 3px;
    flex-shrink: 0;
}

.cl-doc-tag.red    { background: #FEE2E2; }
.cl-doc-tag.yellow { background: #FEF3C7; }
.cl-doc-tag.green  { background: #D1FAE5; }

/* Badge ─── */
.em-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.28);
    backdrop-filter: blur(8px);
    color: #fff;
    font-family: var(--font-family-headings);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 30px;
    width: fit-content;
}

.em-hero-title {
    font-family: var(--font-family-headings);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.08;
    color: #fff;
}

.em-hero-subtitle {
    font-family: var(--font-family-body);
    font-size: 1.05rem;
    line-height: 1.72;
    color: rgba(255,255,255,0.85);
    max-width: 480px;
    margin-top: -0.5rem;
}

.em-hero-subtitle strong {
    color: #fff;
    font-weight: 700;
}

.em-hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    margin-top: var(--spacing-sm);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--primary-color);
    font-family: var(--font-family-headings);
    font-size: 1rem;
    font-weight: 700;
    padding: 0 var(--spacing-lg);
    height: 56px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.20);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.28);
}

.em-hero-cta-note {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-family-body);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.70);
    margin: 0;
}

.em-hero-right {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    justify-content: center;
    color: #fff;
    min-width: 0;
}

/* ─── Hero stats strip ─── */
.em-hero-stats {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xs);
}

.em-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.em-hero-stat-num {
    font-family: var(--font-family-headings);
    font-size: 1.5rem;
    font-weight: 800;
    color: #FC7D55;
    line-height: 1;
}

.em-hero-stat-label {
    font-family: var(--font-family-body);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.4;
}

.em-hero-stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.2);
    align-self: stretch;
}

/* =============================================
   PAIN SECTION
   ============================================= */
.em-pains {
    padding: var(--spacing-xxl) 0;
    background: #fff;
}

.em-section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Wrapper em bloco: margem vertical em inline-flex (pill) é pouco confiável no layout */
.em-section-header .em-section-kicker {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: var(--spacing-xl);
}

.em-section-header > .em-section-title {
    margin-top: 0 !important;
    padding-top: 0 !important;
    margin-bottom: var(--spacing-sm);
}

.em-section-header .em-section-subtitle {
    margin: 0;
}

.em-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--senary-color);
    color: var(--primary-color);
    font-family: var(--font-family-headings);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 30px;
}

.em-section-tag--warm {
    background: var(--quaternary-color);
    color: #b94a22;
}

.em-section-title {
    font-family: var(--font-family-headings);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
    max-width: 620px;
}

.em-section-subtitle {
    font-family: var(--font-family-body);
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 580px;
    line-height: 1.7;
}

.em-pains-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.em-pain-card {
    background: #fafbff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
}

.em-pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.em-pain-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--quaternary-color) 0%, #ffd0bc 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
    transition: transform 0.3s ease;
}

.em-pain-card:hover .em-pain-icon {
    transform: scale(1.08);
}

.em-pain-title {
    font-family: var(--font-family-headings);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
    margin-bottom: var(--spacing-xs);
}

.em-pain-desc {
    font-family: var(--font-family-body);
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* =============================================
   TOPICS SECTION
   ============================================= */
.em-topics {
    padding: var(--spacing-xxl) 0;
    background: #fafbff;
}

.em-topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.em-topic-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.em-topic-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--tertiary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.em-topic-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.em-topic-card:hover::before {
    transform: scaleX(1);
}

.em-topic-number {
    font-family: var(--font-family-headings);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.em-topic-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: var(--spacing-sm);
    transition: transform 0.3s ease;
}

.em-topic-card:hover .em-topic-icon {
    transform: scale(1.08);
}

.em-topic-title {
    font-family: var(--font-family-headings);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
    margin-bottom: var(--spacing-xs);
}

.em-topic-desc {
    font-family: var(--font-family-body);
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
}

.em-topics-cta {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-xl);
}

/* =============================================
   FLUXO PÓS-CADASTRO
   ============================================= */
.cl-flow {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, #fafbff 0%, #f4f0ff 100%);
}

.cl-flow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.cl-flow-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
}

.cl-flow-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: rgba(8, 63, 207, 0.25);
    transform: translateY(-3px);
}

.cl-flow-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    color: #fff;
    font-family: var(--font-family-headings);
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.cl-flow-title {
    font-family: var(--font-family-headings);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: var(--spacing-xs);
    line-height: 1.25;
}

.cl-flow-desc {
    font-family: var(--font-family-body);
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.62;
}

/* =============================================
   CHECKLIST PREVIEW STRIP
   ============================================= */
.cl-preview-strip {
    padding: var(--spacing-xxl) 0;
    background: #fff;
}

.cl-etapas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.cl-etapa-card {
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    border: 1.5px solid var(--border-color);
    transition: all 0.3s ease;
}

.cl-etapa-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.cl-etapa-card.c1 { border-color: #BFD0F7; background: #EBF1FF; }
.cl-etapa-card.c2 { border-color: #D6B8F7; background: var(--senary-color); }
.cl-etapa-card.c3 { border-color: #F9CDB8; background: var(--quaternary-color); }
.cl-etapa-card.c4 { border-color: #86efac; background: #f0fdf4; }
.cl-etapa-card.c5 { border-color: #fde68a; background: #fefce8; }
.cl-etapa-card.c6 { border-color: #cbd5e1; background: #f8fafc; }

.cl-etapa-num {
    font-family: var(--font-family-headings);
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.c1 .cl-etapa-num { color: var(--primary-color); }
.c2 .cl-etapa-num { color: var(--tertiary-color); }
.c3 .cl-etapa-num { color: var(--secondary-color); }
.c4 .cl-etapa-num { color: #16a34a; }
.c5 .cl-etapa-num { color: #d97706; }
.c6 .cl-etapa-num { color: #475569; }

.cl-etapa-name {
    font-family: var(--font-family-headings);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 6px;
}

.cl-etapa-desc {
    font-family: var(--font-family-body);
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.55;
}

.cl-etapa-count {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    font-family: var(--font-family-headings);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Nunito mais leve nas seções dores / fluxo / prévia das etapas */
body.lp-checklist-matriculas .em-pains .em-section-subtitle,
body.lp-checklist-matriculas .cl-flow .em-section-subtitle,
body.lp-checklist-matriculas .cl-preview-strip .em-section-subtitle {
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.lp-checklist-matriculas .em-pains .em-pain-desc,
body.lp-checklist-matriculas .cl-flow .cl-flow-desc,
body.lp-checklist-matriculas .cl-preview-strip .cl-etapa-desc {
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =============================================
   FORM SECTION
   ============================================= */
.em-form-section {
    background: linear-gradient(160deg, #f8f7ff 0%, #eeeafa 100%);
    padding: var(--spacing-xxl) 0;
}

.em-form-section .container {
    max-width: 860px;
}

.em-form-layout {
    display: flex;
    justify-content: center;
}

.em-form-body {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    border-radius: 20px;
    padding: var(--spacing-xl) var(--spacing-xl);
    box-shadow: 0 24px 60px rgba(8,63,207,0.22);
}

.em-form-body .form-group label {
    color: rgba(255,255,255,0.92);
}

.em-form-body .form-required {
    color: #ffb347;
}

.em-form-body .form-group input,
.em-form-body .form-group select {
    background-color: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.25);
    color: #fff;
}

.em-form-body .form-group input::placeholder {
    color: rgba(255,255,255,0.45);
}

.em-form-body .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.em-form-body .form-group select option {
    background: #3a3dbf;
    color: #fff;
}

.em-form-body .form-group input:focus,
.em-form-body .form-group select:focus {
    background-color: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.6);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.12);
}

.em-form-body .em-form-disclaimer {
    color: rgba(255,255,255,0.6);
}

.em-form-header {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255,255,255,0.18);
    text-align: center;
}

.em-form-header-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-family: var(--font-family-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 0.6rem;
}

.em-form-header-title {
    font-family: var(--font-family-headings);
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 0.4rem;
}

.em-form-header-sub {
    font-family: var(--font-family-body);
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.72);
    margin: 0;
}

.em-form-body .waitlist-form .btn-primary {
    background: linear-gradient(90deg, #ff7d54 0%, #e8571a 100%);
    border: none;
    box-shadow: 0 6px 24px rgba(232,87,26,0.35);
}

/* =============================================
   FORM ELEMENTS
   ============================================= */
.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label {
    font-family: var(--font-family-body);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-color);
}

.form-required {
    color: var(--secondary-color);
    font-weight: 700;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 48px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0 var(--spacing-sm);
    font-family: var(--font-family-body);
    font-size: 0.95rem;
    color: var(--text-color);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(8,63,207,0.1);
}

.form-group input::placeholder { color: #9ca3af; }

.input-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.1) !important;
}

.field-error-msg {
    font-size: 0.78rem;
    color: #ef4444;
    font-family: var(--font-family-body);
    margin-top: 0.1rem;
}

.em-form-disclaimer {
    font-family: var(--font-family-body);
    font-size: 0.78rem;
    color: var(--text-light);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: var(--spacing-xs);
}

.em-form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.em-form-span-2 { grid-column: 1 / -1; }

.waitlist-form .btn-primary {
    margin-top: var(--spacing-xs);
    font-size: 1rem;
    height: 56px;
}

.waitlist-form .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .em-hero-grid { gap: var(--spacing-lg); }
    .em-hero-title { font-size: 2.4rem; }
    .cl-doc-wrap { width: 290px; }
    .em-topics-grid,
    .em-pains-grid { grid-template-columns: repeat(2, 1fr); }
    .cl-etapas-grid { grid-template-columns: repeat(2, 1fr); }
    .cl-flow-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .em-hero {
        padding: var(--spacing-xl) 0 var(--spacing-xxl);
        min-height: auto;
    }

    .em-hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .em-hero-left { order: 1; }

    .em-hero-right {
        order: 0;
        align-items: center;
        text-align: center;
    }

    .em-hero-ctas { align-items: center; }
    .em-hero-stats { justify-content: center; }
    .em-hero-title { font-size: 1.9rem; }
    .em-hero-subtitle { font-size: 1rem; }

    .cl-doc-wrap { width: 260px; }

    .em-form-body { padding: var(--spacing-lg) var(--spacing-md); }
    .em-section-title { font-size: 1.75rem; }

    .em-pains-grid,
    .em-topics-grid { grid-template-columns: 1fr; gap: var(--spacing-md); }

    .cl-etapas-grid { grid-template-columns: 1fr; }
    .cl-flow-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .container { padding: 0 var(--spacing-sm); }
    .em-hero-title { font-size: 1.65rem; }
    .cl-doc-wrap { width: 220px; }
    .em-topics-grid { grid-template-columns: 1fr; }
    .em-form-grid-2 { grid-template-columns: 1fr; }
    .em-section-title { font-size: 1.5rem; }
}
