/* Fórmula Dark - Versão Responsiva Aprimorada */
/* Baseado nas técnicas do Premium Fit para máxima compatibilidade */

/* ===== CSS VARIABLES PARA MELHOR MANUTENIBILIDADE ===== */
:root {
    --primary-gold: #FFD700;
    --primary-orange: #FFA500;
    --accent-red: #FF3030;
    --text-white: #ffffff;
    --text-light: #cccccc;
    --text-dark: #000000;
    --background-black: #000000;
    --background-dark: #1a1a1a;
    --background-darker: #111111;
    --background-darkest: #0a0a0a;
    --border-gold: rgba(255, 215, 0, 0.3);
    --shadow-gold: rgba(255, 215, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET E CONFIGURAÇÕES GERAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', Arial, sans-serif;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-black);
    color: var(--text-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ===== IMAGENS RESPONSIVAS ===== */
img {
    max-width: 100%;
    height: auto;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

.clickable-image {
    pointer-events: auto;
}

/* ===== ESTILIZAÇÃO DA BARRA DE ROLAGEM ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--background-black);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-gold) 0%, var(--primary-orange) 100%);
    border-radius: 10px;
    border: 2px solid var(--background-black);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-orange) 0%, var(--primary-gold) 100%);
}

/* ===== MENU FIXO RESPONSIVO ===== */
.fixed-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 0;
    transition: all var(--transition-medium);
    border-bottom: 1px solid var(--border-gold);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
}

/* Ajuste de espaçamento do logo apenas no desktop */
@media (min-width: 769px) {
    .navbar-brand .logo {
        margin-right: 20px;
    }
}

.logo-formula {
    color: var(--text-white);
}

.logo-dark {
    color: var(--primary-gold);
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.navbar-menu li a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-medium);
    padding: 8px 16px;
    border-radius: 5px;
    white-space: nowrap;
}

.navbar-menu li a:hover {
    color: var(--primary-gold);
    background-color: rgba(255, 215, 0, 0.1);
}

.cta-button-nav {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-orange) 100%);
    color: var(--text-dark) !important;
    padding: 12px 24px !important;
    border-radius: 25px !important;
    font-weight: bold !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-medium);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    white-space: nowrap !important;
    display: inline-block !important;
}

.cta-button-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-gold) 100%);
}

/* ===== MENU HAMBURGER ===== */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    transition: all var(--transition-medium);
    border-radius: 2px;
}

/* ===== AJUSTE DO BODY PARA COMPENSAR MENU FIXO ===== */
body {
    padding-top: 70px;
}

/* ===== HEADER E SEÇÕES PRINCIPAIS ===== */
header {
    background-color: var(--background-black);
    color: var(--text-white);
    padding: 15px 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

.headline-bar {
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-orange) 100%);
    color: var(--text-dark);
    padding: 12px 0;
    text-align: center;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.main-headline {
    background-color: var(--background-black);
    color: var(--text-white);
    padding: 30px 0;
    text-align: center;
    position: relative;
}

.main-headline h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    transition: all var(--transition-medium);
}

.main-headline h1:hover {
    text-shadow: 0 2px 15px rgba(255, 215, 0, 0.5);
}

.main-headline h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary-gold);
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-gold);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform var(--transition-medium);
}

.highlight:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* ===== VÍDEO RESPONSIVO ===== */
.video-container {
    background-color: var(--background-black);
    padding: 30px 0;
    text-align: center;
}

.video-placeholder {
    background-color: var(--background-dark);
    width: 100%;
    max-width: 955px;
    height: 0;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-dark);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.video-placeholder:hover {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
    transform: translateY(-5px);
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }
    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

/* ===== SEÇÕES DE CONTEÚDO ===== */
.creator-section {
    background-color: var(--background-black) !important;
    padding: 50px 0;
    text-align: center;
}

.creator-section h2 {
    color: var(--text-white) !important;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.creator-section h3 {
    color: var(--text-white) !important;
    font-size: 1.8rem;
}

.creator-section p {
    color: var(--text-light) !important;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.creator-section img {
    border: 3px solid var(--primary-gold) !important;
}

/* ===== BENEFÍCIOS ===== */
.benefits {
    background-color: var(--background-darker);
    padding: 70px 0;
    position: relative;
}

.benefits h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.8s ease-out;
}

.benefits h2.is-visible {
    opacity: 1;
    transform: translateX(-50%);
}

.benefits h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 25%;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0), rgba(255, 215, 0, 1), rgba(255, 215, 0, 0));
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--background-dark);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 3px 10px var(--shadow-gold);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-bottom: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-bottom: 3px solid var(--primary-gold);
    box-shadow: 0 15px 30px var(--shadow-dark);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card h3 {
    color: var(--text-white);
    margin-bottom: 15px;
    font-size: 1.4rem;
    position: relative;
}

