/**
 * STYLE.CSS - Fabi Felintro Trainer
 * Design premium preto + dourado
 * Redesign 2026
 */

/* ===================================
   CSS VARIABLES
   =================================== */

:root {
    /* Cores Primárias */
    --primary-black: #000000;
    --secondary-dark: #1a1a1a;
    --tertiary-dark: #0f0f0f;
    --card-bg: #111111;

    /* Cores Douradas (Accent) */
    --accent-gold: #D4AF37;
    --accent-gold-light: #F4E4C1;
    --accent-gold-dark: #B8960C;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #B8960C 100%);
    --gold-glow: rgba(212, 175, 55, 0.25);

    /* Cores de Texto */
    --text-white: #FFFFFF;
    --text-gray: #A0A0A0;
    --text-gray-light: #B0B0B0;
    --text-gray-dark: #666666;

    /* Cores de Estado */
    --success-green: #22C55E;
    --error-red: #EF4444;
    --whatsapp-green: #25D366;

    /* Tipografia */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Playfair Display', serif;

    /* Espaçamentos */
    --section-padding: 140px;
    --section-padding-mobile: 90px;
    --container-max: 1200px;
    --gap-lg: 48px;
    --gap-md: 24px;
    --gap-sm: 16px;

    /* Bordas e Sombras */
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-full: 50px;
    --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.25);
    --shadow-gold-lg: 0 16px 40px rgba(212, 175, 55, 0.35);
    --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.5);

    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===================================
   PRELOADER / ANIMAÇÃO DE ENTRADA
   =================================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    position: relative;
}

.preloader-name {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 50%, #D4AF37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: preloaderShimmer 2s ease-in-out infinite, preloaderFadeIn 0.8s ease 0.2s backwards;
    letter-spacing: -0.02em;
}

.preloader-tagline {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--text-gray);
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    margin-top: 8px;
    animation: preloaderFadeIn 0.8s ease 0.6s backwards;
    letter-spacing: 2px;
}

.preloader-line {
    width: 0;
    height: 1px;
    background: var(--gold-gradient);
    margin: 16px auto;
    animation: preloaderLineExpand 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.preloader-line-top {
    margin-bottom: 20px;
}

.preloader-line-bottom {
    margin-top: 20px;
}

@keyframes preloaderShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

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

@keyframes preloaderLineExpand {
    from { width: 0; }
    to { width: 120px; }
}

/* ===================================
   RESET & BASE
   =================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-gray-light);
    line-height: 1.6;
    background: var(--primary-black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.section-header h2 {
    background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

p {
    font-size: 1.0625rem;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

.highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.text-accent {
    font-family: var(--font-accent);
    font-style: italic;
}

/* ===================================
   CONTAINER & SECTIONS
   =================================== */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding) 0;
}

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

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.125rem;
    margin-top: 0.5rem;
    letter-spacing: 0.03em;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-gray-light);
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    padding: 18px 40px;
    background: var(--gold-gradient);
    color: var(--primary-black);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-gold);
    letter-spacing: 0.02em;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-primary.large {
    padding: 22px 56px;
    font-size: 1.125rem;
    border-radius: var(--border-radius-lg);
}

.btn-secondary {
    padding: 16px 36px;
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--accent-gold);
    border-radius: var(--border-radius);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.btn-nav {
    padding: 12px 28px;
    background: var(--gold-gradient);
    color: var(--primary-black) !important;
    font-weight: 700;
    border-radius: 8px;
    font-size: 0.9375rem;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ===================================
   NAVBAR
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(212, 175, 55, 0.2);
}

.navbar nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

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

.nav-menu {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-gray-light);
    font-weight: 500;
    font-size: 0.9375rem;
    position: relative;
}

.nav-menu a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-normal);
}

.nav-menu a:not(.btn-nav):hover {
    color: var(--text-white);
}

.nav-menu a:not(.btn-nav):hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    background: url('../img/Foto de capa hero.jpeg') center 10%/cover no-repeat;
    background-attachment: scroll;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

.hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 600px;
    padding: 80px 24px 40px 60px;
    margin: 0;
}

.hero h1 .highlight {
    display: inline;
}

