/* ============================================
   CRIS FREITAS NUMEROLOGIA - CSS PRINCIPAL
   ============================================ */

/* ============================================
   1. VARIÁVEIS CSS (CORES E ESTILOS GLOBAIS)
   ============================================ */
:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #c9a84c;
    --accent-dark: #a8893a;
    --accent-light: #e8d5a3;
    --accent-glow: #f0c75e;
    --white: #ffffff;
    --light: #f8f6f0;
    --text: #1a1a2e;
    --text-medium: #3d3d4e;
    --text-light: #5a5a6e;
    --gradient-gold: linear-gradient(135deg, #c9a84c 0%, #f0d78c 50%, #c9a84c 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --gradient-hero: linear-gradient(180deg, #0a0a1a 0%, #1a1a2e 30%, #16213e 70%, #1a1a2e 100%);
    --shadow: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-gold: 0 10px 40px rgba(201, 168, 76, 0.3);
}

/* ============================================
   2. RESET E BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background: var(--white);
    line-height: 1.6;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   3. PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-symbol {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(201, 168, 76, 0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.preloader-text {
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-top: 20px;
    letter-spacing: 3px;
}

/* ============================================
   4. NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-logo span {
    color: var(--white);
    font-weight: 300;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-gold) !important;
    color: var(--primary) !important;
    padding: 10px 25px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.nav-cta::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   5. HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    50% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero-constellation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(15, 52, 96, 0.1) 0%, transparent 50%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.4);
    padding: 10px 22px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.hero-badge i {
    color: var(--accent);
    font-size: 0.8rem;
}

.hero-badge span {
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-title .gold {
    color: var(--accent);
    display: block;
}

.hero-title .italic {
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 520px;
    font-weight: 300;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
    list-style: none;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.hero-benefit i {
    color: var(--accent);
    font-size: 1rem;
    width: 20px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================
   6. BOTÕES GLOBAIS
   ============================================ */
.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary);
    padding: 18px 38px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    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: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 168, 76, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 18px 38px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(201, 168, 76, 0.08);
}

/* ============================================
   7. HERO IMAGE
   ============================================ */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 60px 40px;
    flex-direction: column;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 480px;
}

.hero-image-frame {
    width: 100%;
    height: 100%;
    border-radius: 190px 190px 90px 90px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(201, 168, 76, 0.4);
    box-shadow: 0 25px 70px rgba(0,0,0,0.4);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-image-glow {
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    border-radius: 220px 220px 120px 120px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.25) 0%, transparent 65%);
    z-index: -1;
    filter: blur(30px);
}

.hero-decoration {
    position: absolute;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    z-index: -1;
}

.hero-decoration.deco-1 {
    width: 100px;
    height: 100px;
    top: 20px;
    right: -20px;
    border-color: rgba(201, 168, 76, 0.2);
    animation: rotateDeco 20s linear infinite;
}

.hero-decoration.deco-2 {
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: -10px;
    background: rgba(201, 168, 76, 0.1);
    border: none;
    animation: pulseDeco 3s ease-in-out infinite;
}

@keyframes rotateDeco {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulseDeco {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

.hero-credentials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.credential-item {
    background: rgba(26, 26, 46, 0.7);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.credential-item i {
    color: var(--accent);
    font-size: 0.85rem;
}

.credential-item span {
    color: rgba(255,255,255,0.95);
    font-size: 0.8rem;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--accent);
    font-weight: 700;
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 5px;
}

/* ============================================
   8. ESTILOS DE SEÇÕES GLOBAIS
   ============================================ */
.section {
    padding: 120px 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-dark);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--accent-dark);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.section-title .gold {
    color: var(--accent-dark);
}

.section-subtitle {
    color: var(--text-medium);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* ============================================
   9. SEÇÃO CURSO (PRINCIPAL)
   ============================================ */
.curso {
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.curso::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.curso::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.curso-container {
    position: relative;
    z-index: 2;
}

.curso-header {
    text-align: center;
    margin-bottom: 70px;
}

.curso-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-gold);
    color: var(--primary);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: var(--shadow-gold);
}

.curso-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.curso-image {
    position: relative;
}

.curso-image-main {
    width: 100%;
    max-width: 520px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(26, 26, 46, 0.25);
    position: relative;
    background: var(--gradient-dark);
    aspect-ratio: 4/5;
}

.curso-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.curso-image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--primary);
    padding: 15px 25px;
    border-radius: 15px;
    font-weight: 700;
    box-shadow: var(--shadow-gold);
    z-index: 2;
}

.curso-image-badge .small {
    font-size: 0.75rem;
    display: block;
    font-weight: 600;
    letter-spacing: 1px;
}

