/* CSS Base Otimizado - Substitui Tailwind */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.bottom-0 { bottom: 0; }
.right-0 { right: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.w-full { width: 100%; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.h-auto { height: auto; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-12 { height: 3rem; }
.h-20 { height: 5rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mr-4 { margin-right: 1rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.pr-0 { padding-right: 0; }
.pt-8 { padding-top: 2rem; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 2rem; }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.leading-tight { line-height: 1.25; }
.italic { font-style: italic; }
.text-white { color: rgb(255 255 255); }
.text-gray-300 { color: rgb(209 213 219); }
.text-gray-400 { color: rgb(156 163 175); }
.text-gray-500 { color: rgb(107 114 128); }
.text-orange-500 { color: rgb(249 115 22); }
.bg-black { background-color: rgb(0 0 0); }
.bg-gray-800 { background-color: rgb(31 41 55); }
.bg-gray-900 { background-color: rgb(17 24 39); }
.bg-orange-500 { background-color: rgb(249 115 22); }
.bg-opacity-50 { background-color: rgba(0, 0, 0, 0.5); }
.bg-opacity-90 { background-color: rgba(0, 0, 0, 0.9); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.from-black { --tw-gradient-from: #000; --tw-gradient-to: rgba(0, 0, 0, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-transparent { --tw-gradient-to: transparent; }
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-gray-800 { border-color: rgb(31 41 55); }
.border-orange-500 { border-color: rgb(249 115 22); }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.overflow-hidden { overflow: hidden; }
.opacity-20 { opacity: 0.2; }
.hover\:text-orange-500:hover { color: rgb(249 115 22); }
.hover\:bg-orange-600:hover { background-color: rgb(234 88 12); }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.space-x-6 > :not([hidden]) ~ :not([hidden]) { margin-left: 1.5rem; }
.space-x-8 > :not([hidden]) ~ :not([hidden]) { margin-left: 2rem; }

@media (min-width: 768px) {
    .md\:mb-0 { margin-bottom: 0; }
    .md\:flex { display: flex; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:flex-row { flex-direction: row; }
    .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
}

@media (min-width: 1024px) {
    .lg\:mb-0 { margin-bottom: 0; }
    .lg\:w-1\/2 { width: 50%; }
    .lg\:flex-row { flex-direction: row; }
    .lg\:pr-10 { padding-right: 2.5rem; }
    .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .lg\:text-5xl { font-size: 3rem; line-height: 1; }
}

:root {
    --orange: #FF6600;
    --black: #000000;
    --dark-gray: #111111;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--black);
    overflow-x: hidden;
}

.texture-bg {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.btn-primary {
    background-color: var(--orange);
    color: var(--white);
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--orange);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
}

.vsl-container {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 102, 0, 0.3);
    transform: scale(1);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.vsl-container:hover {
    transform: scale(1.02);
}

.section-divider {
    height: 5px;
    width: 100px;
    background-color: var(--orange);
    margin: 1.5rem 0;
}

.faq-item {
    border-bottom: 1px solid #333;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

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

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

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

.faq-icon {
    transition: transform 0.3s ease;
}

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

.price-tag {
    background-color: var(--orange);
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    padding: 1rem 2rem;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.4);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.price-tag.clickable {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.price-tag.clickable:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 102, 0, 0.6);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    background-color: rgba(255, 102, 0, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.nav-link {
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--orange);
    transition: width 0.3s ease;
}

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

.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 4px 6px rgba(255, 102, 0, 0.5));
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 20px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding-top: 70px;
}

.animate-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-element.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-left.animated, .animate-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

.animate-fade {
    opacity: 0;
    transition: opacity 1s ease;
}

.animate-fade.animated {
    opacity: 1;
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* Timer de Contagem Regressiva */
.countdown-container {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(0, 0, 0, 0.8));
    border: 2px solid var(--orange);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.countdown-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 102, 0, 0.05) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.countdown-title {
    color: var(--orange);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 8px;
    padding: 0.75rem 0.5rem;
    min-width: 60px;
    position: relative;
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.countdown-label {
    font-size: 0.7rem;
    color: var(--gray-400);
    margin-top: 0.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.countdown-progress {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.countdown-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), #ff8c42);
    border-radius: 4px;
    width: 94%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.countdown-status {
    color: var(--gray-300);
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Seção com imagem de fundo */
.section-with-bg-image {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Cards de benefícios centralizados */
.benefit-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05), transparent);
    pointer-events: none;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 102, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
}

.benefit-icon-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange), #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
}

.benefit-icon-large svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Ajustes no section-divider para centralização */
.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), #ff8c42);
    border-radius: 2px;
    margin-bottom: 2rem;
}

/* Responsivo para a nova estrutura */
@media (max-width: 768px) {
    .section-with-bg-image {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon-large {
        width: 50px;
        height: 50px;
    }
}

.t-black {
    color: black;
}