/* assets/css/style.css - VERSÃO LIMPA E OTIMIZADA */

:root {
    --primary-color: #6b21a8;
    --secondary-color: #9333ea;
    --accent-color: #c026d3;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: #111111;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-main: linear-gradient(135deg, #6b21a8 0%, #9333ea 50%, #c026d3 100%);
    --shadow-glow: 0 0 30px rgba(147, 51, 234, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 50px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--gradient-main);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-glow);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(107, 33, 168, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(192, 38, 211, 0.15) 0%, transparent 50%);
    z-index: -1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge-urgency {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.5);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    color: #fca5a5;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-main);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-glow);
    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: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.5);
}

.pulse-animation {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(147, 51, 234, 0.4); }
    50% { box-shadow: 0 0 40px rgba(147, 51, 234, 0.8); }
}

.guarantee-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-boxes {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-box {
    position: absolute;
    width: 200px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.box-1 {
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
    z-index: 3;
}

.box-2 {
    top: 30%;
    right: 10%;
    animation: float 6s ease-in-out infinite 1s;
    z-index: 2;
}

.box-3 {
    bottom: 10%;
    left: 30%;
    animation: float 6s ease-in-out infinite 2s;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-secondary);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--gradient-main);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* ============================================
   SECTIONS GLOBAIS
   ============================================ */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 800px;
    margin: -30px auto 50px;
    font-size: 1.1rem;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits {
    background: var(--darker-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(147, 51, 234, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-main);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.benefit-card:hover::before {
    opacity: 0.1;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-glow);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.benefit-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   VIDEO SECTION (YouTube)
   ============================================ */
.video-container.youtube-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 2px solid rgba(147, 51, 234, 0.3);
}

.video-container.youtube-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.video-caption {
    text-align: center;
    margin-top: 30px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ============================================
   GALLERY SECTION (Swiper)
   ============================================ */
.gallery-section {
    background: var(--darker-bg);
    padding: 80px 0;
}

.highlight-text {
    position: relative;
    display: inline-block;
    color: var(--accent-color);
    font-weight: 800;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 150' preserveAspectRatio='none'%3E%3Cpath d='M7.7,145.6C109,125,299.9,116.2,401,121.3c42.1,2.2,87.6,11.8,87.3,25.7' fill='none' stroke='%23c026d3' stroke-width='8'/%3E%3C/svg%3E") no-repeat center;
    background-size: 100% 100%;
    opacity: 0.6;
    z-index: -1;
}

.gallery-swiper {
    padding: 20px 0 50px;
    overflow: hidden;
}

.swiper-slide {
    height: auto;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(107, 33, 168, 0.95), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    color: var(--text-primary);
    background: var(--gradient-main);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(147, 51, 234, 0.4);
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.6);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: var(--text-secondary);
    opacity: 0.5;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--gradient-main);
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
    background: var(--dark-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(147, 51, 234, 0.2);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-glow);
}

.product-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.product-card.featured::before {
    content: 'MAIS POPULAR';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-main);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 10;
}

.product-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1) rotate(-5deg);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-main);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.product-badge.hot {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    animation: pulse 2s infinite;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.product-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.product-features i {
    color: #22c55e;
}

/* ============================================
   CHECKOUT SECTION - CAKTO SIMPLIFICADO
   ============================================ */
.checkout-section {
    background: var(--darker-bg);
    padding: 80px 0;
    position: relative;
}

.checkout-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
}

.checkout-wrapper {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 50px;
    border: 1px solid rgba(147, 51, 234, 0.3);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
}

.checkout-header {
    text-align: center;
    margin-bottom: 40px;
}

