/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Importando a fonte Prosa GT */
@font-face {
    font-family: 'Prosa GT';
    src: url('ProsaGT-Bold.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Next';
    src: url('AvenirNextLTPro-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

section {
    margin: 0 !important;
    padding-top: 0rem;
    padding-bottom: 0rem;
    scroll-margin-top: 90px; /* ou ajuste conforme a altura do seu menu fixo */
}

:root {
    --primary-color: #cffb52;
    --primary-dark: #b8f542;
    --secondary-color: #ff6b6b;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --gray-color: #666666;
    --light-gray: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #cffb52, #b8f542);
    --gradient-dark: linear-gradient(135deg, #1a1a1a, #333333);
    --shadow-light: 0 4px 20px rgba(207, 251, 82, 0.2);
    --shadow-dark: 0 8px 40px rgba(0, 0, 0, 0.1);
    --border-radius: 15px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    scroll-behavior: auto;
}

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

/* Typography */
.section-title {
    font-family: 'Prosa GT', 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 300px;
    height: 1px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(207, 251, 82, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-brand h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-color);
}

.nav-brand .highlight {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(207, 251, 82, 0.5);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--dark-color);
    transform: translateY(-2px);
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--dark-color);
    color: var(--primary-color);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: #333;
}

/* Hero Section */
#hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
    overflow: hidden;
    margin: 0;
    background: url('VGVGV.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

/* Desktop background */
@media (min-width: 769px) {
    #hero {
        background: url('/hero-desktop.webp');
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
    }
}

/* Mobile background */
@media (max-width: 768px) {
    #hero {
        background: url('/fundo1.webp');
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
    }
}

#hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: heroShimmer 4s infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes heroShimmer {
    0% { 
        transform: translateX(-100%) translateY(-100%) rotate(45deg); 
    }
    100% { 
        transform: translateX(100%) translateY(100%) rotate(45deg); 
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(207, 251, 82, 0.9), rgba(184, 245, 66, 0.8)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    margin: 0;
    padding: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 107, 107, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(207, 251, 82, 0.4) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

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

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    margin: 0;
    padding: 0;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: slideInUp 1s ease-out;
}

.soneca {
    color: var(--gray-color);
    text-decoration: line-through;
    opacity: 0.7;
}

.viva {
    color: var(--secondary-color);
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
    animation: pulse 2s infinite;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--dark-color);
    opacity: 0.9;
    animation: slideInUp 1s ease-out 0.3s both;
}

.hero-cta {
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-tagline {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark-color);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(207, 251, 82, 0.4);
}

.btn-primary.large {
    padding: 1.5rem 4rem;
    font-size: 1.4rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    margin: 0;
    padding: 0;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--dark-color);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

/* Countdown Section */
.countdown-section {
    padding: 6rem 0;
    background: var(--gradient-dark);
    color: var(--light-color);
    text-align: center;
    margin: 0;
    margin-top: 0;
    border-top: none;
}

.countdown-section .section-title {
    color: var(--light-color);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.1rem;
    margin-bottom: 1rem;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.timer-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 0.3rem 0.2rem;
    min-width: 35px;
    max-width: 60px;
    flex: 1;
    border: 1px solid rgba(207, 251, 82, 0.3);
    transition: var(--transition);
    text-align: center;
}

.timer-box:hover {
    transform: translateY(-2px);
    background: rgba(207, 251, 82, 0.1);
}

.timer-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(207, 251, 82, 0.5);
    line-height: 1.2;
}

.timer-label {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    line-height: 1;
    margin-top: 0.2rem;
}

.timer-separator {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-color);
    animation: blink 1s infinite;
    flex: 0 0 auto;
    width: 10px;
    text-align: center;
}

