/*
Theme Name: Forever Living Landing Page
Theme URI: https://foreverliving.com.br
Author: Seu Nome
Author URI: https://seusite.com
Description: Tema de landing page para oportunidade de negÃ³cio Forever Living
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: forever-living
*/

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

:root {
    /* Cores principais */
    --primary: hsl(152, 55%, 28%);
    --primary-light: hsl(152, 50%, 45%);
    --primary-dark: hsl(152, 55%, 20%);
    --primary-foreground: hsl(0, 0%, 100%);
    
    /* Cores de destaque */
    --secondary: hsl(45, 80%, 50%);
    --secondary-foreground: hsl(150, 30%, 10%);
    
    /* Cores neutras */
    --background: hsl(150, 20%, 98%);
    --foreground: hsl(150, 30%, 10%);
    --card: hsl(0, 0%, 100%);
    --muted: hsl(150, 15%, 92%);
    --muted-foreground: hsl(150, 10%, 40%);
    --border: hsl(150, 15%, 85%);
    
    /* Gradientes */
    --hero-gradient: linear-gradient(135deg, hsl(152, 55%, 20%) 0%, hsl(152, 45%, 35%) 50%, hsl(150, 40%, 25%) 100%);
    --gold-gradient: linear-gradient(135deg, hsl(45, 80%, 55%) 0%, hsl(40, 85%, 45%) 100%);
    --overlay-dark: hsla(152, 50%, 8%, 0.85);
    
    /* Sombras */
    --shadow-soft: 0 4px 20px hsla(152, 30%, 20%, 0.08);
    --shadow-medium: 0 8px 30px hsla(152, 30%, 20%, 0.12);
    --shadow-glow: 0 0 40px hsla(45, 80%, 50%, 0.3);
    
    /* Fontes */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* EspaÃ§amentos */
    --radius: 0.75rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
}

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

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

/* ============================================
   CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* ============================================
   BOTÃ•ES
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero {
    background: var(--secondary);
    color: var(--secondary-foreground);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

.btn-hero:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.btn-hero-outline {
    background: hsla(0, 0%, 100%, 0.1);
    color: var(--primary-foreground);
    border: 2px solid hsla(0, 0%, 100%, 0.3);
    backdrop-filter: blur(4px);
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-hero-outline:hover {
    background: hsla(0, 0%, 100%, 0.2);
    border-color: hsla(0, 0%, 100%, 0.5);
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--foreground);
    font-weight: 700;
}

.btn-gold:hover {
    box-shadow: var(--shadow-glow);
}

.btn-whatsapp {
    background: hsl(142, 70%, 45%);
    color: white;
    font-weight: 700;
}

.btn-whatsapp:hover {
    background: hsl(142, 70%, 40%);
    transform: scale(1.05);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.btn-xl {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px hsla(45, 80%, 50%, 0.3); }
    50% { box-shadow: 0 0 40px hsla(45, 80%, 50%, 0.5); }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-dark);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 5rem 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: hsla(0, 0%, 100%, 0.1);
    color: hsla(0, 0%, 100%, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }
}

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

.hero-subtitle {
    font-size: 1.125rem;
    color: hsla(0, 0%, 100%, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-note {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.6);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: float 3s ease-in-out infinite;
}

.scroll-indicator-inner {
    width: 1.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 2px solid hsla(0, 0%, 100%, 0.3);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-indicator-dot {
    width: 0.25rem;
    height: 0.5rem;
    background: hsla(0, 0%, 100%, 0.5);
    border-radius: 9999px;
    animation: bounce 1s ease-in-out infinite;
}

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

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

/* ============================================
   SEÃ‡ÃƒO SOBRE
   ============================================ */