.price-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.old-price span:first-child {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.strike {
    text-decoration: line-through;
    color: #ef4444;
    font-size: 1.5rem;
    font-weight: 600;
}

.new-price span:first-child {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.price {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.price-note {
    color: #22c55e;
    font-weight: 600;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.checkout-benefits h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.checkout-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.checkout-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.checkout-list i {
    color: #22c55e;
    font-size: 1.2rem;
}

.guarantee-box {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.guarantee-box img {
    width: 80px;
    height: auto;
}

.guarantee-text-box h4 {
    color: #22c55e;
    margin-bottom: 5px;
}

.guarantee-text-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Formulário Cakto */
.checkout-form-wrapper {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

/* Seletor de Plataforma Cakto */
.single-platform {
    text-align: center;
    margin-bottom: 30px;
}

.platform-highlight {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.1) 0%, rgba(15, 118, 110, 0.1) 100%);
    border: 2px solid #2DD4BF;
    border-radius: 20px;
    padding: 30px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(45, 212, 191, 0.2);
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(45, 212, 191, 0.2); }
    50% { box-shadow: 0 15px 40px rgba(45, 212, 191, 0.4); }
}

.platform-icon-large {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 15px;
}

.platform-highlight h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0;
}

.platform-highlight p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* Formulário */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(147, 51, 234, 0.3);
    background: rgba(0,0,0,0.3);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

/* Resumo do Pedido */
.order-summary-box {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.summary-header span:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.summary-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #2DD4BF;
}

.summary-installments {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Botão Cakto */
.btn-checkout {
    width: 100%;
    padding: 20px;
    border: none;
    border-radius: 12px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: relative;
    overflow: hidden;
}

.btn-checkout i {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.btn-text {
    font-size: 1.1rem;
}

.btn-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
}

.cakto-btn {
    background: linear-gradient(135deg, #2DD4BF 0%, #0F766E 100%);
}

.cakto-btn::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: 0.5s;
}

.cakto-btn:hover::before {
    left: 100%;
}

.cakto-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 212, 191, 0.5);
}

/* Selo de Segurança */
.secure-seal {
    text-align: center;
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.secure-seal i {
    color: #22c55e;
}

/* Loading State */
.btn-checkout.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-checkout.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: var(--dark-bg);
}

.testimonial-images-only {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-image-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border: 2px solid rgba(147, 51, 234, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: var(--card-bg);
}

.testimonial-image-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(147, 51, 234, 0.4);
    border-color: var(--accent-color);
}

.testimonial-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.testimonial-image-card:hover img {
    transform: scale(1.1);
}

.testimonial-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(107, 33, 168, 0.95) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.testimonial-image-card:hover .testimonial-overlay {
    opacity: 1;
    transform: translateY(0);
}

.view-btn {
    background: white;
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.view-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

/* Modal/Lightbox */
.testimonial-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--accent-color);
    background: rgba(255,255,255,0.1);
    transform: rotate(90deg);
}

.modal-image-container {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-image-container img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.8);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.8);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

.modal-caption {
    margin-top: 20px;
    text-align: center;
}

.verified-badge-large {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.4);
}

.verified-badge-large i {
    font-size: 1.2rem;
}

/* Botões de navegação do modal */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: var(--gradient-main);
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.5);
}

.prev-btn {
    left: 40px;
}

.next-btn {
    right: 40px;
}

/* Dots de navegação */
.modal-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-color);
    width: 30px;
    border-radius: 6px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: var(--darker-bg);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(147, 51, 234, 0.1);
}