.curso-image-badge .big {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    display: block;
    line-height: 1;
    margin-top: 3px;
}

.curso-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.curso-content h3 .gold {
    color: var(--accent-dark);
}

.curso-content .lead {
    color: var(--text-medium);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 400;
}

.curso-modules {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.curso-modules h4 {
    font-family: 'Playfair Display', serif;
    color: var(--text);
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.curso-modules h4 i {
    color: var(--accent-dark);
}

.curso-modules ul {
    list-style: none;
}

.curso-modules ul li {
    padding: 10px 0;
    color: var(--text-medium);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.curso-modules ul li:last-child {
    border-bottom: none;
}

.curso-modules ul li i {
    color: var(--accent-dark);
    font-size: 0.9rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.curso-modules ul li strong {
    color: var(--text);
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.curso-cta-box {
    background: var(--gradient-dark);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.curso-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
}

.curso-cta-box > * {
    position: relative;
    z-index: 2;
}

.curso-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.curso-cta-title .gold {
    color: var(--accent);
}

.curso-cta-text {
    color: rgba(255,255,255,0.85);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.7;
}

.curso-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.curso-feature {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 168, 76, 0.15);
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.curso-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: rgba(201, 168, 76, 0.4);
}

.curso-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 1.5rem;
    box-shadow: var(--shadow-gold);
}

.curso-feature h4 {
    font-family: 'Playfair Display', serif;
    color: var(--text);
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.curso-feature p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   10. SEÇÃO SOBRE
   ============================================ */
.about {
    background: var(--white);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-container {
    position: relative;
    padding: 20px;
}

.about-image {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.about-experience {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--gradient-gold);
    color: var(--primary);
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-gold);
    z-index: 2;
}

.about-experience .number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.about-experience .label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 5px;
    display: block;
}

.about-content {
    padding: 20px 0;
}

.about-content .section-tag {
    justify-content: flex-start;
}

.about-content .section-tag::before {
    display: none;
}

.about-content .section-title {
    text-align: left;
    font-size: 2.5rem;
}

.about-text {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
    font-weight: 400;
}

.about-text strong {
    color: var(--text);
    font-weight: 600;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature i {
    color: var(--accent-dark);
    font-size: 0.9rem;
}

.about-feature span {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 600;
}

/* ============================================
   11. SEÇÃO PROCESSO (Como Funciona)
   ============================================ */

/* --- Classes em inglês (legado: process) --- */
.process {
    background: var(--gradient-dark);
    position: relative;
}

.process .section-title {
    color: var(--white);
}

.process .section-tag {
    color: var(--accent);
}

.process .section-tag::before,
.process .section-tag::after {
    background: var(--accent);
}

.process .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step .step-number {
    width: 90px;
    height: 90px;
    background: rgba(201, 168, 76, 0.15);
    border: 2px solid rgba(201, 168, 76, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 700;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.process-step:hover .step-number {
    background: var(--gradient-gold);
    color: var(--primary);
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.process-step h3 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.process-step p {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- Classes em português (HTML atual: processo) --- */
.processo {
    background: var(--gradient-dark);
    position: relative;
}

.processo .section-title {
    color: var(--white);
}

.processo .section-tag {
    color: var(--accent);
}

.processo .section-tag::before,
.processo .section-tag::after {
    background: var(--accent);
}

.processo .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.processo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.processo-grid::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    z-index: 0;
}

.processo-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.processo-step .step-number {
    width: 90px;
    height: 90px;
    background: rgba(201, 168, 76, 0.15);
    border: 2px solid rgba(201, 168, 76, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 700;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.processo-step:hover .step-number {
    background: var(--gradient-gold);
    color: var(--primary);
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.processo-step h3 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.processo-step p {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   12. SEÇÃO MAPA NUMEROLÓGICO
   ============================================ */
.mapa-section {
    background: var(--gradient-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.mapa-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}

.mapa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mapa-content .section-tag {
    color: var(--accent);
    justify-content: flex-start;
}

.mapa-content .section-tag::before {
    display: none;
}

.mapa-content .section-tag::after {
    background: var(--accent);
}

.mapa-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.mapa-content h2 .gold {
    color: var(--accent);
}

.mapa-content p {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.mapa-features {
    list-style: none;
    margin-bottom: 35px;
}

.mapa-features li {
    padding: 10px 0;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
}

.mapa-features li i {
    color: var(--accent);
    font-size: 0.9rem;
}

.mapa-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.mapa-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 30px 70px rgba(0,0,0,0.3);
    position: relative;
    text-align: center;
}

.mapa-card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 2rem;
    box-shadow: var(--shadow-gold);
}

.mapa-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.mapa-card .subtitle {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.mapa-card-list {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.mapa-card-list li {
    padding: 8px 0;
    color: var(--text);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mapa-card-list li:last-child {
    border-bottom: none;
}

.mapa-card-list li i {
    color: var(--accent-dark);
    font-size: 0.8rem;
}

.btn-mapa {
    background: var(--primary);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-mapa:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* ============================================
   13. SEÇÃO RESULTADOS
   ============================================ */
.results {
    background: var(--white);
    padding: 80px 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.result-card {
    text-align: center;
    padding: 45px 20px;
    border-radius: 20px;
    background: var(--light);
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.result-card:hover {
    background: var(--primary);
    border-color: var(--accent);
}

.result-card:hover .result-number,
.result-card:hover .result-label {
    color: var(--white);
}

.result-card:hover .result-number {
    color: var(--accent);
}

.result-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--text);
    font-weight: 700;
    transition: color 0.3s ease;
}

.result-label {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

/* ============================================
   14. SEÇÃO DEPOIMENTOS
   ============================================ */
.testimonials {
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(26, 26, 46, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(26, 26, 46, 0.12);
    border-color: rgba(201, 168, 76, 0.3);
}

.testimonial-stars {
    color: var(--accent-dark);
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    color: var(--text);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    font-weight: 400;
}

.testimonial-text::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--accent-dark);
    opacity: 0.25;
    position: absolute;
    top: -20px;
    left: -5px;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.testimonial-name {
    font-weight: 700;
    color: var(--text);
    font-size: 0.95rem;
}

.testimonial-role {
    color: var(--text-medium);
    font-size: 0.82rem;
    margin-top: 2px;
}

/* ============================================
   15. SEÇÃO FAQ (com <details>/<summary>)
   ============================================ */
.faq {
    background: var(--light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(26, 26, 46, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.1);
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(201, 168, 76, 0.3);
}

.faq-item[open] {
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: 0 10px 30px rgba(26, 26, 46, 0.1);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    gap: 20px;
}

.faq-question:hover {
    background: rgba(201, 168, 76, 0.04);
}

.faq-question h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: var(--accent-dark);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.faq-item[open] .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px 25px;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============================================
   16. CTA FINAL
   ============================================ */
.cta-section {
    background: var(--gradient-dark);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.4);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 25px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-title .gold {
    color: var(--accent);
}

.cta-text {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 20px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.cta-guarantee {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

.cta-guarantee i {
    color: var(--accent);
}

/* ============================================
   17. FOOTER
   ============================================ */
.footer {
    background: #0a0a15;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.footer-column h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
}

/* ============================================
   18. BOTÕES FLUTUANTES
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--accent);
    color: var(--primary);
}

/* ============================================
   19. RESPONSIVIDADE - TABLETS (até 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle, 
    .hero-benefits {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-benefits {
        align-items: flex-start;
        max-width: 400px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        padding: 30px;
    }

    .hero-image-wrapper {
        max-width: 320px;
        height: 420px;
    }

    .curso-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .curso-image {
        display: flex;
        justify-content: center;
    }

    .curso-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mapa-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .mapa-content .section-tag {
        justify-content: center;
    }

    .mapa-features li {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-content .section-title,
    .about-content .section-tag {
        text-align: center;
        justify-content: center;
    }

    .about-content .section-tag::before {
        display: block;
    }

    .about-image-container {
        display: flex;
        justify-content: center;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-steps::before {
        display: none;
    }

    .processo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .processo-grid::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   20. RESPONSIVIDADE - MOBILE (até 768px)
   ============================================ */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: right 0.4s ease;
        z-index: 998;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        z-index: 999;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-image-wrapper {
        max-width: 280px;
        height: 380px;
    }

    .hero-decoration.deco-1 {
        width: 70px;
        height: 70px;
    }

    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .curso-content h3 {
        font-size: 2.2rem;
    }

    .curso-features-grid {
        grid-template-columns: 1fr;
    }

    .curso-cta-box {
        padding: 30px 20px;
    }

    .curso-cta-title {
        font-size: 1.6rem;
    }

    .mapa-content h2 {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .processo-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        text-align: center;
        justify-content: center;
    }

    .about-experience {
        padding: 15px 20px;
    }

    .about-experience .number {
        font-size: 1.8rem;
    }

    .curso-image-badge {
        top: auto;
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
    }
    
    .curso-image-badge .small {
        font-size: 0.7rem;
    }
    
    .curso-image-badge .big {
        font-size: 1.4rem;
    }
}

/* ============================================
   21. RESPONSIVIDADE - MOBILE PEQUENO (até 480px)
   ============================================ */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-credentials {
        flex-direction: column;
        align-items: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2rem;
    }
}