/* Mobile específico para cronômetro */
@media (max-width: 768px) {
    .countdown-timer {
        gap: 0.05rem;
        padding: 0 0.5rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .timer-box {
        padding: 0.2rem 0.1rem;
        min-width: 20%;
        max-width: 25%;
        border-radius: 8px;
    }
    
    .timer-number {
        font-size: 1rem;
    }
    
    .timer-label {
        font-size: 0.4rem;
        letter-spacing: 0.3px;
    }
    
    .timer-separator {
        font-size: 0.8rem;
        width: 8px;
    }
}

@media (max-width: 480px) {
    .countdown-timer {
        gap: 0.03rem;
        padding: 0 0.3rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .timer-box {
        padding: 0.15rem 0.05rem;
        min-width: 20%;
        max-width: 25%;
        border-radius: 6px;
    }
    
    .timer-number {
        font-size: 0.9rem;
    }
    
    .timer-label {
        font-size: 0.35rem;
        letter-spacing: 0.2px;
    }
    
    .timer-separator {
        font-size: 0.7rem;
        width: 6px;
    }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.countdown-cta {
    margin-top: 2rem;
}

.btn-countdown {
    background: var(--gradient-primary);
    color: var(--dark-color);
    border: none;
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(207, 251, 82, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(207, 251, 82, 0.3);
    }
    50% {
        box-shadow: 0 8px 40px rgba(207, 251, 82, 0.5);
        transform: scale(1.02);
    }
}

.countdown-warning {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--light-gray);
    margin: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.highlight-box {
    background: var(--gradient-primary);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    color: var(--dark-color);
    box-shadow: var(--shadow-light);
}

.highlight-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-image {
    position: relative;
}

.image-placeholder {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    border: 2px dashed #adb5bd;
    border-radius: var(--border-radius);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--gray-color);
    font-weight: 600;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.image-placeholder:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(207, 251, 82, 0.1), rgba(184, 245, 66, 0.1));
}

.image-placeholder.small {
    min-height: 60px;
    padding: 1rem;
    font-size: 2rem;
}

/* Experience Section */
.experience-section {
    padding: 6rem 0;
    background: var(--light-color);
    margin: 0;
}

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

.experience-card {
    background: var(--light-color);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-dark);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.experience-card:hover::before {
    transform: scaleX(1);
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.experience-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
}

.experience-card p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: var(--light-gray);
    margin: 0;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item .image-placeholder {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--light-color);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--light-color);
    margin: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-dark);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-color);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-info h4 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--light-gray);
    margin: 0;
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--light-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    transition: var(--transition);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(207, 251, 82, 0.1);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: var(--transition);
}

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

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-answer p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: var(--gradient-dark);
    color: var(--light-color);
    text-align: center;
    margin: 0;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cta-content > p {
    font-size: 1.3rem;
    margin-bottom: 4rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Card Profissional */
.pricing-container {
    display: flex;
    justify-content: center;
    margin: 4rem 0;
}

.pricing-card {
    background: var(--light-color);
    color: var(--dark-color);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #b8f542);
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(207, 251, 82, 0.15), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { 
        transform: translateX(-100%) translateY(-100%) rotate(45deg); 
    }
    100% { 
        transform: translateX(100%) translateY(100%) rotate(45deg); 
    }
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--dark-color);
    line-height: 1;
    margin: 0 0.2rem;
}

.cents {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
}