.faq-question i {
    transition: var(--transition);
    color: var(--secondary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    background: var(--dark-bg);
    padding: 60px 0;
}

.cta-box {
    background: var(--gradient-main);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-box > * {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.countdown-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.countdown-item {
    background: rgba(0,0,0,0.3);
    padding: 20px 30px;
    border-radius: 15px;
    min-width: 100px;
}

.countdown-item span:first-child {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.countdown-item span:last-child {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-box .btn-primary {
    background: white;
    color: var(--primary-color);
    font-size: 1.3rem;
    padding: 25px 50px;
    margin-bottom: 20px;
}

.cta-box .btn-primary:hover {
    background: #f3f4f6;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.payment-methods-img {
    max-width: 400px;
    width: 100%;
    margin-top: 20px;
    opacity: 0.9;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #000;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(147, 51, 234, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(147, 51, 234, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient-main);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(147, 51, 234, 0.2);
    padding-top: 20px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.dev-credit {
    margin-top: 10px;
    color: var(--secondary-color);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        align-items: center;
    }

    .hero-visual {
        height: 300px;
        order: -1;
    }

    .float-box {
        width: 120px;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-benefits {
        order: 2;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        border-top: 1px solid rgba(147, 51, 234, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .product-card.featured {
        transform: scale(1);
    }

    .prev-btn, .next-btn {
        display: none;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .checkout-wrapper {
        padding: 30px 20px;
    }

    .platform-highlight {
        padding: 20px;
        width: 100%;
    }

    .platform-icon-large {
        width: 60px;
        height: 60px;
    }

    .platform-highlight h3 {
        font-size: 1.2rem;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-item {
        padding: 15px 20px;
        min-width: 80px;
    }

    .countdown-item span:first-child {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .price {
        font-size: 2rem;
    }

    .testimonial-images-only {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-image-card {
        aspect-ratio: 4/5;
    }

    .testimonial-overlay {
        opacity: 1;
        transform: translateY(0);
        padding: 20px;
    }

    .view-btn {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    .modal-content {
        padding: 20px;
    }

    .close-modal {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }

    .modal-image-container {
        max-width: 95%;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HERO VISUAL - THUNDER EDITION COM IMAGEM
   ============================================ */

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thunder-container {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Círculos de energia */
.energy-ring {
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
    background: linear-gradient(var(--dark-bg), var(--dark-bg)) padding-box,
                linear-gradient(135deg, #c026d3, #9333ea, #2dd4bf, #c026d3) border-box;
    animation: rotateRing 10s linear infinite;
}

.ring-outer {
    width: 400px;
    height: 400px;
    animation-duration: 20s;
    box-shadow: 
        0 0 40px rgba(147, 51, 234, 0.4),
        0 0 80px rgba(147, 51, 234, 0.2),
        inset 0 0 40px rgba(147, 51, 234, 0.1);
}

.ring-inner {
    width: 300px;
    height: 300px;
    animation-duration: 15s;
    animation-direction: reverse;
    box-shadow: 
        0 0 30px rgba(192, 38, 211, 0.5),
        0 0 60px rgba(192, 38, 211, 0.3),
        inset 0 0 30px rgba(192, 38, 211, 0.2);
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Container dos raios */
.lightning-bolts {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

/* Estilo base dos raios */
.bolt {
    position: absolute;
    width: 120px;
    height: auto;
    opacity: 0;
    filter: drop-shadow(0 0 10px #c026d3) 
            drop-shadow(0 0 20px #9333ea) 
            drop-shadow(0 0 30px #2dd4bf);
    animation: lightningFlash 2s infinite;
}

/* Posicionamento dos raios ao redor dos círculos */
.bolt-1 {
    top: -20px;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    animation-delay: 0s;
}

.bolt-2 {
    top: 50%;
    right: -30px;
    transform: translateY(-50%) rotate(90deg);
    animation-delay: 0.3s;
}

.bolt-3 {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    animation-delay: 0.6s;
}

.bolt-4 {
    top: 50%;
    left: -30px;
    transform: translateY(-50%) rotate(270deg);
    animation-delay: 0.9s;
}

/* Raios diagonais */
.bolt-5 {
    top: 20px;
    right: 20px;
    transform: rotate(45deg);
    animation-delay: 1.2s;
    width: 100px;
}

.bolt-6 {
    bottom: 20px;
    left: 20px;
    transform: rotate(225deg);
    animation-delay: 1.5s;
    width: 100px;
}

/* Animação do relâmpago */
@keyframes lightningFlash {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
        filter: drop-shadow(0 0 5px #c026d3) 
                drop-shadow(0 0 10px #9333ea);
    }
    5% {
        opacity: 1;
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px #c026d3) 
                drop-shadow(0 0 40px #9333ea) 
                drop-shadow(0 0 60px #2dd4bf);
    }
    10% {
        opacity: 0;
        transform: scale(0.9);
    }
    15% {
        opacity: 0.8;
        transform: scale(1.05);
    }
    20%, 85% {
        opacity: 0;
        transform: scale(0.8);
    }
    90% {
        opacity: 0.5;
        transform: scale(1);
    }
    95% {
        opacity: 0;
    }
}

/* Variações de animação para cada raio */
.bolt-1 { animation-duration: 2.5s; }
.bolt-2 { animation-duration: 3s; }
.bolt-3 { animation-duration: 2.8s; }
.bolt-4 { animation-duration: 3.2s; }
.bolt-5 { animation-duration: 2.3s; }
.bolt-6 { animation-duration: 2.7s; }

/* Container das imagens dos packs */
.floating-boxes {
    position: relative;
    width: 260px;
    height: 260px;
    z-index: 10;
}

.float-box {
    position: absolute;
    width: 130px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 
                0 0 20px rgba(147, 51, 234, 0.3);
    transition: var(--transition);
    border: 2px solid rgba(147, 51, 234, 0.3);
    background: var(--card-bg);
}

/* Posicionamento triangular */
.box-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: floatPack 4s ease-in-out infinite;
    z-index: 3;
}

.box-2 {
    bottom: 5%;
    left: 0;
    animation: floatPack 4s ease-in-out infinite 0.5s;
    z-index: 2;
}

.box-3 {
    bottom: 5%;
    right: 0;
    animation: floatPack 4s ease-in-out infinite 1s;
    z-index: 1;
}

@keyframes floatPack {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        filter: brightness(1);
    }
    25% { 
        transform: translateY(-15px) rotate(2deg); 
        filter: brightness(1.1);
    }
    50% { 
        transform: translateY(-5px) rotate(-1deg); 
        filter: brightness(1.05);
    }
    75% { 
        transform: translateY(-20px) rotate(1deg); 
        filter: brightness(1.1);
    }
}

.float-box:hover {
    transform: scale(1.15) !important;
    box-shadow: 0 25px 50px rgba(147, 51, 234, 0.7), 
                0 0 40px rgba(192, 38, 211, 0.5);
    border-color: var(--accent-color);
    z-index: 20;
}

/* Efeito de flash elétrico no container */
.electric-flash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192, 38, 211, 0.3) 0%, transparent 70%);
    opacity: 0;
    animation: containerFlash 3s infinite;
    pointer-events: none;
    z-index: 4;
}

@keyframes containerFlash {
    0%, 90%, 100% { 
        opacity: 0; 
        transform: scale(0.8);
    }
    92% { 
        opacity: 0.6; 
        transform: scale(1.1);
    }
    94% { 
        opacity: 0; 
        transform: scale(0.9);
    }
    96% { 
        opacity: 0.4; 
        transform: scale(1.05);
    }
    98% { 
        opacity: 0; 
        transform: scale(1);
    }
}

/* ============================================
   RESPONSIVE - THUNDER CONTAINER
   ============================================ */

@media (max-width: 968px) {
    .hero-visual {
        height: 400px;
    }
    
    .thunder-container {
        width: 380px;
        height: 380px;
    }
    
    .ring-outer {
        width: 340px;
        height: 340px;
    }
    
    .ring-inner {
        width: 260px;
        height: 260px;
    }
    
    .bolt {
        width: 100px;
    }
    
    .floating-boxes {
        width: 220px;
        height: 220px;
    }
    
    .float-box {
        width: 110px;
    }
}

@media (max-width: 576px) {
    .thunder-container {
        width: 300px;
        height: 300px;
    }
    
    .ring-outer {
        width: 280px;
        height: 280px;
    }
    
    .ring-inner {
        width: 210px;
        height: 210px;
    }
    
    .bolt {
        width: 80px;
    }
    
    .bolt-5, .bolt-6 {
        width: 70px;
    }
    
    .floating-boxes {
        width: 180px;
        height: 180px;
    }
    
    .float-box {
        width: 90px;
    }
}