.hero .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius-full);
    color: var(--accent-gold);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.hero h1 {
    color: var(--text-white);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow-wrap: break-word;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    overflow-wrap: break-word;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* ===================================
   COMO FUNCIONA SECTION
   =================================== */

.como-funciona {
    background: #000000;
}

.passos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.passo-card {
    background: var(--secondary-dark);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--border-radius);
    padding: 40px 24px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.passo-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

.passo-numero {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.passo-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.passo-card h3 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.passo-card p {
    color: var(--text-gray);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Linha conectora entre os passos */
.passo-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -12px;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    transform: translateY(-50%);
}

/* ===================================
   PRA QUEM É / NÃO É SECTION
   =================================== */

.pra-quem {
    background: #1c1c1c;
}

.pra-quem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.pra-quem-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 40px;
}

.pra-quem-card.is-for {
    border-color: rgba(34, 197, 94, 0.2);
}

.pra-quem-card.is-not {
    border-color: rgba(239, 68, 68, 0.2);
}

.pra-quem-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 1.375rem;
}

.pra-quem-card h3 .icon {
    font-size: 1.5rem;
}

.pra-quem-card.is-for h3 {
    color: var(--success-green);
}

.pra-quem-card.is-not h3 {
    color: var(--error-red);
}

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

.pra-quem-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-gray-light);
    font-size: 1rem;
    line-height: 1.5;
}

.pra-quem-list .check {
    color: var(--success-green);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pra-quem-list .x {
    color: var(--error-red);
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ===================================
   PLANOS / PRODUTOS SECTION
   =================================== */

.planos {
    background: #000000;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

/* Grid para 4 planos */
.planos-grid.planos-4 {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    gap: 24px;
}

/* Badge de duração do plano */
.plano-duracao-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius-full);
    margin-bottom: 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Card do Plano 365 */
.plano-card.plano-365 {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, var(--secondary-dark) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.plano-card.plano-365:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

/* Badge 360 */
.badge-popular.badge-365 {
    background: linear-gradient(135deg, #D4AF37 0%, #8B7025 100%);
    font-size: 0.65rem;
    padding: 6px 12px;
}

.plano-card {
    background: var(--secondary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 48px 40px;
    position: relative;
    transition: var(--transition-smooth);
}

.plano-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-dark);
}

.plano-card.destaque {
    border: 2px solid var(--accent-gold);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, var(--secondary-dark) 100%);
}

.plano-card.destaque:hover {
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--gold-gradient);
    color: var(--primary-black);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius-full);
    white-space: nowrap;
}

.plano-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.plano-tipo {
    color: var(--accent-gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.plano-preco {
    margin-bottom: 2rem;
}

.preco-valor {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
}

.preco-periodo {
    color: var(--text-gray);
    font-size: 0.9375rem;
}

.plano-beneficios {
    margin-bottom: 2rem;
}

.plano-beneficios li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray-light);
    font-size: 0.9375rem;
}

.plano-beneficios li:last-child {
    border-bottom: none;
}

.plano-beneficios .check-icon {
    color: var(--accent-gold);
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.plano-card .btn-primary {
    width: 100%;
}

/* ===================================
   SAIBA MAIS / VIDEO SECTION
   =================================== */

.saiba-mais {
    background: #000000;
    padding-top: 80px;
}

.saiba-mais-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.video-container {
    width: 100%;
    max-width: 700px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--secondary-dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.video-container video,
.video-container iframe {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
}

.video-placeholder .play-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--primary-black);
    margin-left: 4px;
}

.saiba-mais-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.saiba-mais-content h2 {
    margin-bottom: 0.5rem;
}

