/* =====================================================
   ORATÓRIA CRISTÃ & HOMILÉTICA
   Design: Moderno com estética Milenar/Bíblica
   ===================================================== */

:root {
    /* Paleta Milenar - Tons de Pergaminho e Ouro */
    --gold-bright: #d4a853;
    --gold: #b8860b;
    --gold-dark: #8b6914;
    --gold-muted: #a08040;

    --parchment: #f4e4c1;
    --parchment-light: #faf6ed;
    --parchment-dark: #e8d5a3;

    --ink-black: #1a1612;
    --ink-brown: #2d2418;
    --ink-medium: #3d3225;
    --ink-light: #5a4d3a;

    --text-primary: #f4e4c1;
    --text-secondary: #b8a88a;
    --text-muted: #8a7a5c;

    /* Gradientes */
    --gradient-gold: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    --gradient-parchment: linear-gradient(180deg, var(--parchment-light) 0%, var(--parchment) 100%);
    --gradient-dark: linear-gradient(180deg, var(--ink-black) 0%, var(--ink-brown) 100%);

    /* Sombras */
    --shadow-gold: 0 4px 30px rgba(212, 168, 83, 0.3);
    --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-text: 0 2px 4px rgba(0, 0, 0, 0.5);

    /* Tipografia */
    --font-display: 'Cinzel', 'Cormorant Garamond', serif;
    --font-body: 'Cormorant Garamond', Georgia, serif;
    --font-accent: 'Montserrat', sans-serif;

    /* Timing */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Textura de Pergaminho Global */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1000;
}

/* =====================================================
   TIPOGRAFIA
   ===================================================== */

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
    font-size: 1.25rem;
    letter-spacing: 0.01em;
}

.serif { font-family: var(--font-display); }

/* =====================================================
   ELEMENTOS DECORATIVOS - Estilo Milenar
   ===================================================== */

/* Ornamento de Linha */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.ornament::before,
.ornament::after {
    content: '';
    height: 1px;
    width: 100px;
    background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
}

.ornament-symbol {
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.8;
}

/* Borda Ornamental */
.ornate-border {
    position: relative;
    padding: 40px;
}

.ornate-border::before {
    content: '❧';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--gold-muted);
}

/* Separador Decorativo */
.divider {
    width: 100%;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20'%3E%3Cpath d='M0,10 Q50,0 100,10 T200,10' stroke='%23b8860b' stroke-width='1' fill='none' opacity='0.5'/%3E%3Ccircle cx='100' cy='10' r='3' fill='%23b8860b' opacity='0.7'/%3E%3Ccircle cx='85' cy='10' r='1.5' fill='%23b8860b' opacity='0.5'/%3E%3Ccircle cx='115' cy='10' r='1.5' fill='%23b8860b' opacity='0.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 60px auto;
    max-width: 300px;
}

/* =====================================================
   UTILIDADES
   ===================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.highlight {
    position: relative;
    display: inline;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(180deg, transparent, rgba(212, 168, 83, 0.3));
    z-index: -1;
}

/* Efeito de Letra Capitular */
.drop-cap::first-letter {
    float: left;
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 0.8;
    padding-right: 12px;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* =====================================================
   BOTÕES
   ===================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--ink-black);
    box-shadow: var(--shadow-gold);
}

/* Efeito de brilho no hover */
.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.5s var(--ease-smooth);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 168, 83, 0.5);
}

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

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

.btn-full {
    width: 100%;
}

/* Ícone de seta no botão */
.btn-arrow {
    display: inline-block;
    transition: transform 0.3s var(--ease-smooth);
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    background: var(--ink-black);
    overflow: hidden;
}

.hero-image-right {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    max-height: 100vh;
    width: auto;
    object-fit: contain;
    object-position: right bottom;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-text {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.3);
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s var(--ease-smooth);
}