.benefit-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-gold);
    transition: width var(--transition-medium);
}

.benefit-card:hover h3::after {
    width: 60px;
}

/* ===== DEPOIMENTOS ===== */
.testimonials {
    background-color: var(--background-black) !important;
    padding: 50px 0;
}

.testimonials h2 {
    color: var(--text-white) !important;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.testimonial-card {
    background-color: var(--background-dark) !important;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 3px 10px var(--shadow-gold) !important;
    transition: all var(--transition-medium);
    border-left: 3px solid var(--primary-gold) !important;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2) !important;
}

.testimonial-card img {
    width: 100% !important;
    border-radius: 5px !important;
    margin-bottom: 15px !important;
    transition: transform 0.3s ease !important;
    cursor: pointer;
}

.testimonial-card img:hover {
    transform: scale(1.05) !important;
}

.testimonial-card p {
    color: var(--text-light) !important;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-card p:last-child {
    color: var(--primary-gold) !important;
    font-weight: bold;
    font-style: normal;
    margin-top: 10px;
}

/* ===== PRODUTOS ===== */
.products {
    background-color: var(--background-black);
    padding: 70px 0;
    text-align: center;
}

.products h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.products h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 25%;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0), rgba(255, 215, 0, 1), rgba(255, 215, 0, 0));
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background-color: var(--background-dark);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 3px 10px var(--shadow-gold);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    z-index: -1;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: transform var(--transition-slow);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    color: var(--text-white);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* ===== SEÇÃO DE BÔNUS ===== */
.bonus-section {
    background-color: var(--background-black);
    color: var(--text-white);
    padding: 70px 0;
    text-align: center;
    position: relative;
}

.bonus-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    animation: pulse-text 2s infinite;
}

@keyframes pulse-text {
    0% {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    100% {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }
}

.bonus-section h3 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.bonus-section h3::before,
.bonus-section h3::after {
    content: '★';
    color: var(--primary-gold);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0.8;
}

.bonus-section h3::before {
    left: -30px;
}

.bonus-section h3::after {
    right: -30px;
}

.bonus-card {
    background-color: var(--background-dark);
    border-radius: 10px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid var(--border-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(255, 215, 0, 0.1) 0%,
        rgba(0, 0, 0, 0) 70%
    );
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.bonus-card:hover::before {
    opacity: 1;
}

/* ===== SEÇÃO DE PREÇOS ===== */
.pricing {
    background-color: var(--background-darkest);
    padding: 70px 0;
    text-align: center;
    position: relative;
}

.pricing h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.pricing-container-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-left-column {
    flex: 1;
    padding-right: 20px;
}

.access-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 25px;
    color: var(--text-white);
    position: relative;
    display: inline-block;
}

.access-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0), rgba(255, 215, 0, 1), rgba(255, 215, 0, 0));
}

.access-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.access-list li {
    margin-bottom: 20px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    transition: transform var(--transition-medium);
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-gold);
    white-space: nowrap;
}

.access-list li:hover {
    transform: translateX(5px);
}

.checkmark {
    color: var(--primary-gold);
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
}

.strikethrough {
    text-decoration: line-through;
    color: #666666;
    margin-left: 5px;
    white-space: nowrap;
}

.pricing-right-column {
    flex-basis: 400px;
    flex-shrink: 0;
}

.price-card {
    background-color: var(--background-dark);
    border-radius: 15px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    margin-top: -50px;
    margin-bottom: -50px;
    position: relative;
    z-index: 1;
    border: 1px solid var(--border-gold);
    transition: all 0.4s ease;
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 215, 0, 0.4);
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        rgba(255, 215, 0, 0.05) 0%,
        rgba(0, 0, 0, 0) 70%
    );
    opacity: 0;
    transition: opacity var(--transition-slow);
    border-radius: 15px;
    z-index: -1;
}

.price-card:hover::before {
    opacity: 1;
}

.price-card-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.price-card-subtitle {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.price-card-main {
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 5px;
    font-weight: 300;
}

.price-value {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.price-card-alternative {
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 30px;
}

/* ===== BOTÕES CTA ===== */
.cta-button-new-price {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-orange) 100%);
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: bold;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.cta-button-new-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0) 100%
    );
    transition: all var(--transition-slow);
}

.cta-button-new-price:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-gold) 100%);
}