.section {
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    .section {
        padding: 7rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-title .highlight {
    color: var(--primary);
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Card */
.about-card {
    background: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .about-card {
        padding: 3rem;
    }
}

.about-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-card {
    background: var(--background);
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: hsla(152, 55%, 28%, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.feature-card h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.feature-card p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* ============================================
   SEÃ‡ÃƒO COMO FUNCIONA
   ============================================ */
.section-dark {
    background: var(--hero-gradient);
    color: var(--primary-foreground);
}

.section-dark .section-title {
    color: var(--primary-foreground);
}

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

.section-dark .section-description {
    color: hsla(0, 0%, 100%, 0.8);
}

/* Steps */
.steps-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    position: relative;
    background: hsla(0, 0%, 100%, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    transition: all 0.3s ease;
}

.step-card:hover {
    background: hsla(0, 0%, 100%, 0.15);
    transform: translateY(-8px);
}

.step-number {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--secondary);
    color: var(--secondary-foreground);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.step-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: hsla(45, 80%, 50%, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: background 0.3s ease;
}

.step-card:hover .step-icon {
    background: hsla(45, 80%, 50%, 0.3);
}

.step-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--secondary);
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 0.75rem;
}

.step-card p {
    color: hsla(0, 0%, 100%, 0.7);
    line-height: 1.6;
}

/* ============================================
   SEÃ‡ÃƒO BENEFÃCIOS
   ============================================ */
.benefits-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-card {
    display: flex;
    gap: 1rem;
    background: var(--card);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.benefit-check {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-check {
    transform: scale(1.1);
}

.benefit-check svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-foreground);
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ============================================
   SEÃ‡ÃƒO PRODUTOS
   ============================================ */
.section-muted {
    background: var(--muted);
}

.products-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.products-image {
    position: relative;
}

.products-image img {
    border-radius: 1rem;
    box-shadow: var(--shadow-medium);
    width: 100%;
}

.products-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--secondary);
    color: var(--secondary-foreground);
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
}

.products-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.products-content p {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.category-card {
    background: var(--card);
    padding: 1.25rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.category-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.category-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: hsla(152, 55%, 28%, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.category-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.category-card h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.category-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ============================================
   SEÃ‡ÃƒO VÃDEO
   ============================================ */
.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    background: hsla(152, 55%, 28%, 0.2);
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsla(152, 55%, 28%, 0.4), hsla(152, 55%, 28%, 0.6));
}

.video-play-btn {
    width: 5rem;
    height: 5rem;
    background: var(--secondary);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    cursor: pointer;
    transition: transform 0.3s ease;
    border: none;
}

.video-play-btn:hover {
    transform: scale(1.1);
}

.video-play-btn svg {
    width: 2rem;
    height: 2rem;
    color: var(--secondary-foreground);
    margin-left: 4px;
}

.video-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ============================================
   SEÃ‡ÃƒO ESTATÃSTICAS
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    text-align: center;
    background: var(--card);
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.stat-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--primary);
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .stat-value {
        font-size: 3rem;
    }
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.stat-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ============================================
   SEÃ‡ÃƒO CONTATO
   ============================================ */
.contact-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
}

@media (min-width: 1024px) {
    .contact-card {
        padding: 3rem;
    }
}

.contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .contact-header h2 {
        font-size: 2.5rem;
    }
}

.contact-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

/* Form */
.contact-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    height: 3rem;
    padding: 0 1rem;
    font-size: 1rem;
    font-family: var(--font-body);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--background);
    color: var(--foreground);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(152, 55%, 28%, 0.1);
}

.form-group input::placeholder {
    color: var(--muted-foreground);
}

.contact-divider {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.contact-divider p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--foreground);
    color: var(--primary-foreground);
    padding: 2rem 0;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo span:first-child {
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
}

.footer-logo span:last-child {
    font-family: var(--font-display);
    color: var(--secondary);
}

.footer-subtitle {
    color: hsla(0, 0%, 100%, 0.6);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-nav a {
    color: hsla(0, 0%, 100%, 0.8);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    padding-top: 1.5rem;
}

.footer-bottom p {
    color: hsla(0, 0%, 100%, 0.4);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-heart {
    display: inline;
    color: var(--secondary);
}

/* ============================================
   ANIMAÃ‡Ã•ES
   ============================================ */
.fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

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

/* ============================================
   UTILITÃRIOS
   ============================================ */
.text-center {
    text-align: center;
}

.max-w-6xl {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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