.hero-badge::before {
    content: '✠';
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero h1 {
    margin-bottom: 30px;
    text-shadow: var(--shadow-text);
    animation: fadeInUp 0.8s var(--ease-smooth) 0.1s both;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 520px;
    animation: fadeInUp 0.8s var(--ease-smooth) 0.2s both;
}

.hero-description strong {
    color: var(--gold-bright);
    font-weight: 600;
}

.hero .btn {
    animation: fadeInUp 0.8s var(--ease-smooth) 0.3s both;
}

/* Imagem do Hero com moldura antiga */
.hero-image {
    position: relative;
    animation: fadeIn 1s var(--ease-smooth) 0.4s both;
}

.hero-image-wrapper {
    position: relative;
    padding: 15px;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1), transparent);
    border: 2px solid rgba(184, 134, 11, 0.2);
    border-radius: 20px;
}

/* Cantos ornamentais */
.hero-image-wrapper::before,
.hero-image-wrapper::after {
    content: '❦';
    position: absolute;
    font-size: 1.5rem;
    color: var(--gold-muted);
    opacity: 0.6;
}

.hero-image-wrapper::before {
    top: -5px;
    left: -5px;
}

.hero-image-wrapper::after {
    bottom: -5px;
    right: -5px;
    transform: rotate(180deg);
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    display: block;
    border-radius: 16px;
    box-shadow: var(--shadow-deep);
    transition: transform 0.5s var(--ease-smooth);
}

.hero-image:hover img {
    transform: scale(1.02);
}

/* Elemento decorativo flutuante */
.hero-float {
    position: absolute;
    font-size: 8rem;
    color: var(--gold-muted);
    opacity: 0.05;
    font-family: var(--font-display);
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.hero-float-1 {
    top: 10%;
    right: 5%;
}

.hero-float-2 {
    bottom: 15%;
    left: 3%;
    animation-delay: -3s;
}

/* =====================================================
   PAIN POINTS SECTION
   ===================================================== */

.pain-points {
    padding: 80px 0;
    background: var(--ink-brown);
    position: relative;
}

/* Textura de pergaminho sutil */
.pain-points::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, var(--ink-black) 0%, transparent 5%, transparent 95%, var(--ink-black) 100%);
    pointer-events: none;
}

.pain-points .container {
    position: relative;
    z-index: 1;
}

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

.section-header h2 {
    margin-bottom: 16px;
}

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

.pain-list {
    max-width: 750px;
    margin: 0 auto 60px;
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--ease-smooth);
}

.pain-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.pain-item:hover {
    padding-left: 16px;
    border-color: rgba(184, 134, 11, 0.3);
}

.pain-icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold);
    transition: all 0.3s var(--ease-smooth);
}

.pain-item:hover .pain-icon {
    background: var(--gold);
    color: var(--ink-black);
    transform: rotate(360deg);
}

.pain-item p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Caixa de Solução - Estilo Manuscrito */
.solution-box {
    max-width: 750px;
    margin: 0 auto;
    padding: 50px;
    background:
        linear-gradient(135deg, rgba(244, 228, 193, 0.05) 0%, transparent 100%);
    border-left: 4px solid var(--gold);
    position: relative;
}

.solution-box::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--gold-muted);
    opacity: 0.3;
    line-height: 1;
}

.solution-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.solution-box p {
    color: var(--text-secondary);
    font-size: 1.3rem;
}

/* =====================================================
   E-BOOK SECTION
   ===================================================== */

.ebook {
    padding: 80px 0;
    background: var(--ink-black);
    position: relative;
}

.ebook::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent, var(--gold-muted), transparent);
}

.ebook-header {
    text-align: center;
    margin-bottom: 80px;
}