.saiba-mais-content .subtitle {
    color: var(--accent-gold);
    font-family: var(--font-accent);
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.saiba-mais-content p {
    margin-bottom: 1.25rem;
    color: var(--text-gray-light);
}

.saiba-mais-content .btn-secondary {
    margin-top: 1rem;
}

.minha-transformacao {
    text-align: center;
    margin-top: 48px;
}

.minha-transformacao h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.minha-transformacao .subtitle {
    color: var(--accent-gold);
    font-family: var(--font-accent);
    font-size: 1rem;
    font-style: italic;
    margin-top: 12px;
}

/* ===================================
   RESULTADOS / PROVA SOCIAL SECTION
   =================================== */

.resultados {
    background: #1c1c1c;
    overflow: hidden;
}

/* Carrossel Infinito */
.carrossel-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 40px 0;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.carrossel-track {
    display: flex;
    gap: 24px;
    width: max-content;
    will-change: transform;
}

.carrossel-item {
    flex-shrink: 0;
    width: 320px;
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (hover: hover) {
    .carrossel-item {
        transition: var(--transition-smooth);
    }

    .carrossel-item:hover {
        border-color: var(--accent-gold);
        transform: scale(1.03);
        box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    }
}

.carrossel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* Feedback em Vídeo/Áudio */
.feedback-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.feedback-video-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.feedback-video-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.feedback-video-card video {
    width: 100%;
    display: block;
}

/* Depoimentos */
.depoimentos-titulo {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--accent-gold);
}

.texto-motivacional {
    max-width: 800px;
    margin: 48px auto 0;
    text-align: center;
    padding: 40px 32px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--border-radius-lg);
}

.texto-motivacional p {
    color: var(--text-gray-light);
    font-size: 1.0625rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.texto-motivacional p:last-child {
    margin-bottom: 0;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.depoimento-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 32px;
    transition: var(--transition-smooth);
}

.depoimento-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

.depoimento-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.depoimento-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-weight: 700;
    font-size: 1.25rem;
}

.depoimento-info h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 2px;
}

.depoimento-info span {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.depoimento-stars {
    color: var(--accent-gold);
    font-size: 0.875rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.depoimento-text {
    color: var(--text-gray-light);
    font-size: 0.9375rem;
    line-height: 1.7;
    font-style: italic;
}

/* ===================================
   OBJEÇÕES SECTION
   =================================== */

/* .objecoes agora faz parte da seção FAQ */

.objecoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.objecao-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-smooth);
}

.objecao-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
}

.objecao-pergunta {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.objecao-pergunta::before {
    content: '❓ ';
}

.objecao-resposta {
    display: block;
    font-size: 1.0625rem;
    color: var(--accent-gold);
    line-height: 1.6;
}

.objecao-resposta::before {
    content: '👉 ';
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq {
    background: #1c1c1c;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question h4 {
    color: var(--text-white);
    font-size: 1.0625rem;
    font-weight: 600;
    padding-right: 20px;
    transition: var(--transition-normal);
}

.faq-question:hover h4 {
    color: var(--accent-gold);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--accent-gold);
    transition: var(--transition-normal);
}

.faq-icon::before {
    width: 12px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 12px;
}

.faq-item.active .faq-icon {
    background: var(--accent-gold);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
    background: var(--primary-black);
}

.faq-item.active .faq-icon::after {
    height: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-gray-light);
    font-size: 1rem;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ===================================
   CTA FINAL SECTION
   =================================== */

.cta-final {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, var(--primary-black) 50%, rgba(212, 175, 55, 0.05) 100%);
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final .container {
    position: relative;
    z-index: 1;
}

.cta-final h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.cta-final p {
    color: var(--text-gray-light);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.875rem;
}

.cta-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--success-green);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--secondary-dark);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-col p {
    color: var(--text-gray);
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-gray);
    font-size: 0.9375rem;
    transition: var(--transition-normal);
}

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

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-white);
    transition: var(--transition-normal);
}

.social-icons a:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.social-icons a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--text-gray-dark);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: var(--text-gray);
    font-size: 0.875rem;
}

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

.footer-links {
    display: flex;
    gap: 24px;
}

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* ===================================
   CTA INLINE (repetidos entre seções)
   =================================== */

.cta-inline {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
}

.cta-entre-secoes {
    text-align: center;
    padding: 48px 20px;
}

.cta-inline-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden {
    display: none !important;
}

.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;
}

/* ===================================
   ANIMATIONS
   =================================== */

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease 0.2s backwards;
}

.animate-slide-up {
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s backwards;
}