.cta-button-new-price:hover::before {
    left: 100%;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 398px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-orange) 100%);
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0;
    border-radius: 5px;
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse 2s infinite;
    box-sizing: border-box;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0) 100%
    );
    transition: all var(--transition-slow);
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-gold) 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-button:hover::before {
    left: 100%;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* ===== GARANTIA ===== */
.guarantee {
    margin-top: 150px;
    text-align: center;
    padding: 70px 0;
    position: relative;
}

.guarantee h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.guarantee h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 25%;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0), rgba(255, 215, 0, 1), rgba(255, 215, 0, 0));
}

.guarantee-box {
    background-color: var(--background-dark);
    border: 2px dashed var(--primary-gold);
    border-radius: 10px;
    padding: 40px 30px;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.guarantee-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-style: solid;
}

.guarantee-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        rgba(255, 215, 0, 0.05) 0%,
        rgba(0, 0, 0, 0) 70%
    );
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.guarantee-box:hover::before {
    opacity: 1;
}

.guarantee-seal-image {
    width: 120px;
    height: auto;
    margin-bottom: 25px;
}

/* ===== FAQ ===== */
.faq {
    background-color: var(--background-black);
    padding: 70px 0 30px 0;
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.8s ease-out;
}

.faq h2.is-visible {
    opacity: 1;
    transform: translateX(-50%);
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 25%;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0), rgba(255, 215, 0, 1), rgba(255, 215, 0, 0));
}

.faq-item {
    background-color: var(--background-dark);
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 2px 8px var(--shadow-gold);
    transition: all var(--transition-medium);
    border-left: 3px solid transparent;
}

.faq-item:hover {
    border-left: 3px solid var(--primary-gold);
    transform: translateX(5px);
}

.faq-question {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-white);
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    transition: color var(--transition-medium);
}

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

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-gold);
    transition: transform var(--transition-medium);
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height var(--transition-slow), opacity var(--transition-slow), padding-top var(--transition-slow);
    padding-top: 0;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding-top: 15px;
}

/* ===== SEÇÃO DE SUPORTE ===== */
.support-box-section {
    padding: 30px 0 100px 0;
    position: relative;
    background-color: var(--background-black);
}

.support-box {
    width: 100%;
    max-width: 816px;
    height: auto;
    min-height: 341px;
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
    background-color: var(--background-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    box-sizing: border-box;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

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

.support-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.support-box p {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-white);
    margin-bottom: 30px;
    max-width: 90%;
    line-height: 1.6;
}

.support-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-orange) 100%);
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: all var(--transition-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    white-space: nowrap;
}

.support-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-gold) 100%);
}


/* ===== FOOTER ===== */
.site-footer {
    background-color: var(--background-black);
    color: var(--text-white);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--border-gold);
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 15px;
    transition: color var(--transition-medium);
}

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

/* ===== ANIMAÇÕES ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

.animate-slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
}

.animate-slide-in-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.slide-in-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-out;
}

.slide-in-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== CLASSES UTILITÁRIAS ===== */
.user-enlarged-text {
    font-size: 1.1rem;
    line-height: 1.7;
}

.highlight-yellow {
    background-color: var(--primary-gold);
    color: #111A23;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: bold;
}

.bonus-alert {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-orange) 100%);
    color: var(--text-dark);
    padding: 8px 18px;
    border-radius: 6px;
    display: inline-block;
    font-weight: bold;
    font-size: 1.08rem;
    margin-bottom: 16px;
    animation: pulse-border 2s infinite;
    font-family: 'Montserrat', Arial, sans-serif;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.12);
    max-width: 100%;
    word-wrap: break-word;
    text-align: center;
}

.highlight-red {
    background-color: var(--accent-red);
    color: #fff;
    padding: 2px 7px;
    border-radius: 3px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(255, 48, 48, 0.14);
    white-space: normal;
    display: inline-block;
}

.acesso-metodo-formula {
    color: var(--text-white);
    font-size: 1.45rem;
    font-weight: 700;
    font-family: 'Montserrat', Arial, sans-serif;
    margin-top: 0;
    margin-bottom: 26px;
    letter-spacing: 0.01em;
    text-align: center;
}

.nowrap {
    white-space: nowrap;
}

/* ===== MEDIA QUERIES RESPONSIVAS ===== */