.price-description {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin: 0;
}

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

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.feature-check {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.feature-item span:last-child {
    font-size: 0.95rem;
    color: var(--dark-color);
    font-weight: 500;
}

.btn-purchase {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: var(--dark-color);
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 1.5rem auto;
    white-space: nowrap;
    text-align: center;
    box-sizing: border-box;
}

/* 🔧 Ajuste para telas estreitas como iPhone SE */
@media (max-width: 400px) {
  .btn-purchase {
    padding: 1rem 1rem; /* reduz padding horizontal */
    font-size: 1rem;    /* reduz um pouco a fonte */
  }
}


.btn-purchase:hover {
    background: #b8f542;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(207, 251, 82, 0.3);
}

.purchase-info {
    text-align: center;
    margin-top: 1.5rem;
}

.purchase-info p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.limited-offer {
    color: #ff6b6b;
    font-weight: 600;
}

.satisfaction {
    color: var(--primary-color);
    font-weight: 600;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.trust-item {
    text-align: center;
    min-width: 150px;
    flex: 1;
    max-width: 200px;
}

.trust-item strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(207, 251, 82, 0.5);
    line-height: 1;
}

.trust-item span {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 600;
    color: var(--light-color);
    line-height: 1.2;
}

/* Mobile: Estatísticas em uma linha - CORRIGIDO */
@media (max-width: 768px) {
    .trust-indicators {
        gap: 0.5rem;
        flex-direction: row;
        justify-content: space-between;
        padding: 1.5rem 0.5rem;
        flex-wrap: nowrap;
        margin-top: 2rem;
        width: 100%;
        max-width: calc(100vw - 2rem);
        margin-left: auto;
        margin-right: auto;
    }
    
    .trust-item {
        min-width: auto;
        flex: 1;
        max-width: none;
        padding: 0 0.2rem;
    }
    
    .trust-item strong {
        font-size: 1.4rem;
        margin-bottom: 0.2rem;
        white-space: nowrap;
    }
    
    .trust-item span {
        font-size: 0.65rem;
        line-height: 1.1;
        word-wrap: break-word;
        hyphens: auto;
    }
}

@media (max-width: 480px) {
    .trust-indicators {
        gap: 0.3rem;
        padding: 1rem 0.3rem;
        max-width: calc(100vw - 1.5rem);
    }
    
    .trust-item {
        padding: 0 0.1rem;
    }
    
    .trust-item strong {
        font-size: 1.2rem;
        margin-bottom: 0.1rem;
    }
    
    .trust-item span {
        font-size: 0.55rem;
        line-height: 1;
    }
}

@media (max-width: 375px) {
    .trust-indicators {
        gap: 0.2rem;
        padding: 1rem 0.2rem;
        max-width: calc(100vw - 1rem);
    }
    
    .trust-item strong {
        font-size: 1.1rem;
    }
    
    .trust-item span {
        font-size: 0.5rem;
    }
}

/* Footer Profissional */
.footer {
    background: #1a1a1a;
    color: var(--light-color);
    padding: 4rem 0 2rem;
    margin: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-brand .highlight {
    color: var(--primary-color);
}

.footer-brand p {
    margin-bottom: 0.8rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.footer-contact li {
    opacity: 0.8;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
    font-size: 0.95rem;
}

.social-links a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: var(--light-color);
    text-decoration: none;
    opacity: 0.7;
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--primary-color);
    opacity: 1;
}

/* Responsividade para pricing e footer */
@media (max-width: 768px) {
    .pricing-card {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .trust-indicators {
        gap: 2rem;
        flex-direction: row;
        justify-content: space-around;
        padding: 1.5rem;
    }
    
    .trust-item {
        min-width: 100px;
        flex: 1;
        max-width: none;
    }
    
    .trust-item strong {
        font-size: 2rem;
    }
    
    .trust-item span {
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .legal-links {
        justify-content: center;
        gap: 1rem;
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
    
    /* Hero Mobile */
    #hero {
        height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    /* Countdown Mobile */
    .countdown-timer {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 3rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 1rem;
    }
    
    .timer-box {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--border-radius);
        padding: 1rem 0.8rem;
        min-width: 70px;
        flex: 0 0 auto;
        border: 1px solid rgba(207, 251, 82, 0.3);
        transition: var(--transition);
    }
    
    .timer-number {
        display: block;
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--primary-color);
        text-shadow: 0 0 20px rgba(207, 251, 82, 0.5);
    }
    
    .timer-label {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0.8;
    }
    
    .timer-separator {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--primary-color);
        animation: blink 1s infinite;
        flex: 0 0 auto;
        align-self: center;
    }
    
    .countdown-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    /* Section Titles Mobile */
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    /* About Section Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .highlight-box {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .highlight-box h3 {
        font-size: 1.1rem;
    }
    
    /* Experience Cards Mobile */
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .experience-card {
        padding: 2rem 1.5rem;
    }
    
    .card-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .experience-card h3 {
        font-size: 1.2rem;
    }
    
    .experience-card p {
        font-size: 0.95rem;
    }
    
    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    /* FAQ Mobile */
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem;
    }
    
    /* Buttons Mobile */
    .btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    .btn-primary.large {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .btn-countdown {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 320px;
    }
    
    .btn-nav {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* CTA Final Mobile */
    .cta-content h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-urgency {
        font-size: 0.9rem;
    }
    
    .social-proof p {
        font-size: 1rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-brand h3 {
        font-size: 1.3rem;
    }
    
    /* Sections Padding Mobile */
    .countdown-section,
    .about-section,
    .experience-section,
    .gallery-section,
    .testimonials-section,
    .faq-section,
    .final-cta {
        padding: 4rem 0;
    }
    
    /* Image Placeholders Mobile */
    .image-placeholder {
        padding: 3rem 1.5rem;
        min-height: 200px;
        font-size: 0.9rem;
    }
    
    .image-placeholder.small {
        min-height: 50px;
        padding: 0.8rem;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    /* Navigation Extra Small */
    .nav-brand h1 {
        font-size: 1.3rem;
    }
    
    /* Hero Extra Small */
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
    }
    
    /* Countdown Extra Small */
    .countdown-timer {
        gap: 0.3rem;
    }
    
    .timer-box {
        padding: 0.8rem 0.5rem;
        min-width: 60px;
        max-width: 70px;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
    
    .timer-label {
        font-size: 0.6rem;
    }
    
    .timer-separator {
        font-size: 1.2rem;
        margin: 0 0.2rem;
    }
    
    .countdown-subtitle {
        font-size: 1rem;
    }
    
    /* Section Titles Extra Small */
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    /* About Extra Small */
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .highlight-box {
        padding: 1.2rem;
    }
    
    .highlight-box h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    /* Experience Extra Small */
    .experience-card {
        padding: 1.5rem 1rem;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .experience-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .experience-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Testimonials Extra Small */
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .author-info h4 {
        font-size: 0.95rem;
    }
    
    .author-info p {
        font-size: 0.8rem;
    }
    
    /* FAQ Extra Small */
    .faq-question {
        padding: 1rem 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Buttons Extra Small */
    .btn-primary {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-primary.large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .btn-countdown {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* CTA Final Extra Small */
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .cta-urgency {
        font-size: 0.85rem;
    }
    
    .social-proof p {
        font-size: 0.95rem;
    }
    
    /* Sections Padding Extra Small */
    .countdown-section,
    .about-section,
    .experience-section,
    .gallery-section,
    .testimonials-section,
    .faq-section,
    .final-cta {
        padding: 3rem 0;
    }
    
    /* Image Placeholders Extra Small */
    .image-placeholder {
        padding: 2rem 1rem;
        min-height: 150px;
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    /* Footer Extra Small */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-brand h3 {
        font-size: 1.2rem;
    }
    
    .footer-brand p,
    .footer-links p {
        font-size: 0.9rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    /* Scroll Indicator Mobile */
    .scroll-indicator {
        bottom: 1rem;
    }
    
    .scroll-arrow {
        width: 25px;
        height: 25px;
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .btn-nav {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .timer-box {
        min-width: 80px;
        padding: 1.5rem 1rem;
    }
    
    .timer-number {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Melhorias visuais profissionais */
.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    margin: 0;
    font-weight: 600;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover p {
    transform: translateY(0);
}

/* Melhorias nos botões */
.btn-primary, .btn-countdown, .btn-purchase {
    position: relative;
    overflow: hidden;
}

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

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

/* Melhorias nas animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.experience-card, .testimonial-card, .faq-item {
    animation: fadeInUp 0.6s ease-out;
}

.experience-card:nth-child(2) {
    animation-delay: 0.1s;
}

.experience-card:nth-child(3) {
    animation-delay: 0.2s;
}

.experience-card:nth-child(4) {
    animation-delay: 0.3s;
}


/* Animação da logo */
.animated-logo {
    animation: logoFloat 3s ease-in-out infinite, logoGlow 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 10px rgba(207, 251, 82, 0.5));
    transition: all 0.3s ease;
}

.animated-logo:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(207, 251, 82, 0.8));
}

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

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(207, 251, 82, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(207, 251, 82, 0.8));
    }
}

.logo-container {
    position: relative;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(207, 251, 82, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}


/* Menu Mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    order: 2;
    margin-left: auto;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Responsividade do menu */
@media (max-width: 768px) {
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(207, 251, 82, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
        padding-top: 3rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--dark-color);
        text-decoration: none;
        padding: 1rem 2rem;
        border-radius: 10px;
        transition: all 0.3s ease;
        width: 80%;
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        display: block;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .btn-nav {
        background: var(--dark-color);
        color: var(--primary-color);
        border: none;
        padding: 1rem 2rem;
        border-radius: 25px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        font-size: 1.1rem;
        width: 80%;
        text-align: center;
        margin-top: 1rem;
    }
    
    .btn-nav:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
        background: #333;
    }
}

/* Melhorias adicionais no design */
.experience-card {
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(207, 251, 82, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.experience-card:hover::before {
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

/* Animações de entrada */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.fade-in-up:nth-child(4) { animation-delay: 0.4s; }

/* Melhorias no cronômetro */
.timer-box {
    position: relative;
    overflow: hidden;
}

.timer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(207, 251, 82, 0.2), transparent);
    animation: timerShine 3s infinite;
}

@keyframes timerShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Efeitos de partículas no hero */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(207, 251, 82, 0.6);
    border-radius: 50%;
    animation: floatParticle 15s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Melhorias nos botões */
.btn-primary, .btn-countdown, .btn-nav {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.btn-primary:active, .btn-countdown:active, .btn-nav:active {
    transform: translateY(2px);
}

/* Gradientes animados */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animated-gradient {
    background: linear-gradient(-45deg, #cffb52, #b8f542, #a8e532, #98d522);
    background-size: 400% 400%;
    animation: gradientShift 4s ease infinite;
}

/* Sombras dinâmicas */
.dynamic-shadow {
    transition: all 0.3s ease;
}

.dynamic-shadow:hover {
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(207, 251, 82, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Melhorias na tipografia */
.enhanced-text {
    background: linear-gradient(135deg, #1a1a1a, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Loading states */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}



/* Trust Indicators Section */
.trust-indicators {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 1.5rem 1rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-dark);
    color: var(--light-color);
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
    padding: 0.5rem;
}

.trust-item strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.trust-item span {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .trust-indicators {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 0.5rem;
    }

    .trust-item {
        min-width: unset;
        flex: 1;
        padding: 0.3rem;
    }

    .trust-item strong {
        font-size: 1.5rem;
    }

    .trust-item span {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .trust-indicators {
        flex-direction: row;
        justify-content: space-around;
        padding: 0.8rem 0.2rem;
    }

    .trust-item {
        min-width: unset;
        flex: 1;
        padding: 0.2rem;
    }

    .trust-item strong {
        font-size: 1.2rem;
    }

    .trust-item span {
        font-size: 0.6rem;
    }
}