.animate-slide-up.delay-1 {
    animation-delay: 0.6s;
}

.animate-slide-up.delay-2 {
    animation-delay: 0.8s;
}

.animate-slide-up.delay-3 {
    animation-delay: 1s;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE - TABLET (max-width: 1024px)
   =================================== */

@media (max-width: 1024px) {
    :root {
        --section-padding: 110px;
    }

    .passos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .passo-card:nth-child(2)::after {
        display: none;
    }

    .saiba-mais-grid {
        gap: 36px;
    }

    .carrossel-item {
        width: 260px;
        height: 340px;
    }

    .feedback-videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Grid de 4 planos em tablet: 2 colunas */
    .planos-grid.planos-4 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }

    .planos-page-grid.planos-4-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   RESPONSIVE - MOBILE (max-width: 768px)
   =================================== */

@media (max-width: 768px) {
    :root {
        --section-padding: 90px;
    }

    /* Fix: background-attachment fixed causa bug de animação no iOS/Safari */
    .hero {
        background-attachment: scroll;
    }

    /* Navbar Mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transition: left 0.4s ease;
        padding: 24px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.25rem;
    }

    .nav-menu .btn-nav {
        width: 100%;
        text-align: center;
        padding: 16px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Hero Mobile */
    .hero {
        background-attachment: scroll;
        justify-content: center;
        background-position: center top;
    }

    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.35) 50%,
            rgba(0, 0, 0, 0.7) 100%
        );
    }

    .hero .hero-content {
        text-align: center;
        padding: 80px 16px 40px;
        max-width: 100%;
    }

    .hero h1 {
        font-size: clamp(1.5rem, 5vw, 1.75rem);
        line-height: 1.35;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* Grids Mobile */
    .passos-grid {
        grid-template-columns: 1fr;
    }

    .passo-card::after {
        display: none;
    }

    .pra-quem-grid {
        grid-template-columns: 1fr;
    }

    .planos-grid {
        grid-template-columns: 1fr;
    }

    .planos-grid.planos-4 {
        grid-template-columns: 1fr;
    }

    .planos-page-grid.planos-4-grid {
        grid-template-columns: 1fr;
    }

    .plano-destaque-info ul {
        grid-template-columns: 1fr;
    }

    .carrossel-item {
        width: 220px;
        height: 290px;
    }

    .carrossel-track {
        gap: 16px;
    }

    .feedback-videos-grid {
        grid-template-columns: 1fr;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .objecoes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    /* WhatsApp Mobile */
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }

    /* CTA Buttons Mobile */
    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ===================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   =================================== */

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 70px 0;
    }

    .hero .badge {
        font-size: 0.75rem;
        padding: 10px 16px;
    }

    .passo-card {
        padding: 30px 20px;
    }

    .pra-quem-card {
        padding: 30px 24px;
    }

    .plano-card {
        padding: 36px 24px;
    }

    .depoimento-card {
        padding: 24px;
    }

    .faq-question {
        padding: 20px 0;
    }

    .faq-question h4 {
        font-size: 0.9375rem;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    .navbar,
    .whatsapp-float,
    .btn {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .section {
        padding: 30px 0;
    }
}

/* ===================================
   REDUCED MOTION
   =================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ===================================
   PÁGINA DE PLANOS - planos.html
   =================================== */

.page-planos {
    background: var(--primary-black);
}

.navbar-simple nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-voltar {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.planos-hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-dark) 100%);
    padding: 140px 20px 80px;
    text-align: center;
}

.planos-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.planos-hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.planos-comparacao {
    padding: 80px 20px;
    background: var(--primary-black);
}

.planos-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Grid para 4 planos na página de planos */
.planos-page-grid.planos-4-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1400px;
    gap: 32px;
}

/* Badge de duração do plano na página */
.plano-badge-duracao {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius-full);
    margin-bottom: 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Seção "Para quem é" */