/* Tablets e telas médias (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .pricing-container-flex {
        gap: 40px;
    }
    
    .navbar-menu {
        gap: 20px;
    }
    
    .navbar-menu li a {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .cta-button-nav {
        padding: 10px 20px !important;
        font-size: 0.9rem;
    }
}

/* Tablets em modo retrato (768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Menu hamburger */
    .hamburger-menu {
        display: flex;
    }
    
    .navbar-menu {
        position: fixed;
        top: 58px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 0px);
        background-color: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
        padding-top: 50px;
        transition: left var(--transition-medium);
    }

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

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

    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Headlines responsivos */
    .main-headline h1 {
        font-size: 2rem;
    }
    
    .main-headline h2 {
        font-size: 1.5rem;
    }
    
    /* Vídeo responsivo */
    .video-placeholder {
        width: 100%;
        min-width: 0;
        aspect-ratio: 16 / 9;
        height: auto;
        padding-bottom: 56.25%;
    }
    
    /* Seções responsivas */
    .benefits h2.is-visible,
    .faq h2.is-visible {
        transform: translateX(-50%);
    }
    
    /* Pricing responsivo */
    .pricing-container-flex {
        flex-direction: column;
        gap: 20px;
    }
    
    .pricing-left-column {
        padding-right: 0;
        width: 95%;
        margin: 0 auto;
    }
    
    .price-card {
        margin-top: 0;
        margin-bottom: 0;
        padding: 30px 15px;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Grids responsivos */
    .benefits-grid,
    .products-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Suporte responsivo */
    .support-box {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 20px 15px;
    }
    
    .support-box p {
        font-size: 1.5rem;
        max-width: 95%;
    }
    
    /* Botões responsivos */
    .cta-button {
        width: 98%;
        max-width: 350px;
        font-size: 1.2rem;
        height: 60px;
    }
    
    .cta-button-new-price {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    /* Imagens de produtos responsivas */
    .product-card img {
        height: 310px;
    }
}

/* Smartphones (480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    /* Headlines ainda menores */
    .main-headline h1 {
        font-size: 1.7rem;
        line-height: 1.2;
    }
    
    .main-headline h2 {
        font-size: 1.3rem;
    }
    
    /* Navbar brand menor */
    .navbar-brand .logo {
        font-size: 1.5rem;
    }
    
    /* Seções com menos padding */
    .benefits,
    .products,
    .bonus-section,
    .pricing,
    .guarantee,
    .faq {
        padding: 40px 0;
    }
    
    /* Cards com menos padding */
    .benefit-card,
    .product-card,
    .testimonial-card,
    .bonus-card,
    .faq-item {
        padding: 20px;
    }
    
    /* Preços menores */
    .price-value {
        font-size: 2.5rem;
    }
    
    .price-card {
        padding: 25px 15px;
    }
    
    /* Suporte ainda menor */
    .support-box p {
        font-size: 1.3rem;
    }
    
    /* Botões menores */
    .cta-button {
        width: 98%;
        max-width: 280px;
        font-size: 1.1rem;
        height: 55px;
    }
    
    /* Garantia responsiva */
    .guarantee-box {
        padding: 30px 20px;
    }
    
    /* Highlights responsivos */
    .bonus-alert {
        font-size: 0.95rem;
        padding: 6px 12px;
        line-height: 1.3;
        display: block;
        margin: 0 auto 16px auto;
        max-width: 95%;
    }
    
    .highlight-red {
        white-space: normal;
        display: block;
        text-align: center;
        margin: 0 auto;
    }
}

/* Smartphones muito pequenos (320px) */
@media (max-width: 320px) {
    .main-headline h1 {
        font-size: 1.5rem;
    }
    
    .main-headline h2 {
        font-size: 1.2rem;
    }
    
    .navbar-brand .logo {
        font-size: 1.3rem;
    }
    
    .price-value {
        font-size: 2rem;
    }
    
    .support-box p {
        font-size: 1.2rem;
    }
    
    .cta-button {
        font-size: 1rem;
        height: 50px;
    }
}

/* ===== OTIMIZAÇÕES DE PERFORMANCE ===== */

/* Reduzir movimento para usuários que preferem */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Suporte a alto contraste */
@media (prefers-contrast: high) {
    .highlight-red,
    .highlight-yellow,
    .bonus-alert {
        outline: 2px solid currentColor;
    }
}

/* ===== GRADIENTES PARA PROFUNDIDADE ===== */
.main-headline {
    background: linear-gradient(180deg, var(--background-black) 0%, var(--background-darker) 100%);
}

.benefits {
    background: linear-gradient(180deg, var(--background-darker) 0%, var(--background-black) 100%);
}

.products {
    background: linear-gradient(180deg, var(--background-black) 0%, var(--background-darker) 100%);
}

/* ===== EFEITOS DE ENTRADA SUAVES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ===== MELHORIAS DE ACESSIBILIDADE ===== */
.cta-button:focus,
.cta-button-new-price:focus,
.support-button:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

.faq-question:focus {
    outline: 1px solid var(--primary-gold);
    outline-offset: 2px;
}

/* ===== TRANSIÇÕES SUAVES ===== */
* {
    transition: all var(--transition-medium);
}



/* Efeitos de Hover para Imagens de Depoimento */
.testimonial-card img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.testimonial-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    z-index: -1;
}

.testimonial-card:hover::before {
    opacity: 1;
}