.ebook-header .subtitle {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.ebook-header h2 {
    margin-bottom: 24px;
}

.ebook-header > p {
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* Grid de Features - Estilo Pergaminho */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 40px 32px;
    background: linear-gradient(180deg, rgba(244, 228, 193, 0.03) 0%, transparent 100%);
    border: 1px solid rgba(184, 134, 11, 0.15);
    position: relative;
    transition: all 0.4s var(--ease-smooth);
    overflow: hidden;
}

/* Canto decorativo */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, transparent 50%, rgba(184, 134, 11, 0.1) 50%);
    transition: all 0.3s var(--ease-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(184, 134, 11, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    width: 60px;
    height: 60px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: transparent;
    border: 2px solid var(--gold-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    transition: all 0.4s var(--ease-smooth);
    color: var(--gold);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
    transition: stroke 0.4s var(--ease-smooth);
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(184, 134, 11, 0.3);
}

.feature-card:hover .feature-icon {
    background: var(--gold);
    border-color: var(--gold);
    transform: rotate(-5deg);
}

.feature-card:hover .feature-icon svg {
    stroke: var(--ink-black);
}

.feature-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =====================================================
   AUTHOR SECTION
   ===================================================== */

.author {
    padding: 80px 0;
    background: var(--ink-brown);
    position: relative;
    overflow: hidden;
}

/* Padrão de fundo */
.author::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.author-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Imagem com moldura antiga */
.author-image {
    position: relative;
}

.author-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--gold-muted);
    border-radius: 20px;
    opacity: 0.4;
}

.author-image img {
    width: 100%;
    max-width: 380px;
    display: block;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-deep);
    transition: transform 0.4s var(--ease-smooth);
}

.author-image:hover img {
    transform: scale(1.02);
}

.author-info {
    padding-left: 20px;
}

.author-name {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.author h3 {
    margin-bottom: 30px;
}

.author-text {
    color: var(--text-secondary);
    font-size: 1.3rem;
}

.author-text strong {
    color: var(--gold-bright);
    font-weight: 600;
}

/* Citação do autor */
.author-quote {
    margin-top: 40px;
    padding: 30px;
    background: rgba(184, 134, 11, 0.05);
    border-left: 3px solid var(--gold);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.author-quote cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--gold-muted);
}

/* =====================================================
   BENEFITS SECTION
   ===================================================== */

.benefits {
    padding: 80px 0;
    background: var(--ink-black);
    position: relative;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 80px;
}

.benefits-list {
    max-width: 700px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
    transition: all 0.3s var(--ease-smooth);
}

.benefit-item:hover {
    padding-left: 20px;
}

.benefit-check {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--ease-smooth);
}

.benefit-check::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
}

.benefit-item:hover .benefit-check {
    background: var(--gold);
}

.benefit-item:hover .benefit-check::before {
    color: var(--ink-black);
}

.benefit-item h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 8px;
    transition: color 0.3s var(--ease-smooth);
}

.benefit-item:hover h4 {
    color: var(--gold-bright);
}

.benefit-item p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* =====================================================
   PRICING SECTION
   ===================================================== */

.pricing {
    padding: 80px 0;
    background:
        linear-gradient(180deg, var(--ink-brown) 0%, var(--ink-black) 100%);
    text-align: center;
    position: relative;
}

/* Moldura ornamental */
.pricing::before,
.pricing::after {
    content: '☙';
    position: absolute;
    font-size: 3rem;
    color: var(--gold-muted);
    opacity: 0.2;
}

.pricing::before {
    top: 60px;
    left: 60px;
}

.pricing::after {
    bottom: 60px;
    right: 60px;
    transform: rotate(180deg);
}

.pricing h2 {
    margin-bottom: 20px;
}

.pricing > p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 60px;
}

/* Card de Preço - Estilo Pergaminho */
.pricing-card {
    max-width: 520px;
    margin: 0 auto;
    padding: 60px 50px;
    background:
        linear-gradient(180deg, rgba(244, 228, 193, 0.08) 0%, rgba(244, 228, 193, 0.02) 100%);
    border: 2px solid rgba(184, 134, 11, 0.3);
    position: relative;
}

/* Ornamentos nos cantos */
.pricing-card::before,
.pricing-card::after {
    content: '❧';
    position: absolute;
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.6;
}