.plano-para-quem {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.plano-para-quem h4 {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.plano-para-quem ul {
    list-style: none;
    padding: 0;
}

.plano-para-quem li {
    padding: 8px 0;
    color: var(--text-gray-light);
    font-size: 0.875rem;
}

/* Observações do plano */
.plano-observacoes {
    margin-top: 24px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--accent-gold);
}

.plano-observacoes p {
    color: var(--text-gray);
    font-size: 0.8125rem;
    margin-bottom: 8px;
}

.plano-observacoes p:last-child {
    margin-bottom: 0;
}

.plano-observacoes .renovacao {
    color: var(--accent-gold);
    font-weight: 500;
    font-style: italic;
}

/* Destaque info do plano */
.plano-destaque-info {
    margin-top: 24px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.02) 100%);
    border-radius: var(--border-radius);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.plano-destaque-info h4 {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.plano-destaque-info ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.plano-destaque-info li {
    color: var(--text-gray-light);
    font-size: 0.8125rem;
    padding: 4px 0;
}

/* Card Premium 365 */
.plano-page-card.plano-premium-360 {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.1) 0%, var(--secondary-dark) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
}

.plano-page-card.plano-premium-360:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
}

/* Badge 365 na página */
.badge-popular.badge-365 {
    background: linear-gradient(135deg, #D4AF37 0%, #8B7025 100%);
}

.plano-page-card {
    background: var(--secondary-dark);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    position: relative;
    transition: var(--transition-smooth);
}

.plano-page-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.plano-page-card.plano-destaque {
    border: 3px solid var(--accent-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.plano-page-card .badge-popular {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gold-gradient);
    color: var(--primary-black);
    padding: 8px 20px;
    border-radius: var(--border-radius-full);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.plano-page-card .plano-header h3 {
    font-size: 1.75rem;
    color: var(--text-white);
    margin-bottom: 8px;
}

.plano-page-card .plano-tipo {
    color: var(--text-gray);
    font-size: 0.9375rem;
}

.plano-preco-destaque {
    margin: 30px 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.plano-preco-destaque .cifrao {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.plano-preco-destaque .valor {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-gold);
}

.plano-preco-destaque .periodo {
    font-size: 1rem;
    color: var(--text-gray);
}

.plano-page-card .plano-descricao {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plano-page-card .plano-descricao p {
    color: var(--text-gray-light);
    font-size: 1rem;
}

.plano-beneficios-lista,
.plano-page-card .plano-detalhes {
    margin-top: 24px;
}

.plano-beneficios-lista h4,
.plano-page-card .plano-detalhes h4 {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.plano-beneficios-lista ul {
    list-style: none;
    padding: 0;
}

.plano-beneficios-lista li {
    padding: 10px 0;
    color: var(--text-white);
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plano-beneficios-lista li:last-child {
    border-bottom: none;
}

.plano-page-card .plano-detalhes ol {
    padding-left: 20px;
    color: var(--text-gray);
}

.plano-page-card .plano-detalhes li {
    padding: 6px 0;
    font-size: 0.875rem;
}

.btn-selecionar {
    width: 100%;
    margin-top: 30px;
    padding: 18px;
    background: var(--text-white);
    color: var(--primary-black);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    display: block;
}

.btn-selecionar:hover {
    background: var(--accent-gold);
    transform: scale(1.02);
}

.btn-selecionar.btn-premium {
    background: var(--gold-gradient);
}

/* Garantias */
.garantias {
    background: var(--secondary-dark);
    padding: 80px 20px;
}

.garantias h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 40px;
}

.garantias-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.garantia-item {
    text-align: center;
    padding: 24px;
}

.garantia-item .icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.garantia-item h4 {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 8px;
}

.garantia-item p {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Dúvidas Planos */
.duvidas-planos {
    background: var(--primary-black);
    padding: 60px 20px;
}

.duvidas-planos h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.duvidas-planos p {
    color: var(--text-gray);
    margin-bottom: 24px;
}

.btn-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--whatsapp-green);
    color: var(--text-white);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
}

.btn-whatsapp-cta:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Footer Simples */
.footer-simple {
    padding: 40px 20px;
    text-align: center;
}

.footer-simple p {
    color: var(--text-gray-dark);
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.footer-simple .dev a {
    color: var(--text-gray);
}

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

/* ===================================
   PÁGINA OBRIGADO - obrigado.html
   =================================== */

.page-obrigado {
    background: var(--primary-black);
}

.header-simple {
    background: var(--secondary-dark);
    padding: 20px;
    text-align: center;
}

.header-simple .logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.obrigado-hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-dark) 100%);
    padding: 100px 20px 80px;
    text-align: center;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 24px;
    display: block;
    animation: bounce 1s ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.obrigado-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.obrigado-hero .lead {
    font-size: 1.25rem;
    color: var(--text-white);
    max-width: 700px;
    margin: 0 auto;
}

/* Próximos Passos */
.proximos-passos {
    padding: 80px 20px;
    background: var(--primary-black);
}

.proximos-passos h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 16px;
}

.proximos-passos .subtitulo {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 60px;
}

.passos-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.passos-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-gold) 0%, var(--secondary-dark) 100%);
    border-radius: 2px;
}

