/* ============================================
   MEU CORPO TRANSFORMADO
   Premium Fitness Landing Page
   Dark + Neon Green + Solid Colors (No Gradients)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

/* === DESIGN TOKENS === */
:root {
    --green: #39FF14;
    --green-dim: rgba(57, 255, 20, 0.15);
    --green-glow: rgba(57, 255, 20, 0.08);
    --magenta: #FF2D78;
    --magenta-dim: rgba(255, 45, 120, 0.12);
    --bg-black: #0A0A0A;
    --bg-dark: #111111;
    --bg-card: #161616;
    --bg-card-hover: #1C1C1C;
    --bg-elevated: #1E1E1E;
    --border: #222222;
    --border-hover: #333333;
    --white: #FFFFFF;
    --gray-100: #F0F0F0;
    --gray-200: #CCCCCC;
    --gray-400: #888888;
    --gray-600: #555555;
    --radius-sm: 4px;
    --radius: 6px;
    --radius-lg: 8px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.25s ease;
}

/* === BASE === */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background-color: var(--bg-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* === UTILITY === */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
    line-height: 1.15;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-200);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

/* ============================================
   HEADER
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    height: 64px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 0;
}

.logo svg {
    display: block;
}

nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    color: var(--gray-400);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color var(--transition);
    position: relative;
}

nav a:hover {
    color: var(--white);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.btn-header {
    background: var(--green);
    color: #000;
    border: none;
    padding: 0.6rem 1.6rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font);
    transition: all var(--transition);
}

.btn-header:hover {
    background: var(--white);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.25rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    margin-top: 64px;
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    background: var(--bg-black);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 600px 400px at 15% 50%, var(--green-glow), transparent),
        radial-gradient(ellipse 400px 300px at 85% 30%, var(--magenta-dim), transparent);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid var(--green);
    border-radius: var(--radius-sm);
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    text-transform: uppercase;
    animation: fadeInUp 0.7s ease;
}

.hero-content h1 .text-green {
    color: var(--green);
}

.hero-content p {
    font-size: 1.05rem;
    color: var(--gray-200);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 520px;
    animation: fadeInUp 0.7s ease 0.1s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.7s ease 0.2s backwards;
}

.btn {
    padding: 1rem 2.2rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font);
}

.btn-primary {
    background: var(--green);
    color: #000;
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border-hover);
}

.btn-secondary:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
}

.hero-trust {
    font-size: 0.85rem;
    color: var(--gray-400);
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.7s ease 0.3s backwards;
}

.hero-trust span {
    color: var(--green);
    font-weight: 700;
    margin-right: 0.25rem;
}

/* Hero Image */
.hero-image {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.7s ease 0.15s backwards;
}

.hero-video-box {
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.hero-video-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--green);
    z-index: 2;
}

.hero-video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hero Stats Bar */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    animation: fadeInUp 0.7s ease 0.35s backwards;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green);
    letter-spacing: -0.5px;
}

.hero-stat-text {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits {
    padding: 7rem 2rem;
    background: var(--bg-dark);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: background var(--transition);
}

.benefit-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.benefit-card:hover::before {
    background: var(--green);
}

.benefit-icon {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    background: var(--green-dim);
    border-radius: var(--radius-sm);
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-card p {
    color: var(--gray-200);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   METRICS BAR
   ============================================ */
.metrics-bar {
    padding: 3.5rem 2rem;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.metrics-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.metric-item {
    text-align: center;
    position: relative;
}

.metric-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--border);
}

.metric-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--green);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ============================================
   E-BOOKS SECTION
   ============================================ */
.ebooks {
    padding: 7rem 2rem;
    background: var(--bg-black);
}

.ebooks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.ebook-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.ebook-card.featured {
    border-color: var(--green);
}

.ebook-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--green);
    z-index: 2;
}

.ebook-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--magenta);
    color: var(--white);
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.65rem;
    font-weight: 700;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.ebook-cover {
    height: 200px;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
    overflow: hidden;
}

.ebook-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ebook-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #0D0D0D;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ebook-content h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.ebook-content p {
    color: var(--gray-200);
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.ebook-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    flex: 1;
}

.ebook-benefits li {
    color: var(--gray-200);
    margin-bottom: 0.6rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.ebook-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
    font-size: 0.9rem;
}

.ebook-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.ebook-old-price {
    color: var(--gray-600);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.ebook-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--green);
    letter-spacing: -0.5px;
}

.ebook-button {
    width: 100%;
    padding: 0.9rem;
    background: var(--green);
    color: #000;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font);
    transition: all var(--transition);
}

.ebook-button:hover {
    background: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   OFFER SECTION
   ============================================ */
.offer {
    padding: 7rem 2rem;
    background: var(--bg-dark);
    position: relative;
    text-align: center;
    overflow: hidden;
}

.offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 600px 400px at 50% 50%, var(--green-glow), transparent);
    pointer-events: none;
}