.pricing-card::before {
    top: 15px;
    left: 20px;
}

.pricing-card::after {
    bottom: 15px;
    right: 20px;
    transform: rotate(180deg);
}

/* Ribbon de desconto */
.pricing-ribbon {
    position: absolute;
    top: 20px;
    right: -10px;
    background: var(--gold);
    color: var(--ink-black);
    padding: 8px 20px;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-ribbon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    border: 5px solid transparent;
    border-top-color: var(--gold-dark);
    border-right-color: var(--gold-dark);
}

.price-tag {
    margin-bottom: 40px;
}

.price-old {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 12px;
}

.price-current {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-currency {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
}

.price-value {
    font-family: var(--font-display);
    font-size: 5.5rem;
    font-weight: 700;
    color: var(--gold-bright);
    line-height: 1;
    text-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
}

/* Lista de inclusões */
.includes-list {
    text-align: left;
    margin: 40px 0;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(184, 134, 11, 0.15);
    list-style: none;
}

.includes-list h4 {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.includes-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.includes-list li::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.8rem;
}

/* Garantia */
.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(184, 134, 11, 0.2);
}

.guarantee-badge {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}

.guarantee-badge span {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ink-black);
    line-height: 1;
}

.guarantee-badge small {
    font-family: var(--font-accent);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ink-black);
}

.guarantee-text {
    text-align: left;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.guarantee-text strong {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 4px;
}

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

.cta-final {
    padding: 80px 0;
    text-align: center;
    position: relative;
    background: var(--ink-black);
}

/* Luz celestial */
.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final h2 {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.cta-final p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 550px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

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

footer {
    padding: 50px 0;
    text-align: center;
    background: var(--ink-black);
    border-top: 1px solid rgba(184, 134, 11, 0.1);
}

footer p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

footer a {
    color: var(--gold-muted);
    text-decoration: none;
    transition: color 0.3s var(--ease-smooth);
}

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

/* =====================================================
   ANIMAÇÕES
   ===================================================== */

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

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

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

/* Animação de entrada para seções */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-smooth);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   RESPONSIVIDADE
   ===================================================== */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        gap: 60px;
    }

    .author-content {
        gap: 60px;
    }
}

@media (max-width: 900px) {
    .hero {
        padding: 80px 0;
    }

    .hero-image-right {
        opacity: 0.3;
        right: -20%;
    }

    .hero-content {
        max-width: 100%;
    }

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

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .author-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .author-image {
        max-width: 320px;
        margin: 0 auto;
    }

    .author-image::before {
        display: none;
    }

    .author-info {
        padding-left: 0;
    }

    .author-quote {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing::before,
    .pricing::after {
        display: none;
    }
}

@media (max-width: 600px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 80px 0;
    }

    .pain-points,
    .ebook,
    .author,
    .benefits,
    .pricing,
    .cta-final {
        padding: 80px 0;
    }

    .pain-item,
    .benefit-item {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .pain-icon,
    .benefit-check {
        margin: 0 auto;
    }

    .solution-box {
        padding: 30px 24px;
    }

    .solution-box::before {
        display: none;
    }

    .pricing-card {
        padding: 40px 24px;
    }

    .pricing-ribbon {
        right: 0;
    }

    .price-value {
        font-size: 4rem;
    }

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

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

    .author-seal {
        width: 80px;
        height: 80px;
        bottom: -15px;
        right: -15px;
    }
}

/* =====================================================
   EFEITOS ESPECIAIS
   ===================================================== */

/* Cursor personalizado para elementos clicáveis */
.btn, a {
    cursor: pointer;
}

/* Seleção de texto */
::selection {
    background: var(--gold);
    color: var(--ink-black);
}

::-moz-selection {
    background: var(--gold);
    color: var(--ink-black);
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--ink-black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Focus states acessíveis */
a:focus,
button:focus,
.btn:focus {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

/* 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;
    }
}