.passo-item {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
}

.passo-item .passo-numero {
    min-width: 60px;
    height: 60px;
    background: var(--accent-gold);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    z-index: 1;
    flex-shrink: 0;
}

.passo-conteudo {
    flex: 1;
    background: var(--secondary-dark);
    padding: 32px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.passo-conteudo h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.passo-conteudo p {
    color: var(--text-gray-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.btn-acao {
    display: inline-block;
    padding: 14px 28px;
    background: var(--accent-gold);
    color: var(--primary-black);
    border-radius: var(--border-radius);
    font-weight: 700;
    transition: var(--transition-smooth);
    margin: 12px 0;
}

.btn-acao:hover {
    background: var(--accent-gold-light);
    transform: scale(1.02);
}

.obs {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 12px;
}

.app-downloads {
    display: flex;
    gap: 16px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.btn-app {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-white);
    font-weight: 500;
    transition: var(--transition-normal);
}

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

.btn-app svg {
    fill: currentColor;
}

.cadastro-info,
.prazo-box,
.dicas-box {
    background: var(--primary-black);
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cadastro-info h4,
.prazo-box h4,
.dicas-box h4 {
    color: var(--accent-gold);
    font-size: 0.9375rem;
    margin-bottom: 12px;
}

.cadastro-info ol {
    padding-left: 20px;
    color: var(--text-gray);
}

.cadastro-info li {
    padding: 4px 0;
    font-size: 0.9375rem;
}

.prazo-box p {
    margin-bottom: 8px;
    font-size: 0.9375rem;
}

.dicas-box ul {
    list-style: none;
    padding: 0;
}

.dicas-box li {
    padding: 6px 0;
    color: var(--text-gray-light);
    font-size: 0.9375rem;
}

/* Informações Importantes */
.info-importantes {
    padding: 80px 20px;
    background: var(--secondary-dark);
}

.info-importantes h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    background: var(--primary-black);
    padding: 32px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card h3 {
    color: var(--accent-gold);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.info-card p {
    color: var(--text-gray-light);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 0.9375rem;
}

.btn-whatsapp-card {
    display: inline-block;
    padding: 12px 24px;
    background: var(--whatsapp-green);
    color: var(--text-white);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9375rem;
}

.btn-whatsapp-card:hover {
    background: #128C7E;
}

/* CTA Redes */
.cta-redes {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, var(--primary-black) 100%);
    text-align: center;
}

.cta-redes h2 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 16px;
}

.cta-redes p {
    font-size: 1.125rem;
    color: var(--text-gray-light);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--text-white);
    border-radius: var(--border-radius-full);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.btn-instagram:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(188, 24, 136, 0.4);
}

.btn-instagram svg {
    fill: currentColor;
}

/* ===================================
   PLANO DETALHE - Cards individuais
   =================================== */

.plano-detalhe {
    padding: 60px 0;
}

.plano-detalhe:first-of-type {
    padding-top: 80px;
}

/* Alternar fundos entre cards */
#plano-base { background: #0a0a0a; }
#plano-evolucao { background: #141414; }
#plano-transformacao { background: #0a0a0a; }
#plano-365 { background: #141414; }

.plano-detalhe-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--secondary-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
}

.plano-detalhe-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Variante destaque (Transformação) */
.plano-detalhe-card.plano-detalhe-destaque {
    border: 2px solid var(--accent-gold);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.06) 0%, var(--secondary-dark) 30%);
    max-width: 850px;
}