.offer-container {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    border: 1px solid var(--green);
    border-radius: var(--radius);
    padding: 3.5rem 2.5rem;
}

.offer-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--green);
    border-radius: var(--radius) var(--radius) 0 0;
}

.offer-container h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.offer-pricing {
    margin: 2rem 0;
}

.offer-from {
    color: var(--green);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.offer-old {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.offer-price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--green);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.offer-access {
    color: var(--gray-200);
    font-weight: 600;
    margin-top: 0.8rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.offer-desc {
    color: var(--gray-200);
    margin: 1.5rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.offer-button {
    width: 100%;
    padding: 1.2rem;
    background: var(--green);
    color: #000;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font);
    margin-top: 1.5rem;
    transition: all var(--transition);
}

.offer-button:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.offer-urgency {
    color: var(--magenta);
    font-size: 0.8rem;
    margin-top: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.offer-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gray-400);
    font-size: 0.8rem;
    margin-top: 1.5rem;
}

.offer-guarantee span {
    font-size: 1rem;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 7rem 2rem;
    background: var(--bg-black);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
    padding: 2.5rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.step:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--green);
    border-radius: var(--radius-sm);
    color: #000;
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.step h3 {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step p {
    color: var(--gray-200);
    line-height: 1.7;
    font-size: 0.9rem;
}

.step-connector {
    display: none;
}

/* ============================================
   RESULTS / SOCIAL PROOF
   ============================================ */
.results {
    padding: 7rem 2rem;
    background: var(--bg-dark);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.stat:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--green);
    margin-bottom: 0.3rem;
    letter-spacing: -1px;
    line-height: 1;
}

.stat-label {
    color: var(--gray-400);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
}

.testimonial:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: var(--green);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-rating {
    color: var(--green);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--gray-200);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--green-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-role {
    color: var(--gray-400);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ============================================
   MOTIVATION SECTION
   ============================================ */
.motivation {
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.motivation-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.motivation h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1.1;
}

.motivation h2 .text-green {
    color: var(--green);
}

.motivation p {
    font-size: 1.05rem;
    color: var(--gray-200);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 7rem 2rem;
    background: var(--bg-black);
}

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

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.8rem;
    overflow: hidden;
    background: var(--bg-card);
    transition: border-color var(--transition);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-item.active {
    border-color: var(--green);
}

.faq-question {
    width: 100%;
    padding: 1.3rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition);
    font-family: var(--font);
    text-align: left;
}

.faq-question:hover {
    color: var(--green);
}

.faq-toggle {
    color: var(--green);
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
    color: var(--gray-200);
    line-height: 1.8;
    font-size: 0.9rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    padding: 7rem 2rem;
    background: var(--bg-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 500px 300px at 50% 50%, var(--green-glow), transparent);
    pointer-events: none;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1.1;
}

.final-cta p {
    font-size: 1.05rem;
    color: var(--gray-200);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.final-cta .btn-primary {
    padding: 1.2rem 3rem;
    font-size: 0.85rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.footer-brand::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--green);
}

.footer-desc {
    color: var(--gray-400);
    font-size: 0.88rem;
    margin-top: 1.2rem;
    line-height: 1.6;
}

.footer-heading {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: var(--gray-200);
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--green);
}

.footer-disclaimer {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 1200px;
    font-size: 0.8rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.footer-disclaimer strong {
    color: var(--gray-200);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--gray-600);
    font-size: 0.8rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Legacy fade-in support */
.fade-in {
    animation: fadeInUp 0.5s ease forwards;
}

/* ============================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-image {
        height: 350px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

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

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

    .metrics-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .metric-item:nth-child(2)::after {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    header {
        padding: 0 1rem;
        height: 56px;
    }

    nav {
        display: none;
    }

    nav.active {
        display: flex;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: var(--bg-card);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }

    .btn-header {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        margin-top: 56px;
        min-height: auto;
        padding: 3rem 1.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.4rem;
        letter-spacing: -1px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .hero-trust {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-image {
        height: 280px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .benefits,
    .ebooks,
    .results,
    .how-it-works,
    .faq,
    .offer,
    .final-cta {
        padding: 4rem 1.5rem;
    }

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

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

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

    .steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .motivation h2 {
        font-size: 2rem;
    }

    .motivation {
        padding: 5rem 1.5rem;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .offer-container {
        padding: 2.5rem 1.5rem;
    }

    .offer-price {
        font-size: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .offer-price {
        font-size: 2.5rem;
    }

    .btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.75rem;
    }

    .metrics-container {
        grid-template-columns: 1fr 1fr;
    }

    .metric-number {
        font-size: 2rem;
    }

    .metric-item::after {
        display: none !important;
    }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

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

.whatsapp-float svg {
    flex-shrink: 0;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.55); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
}