.plano-detalhe-card.plano-detalhe-destaque:hover {
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

/* Variante premium (365) */
.plano-detalhe-card.plano-detalhe-premium {
    border: 2px solid rgba(212, 175, 55, 0.5);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, var(--secondary-dark) 25%);
    max-width: 850px;
}

.plano-detalhe-card.plano-detalhe-premium:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
}

/* Header do card */
.plano-detalhe-header {
    padding: 48px 48px 32px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.plano-detalhe-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plano-detalhe-header .plano-tipo {
    margin-bottom: 0;
}

.plano-detalhe-header .plano-preco-destaque {
    justify-content: center;
    margin-bottom: 0;
}

/* Body do card */
.plano-detalhe-body {
    padding: 40px 48px;
}

.plano-intro {
    font-size: 1.125rem;
    color: var(--text-gray-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.plano-detalhe-body > p {
    color: var(--text-gray-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Subseções dentro do body */
.plano-secao {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.plano-secao h4 {
    color: var(--accent-gold);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.plano-secao ul {
    list-style: none;
    padding: 0;
}

.plano-secao li {
    position: relative;
    padding: 8px 0 8px 24px;
    color: var(--text-gray-light);
    font-size: 0.9375rem;
    line-height: 1.7;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.plano-secao li:last-child {
    border-bottom: none;
}

.plano-secao li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 0.75rem;
    top: 11px;
}

/* Subseção destaque (ex: "Por que 6 meses mudam tudo?") */
.plano-secao.plano-secao-destaque {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius);
    padding: 32px;
    margin-top: 32px;
}

.plano-secao.plano-secao-destaque h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.plano-secao.plano-secao-destaque > p {
    color: var(--text-gray-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.plano-secao.plano-secao-destaque > p strong {
    color: var(--accent-gold);
}

/* Renovação info */
.plano-renovacao {
    margin-top: 32px;
    padding: 20px 24px;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--accent-gold);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    color: var(--text-gray);
    font-size: 0.9375rem;
    line-height: 1.7;
    font-style: italic;
}

/* Valor CTA destaque */
.plano-valor-cta {
    margin-top: 20px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent-gold);
}

/* Botão WhatsApp específico por plano */
.btn-whatsapp-plano {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: #25D366;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.btn-whatsapp-plano:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Footer do card */
.plano-detalhe-footer {
    padding: 32px 48px 48px;
    text-align: center;
}

.plano-detalhe-footer .btn-primary {
    width: 100%;
    max-width: 400px;
    font-size: 1.125rem;
    padding: 22px 40px;
}

/* ===================================
   RESPONSIVO - PÁGINAS NOVAS
   =================================== */

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

    .garantias-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .passos-timeline::before {
        left: 20px;
    }

    .passo-item .passo-numero {
        min-width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }

    .passo-item {
        gap: 16px;
    }

    .passo-conteudo {
        padding: 24px;
    }

    .passo-conteudo h3 {
        font-size: 1.25rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .obrigado-hero h1 {
        font-size: 1.75rem;
    }

    .planos-hero h1 {
        font-size: 1.75rem;
    }

    .app-downloads {
        flex-direction: column;
    }

    /* Plano detalhe cards - mobile */
    .plano-detalhe {
        padding: 40px 0;
    }

    .plano-detalhe-header {
        padding: 32px 24px 24px;
    }

    .plano-detalhe-body {
        padding: 28px 24px;
    }

    .plano-detalhe-footer {
        padding: 24px 24px 36px;
    }

    .plano-secao.plano-secao-destaque {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .garantias-grid {
        grid-template-columns: 1fr;
    }

    .plano-page-card {
        padding: 30px 24px;
    }

    .plano-preco-destaque .valor {
        font-size: 2.5rem;
    }

    .plano-detalhe-header {
        padding: 28px 20px 20px;
    }

    .plano-detalhe-body {
        padding: 24px 20px;
    }

    .plano-detalhe-footer {
        padding: 20px 20px 32px;
    }
}
