/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de cores baseada no Nutra Slim - Otimizada para Conversão */
    --primary-dark: #0a1f1f;      /* Verde escuro principal */
    --primary-green: #1a3d2e;     /* Verde médio */
    --accent-green: #2d5a3d;      /* Verde claro */
    --highlight-green: #4a9b5e;   /* Verde destaque */
    --light-green: #6ec071;       /* Verde muito claro */
    --success-green: #28a745;     /* Verde sucesso */
    --urgent-orange: #ff6b35;     /* Laranja urgência */
    --gold-accent: #ffd700;       /* Dourado premium */
    --dark-bg: #0a1414;          /* Fundo escuro */
    --section-dark: #0d1f1f;     /* Seções escuras */
    --gradient-primary: linear-gradient(135deg, #0a1f1f 0%, #1a3d2e 50%, #2d5a3d 100%);
    --gradient-accent: linear-gradient(45deg, #4a9b5e 0%, #6ec071 100%);
    --gradient-gold: linear-gradient(45deg, #ffd700 0%, #ffed4e 100%);
    --gradient-dark: linear-gradient(180deg, #0a1414 0%, #0d1f1f 100%);
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #cccccc;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--primary-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--gradient-primary);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(13, 46, 46, 0.3);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--gold-accent);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    color: var(--text-light);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/uma-loira-alegre-e-esbelta-vestindo-jeans-enormes-1-1.webp') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    color: var(--gold-accent);
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.cta-button {
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
    background: linear-gradient(45deg, #ffed4e 0%, #fff700 100%);
}

/* Efeito visual quando o botão CTA é clicado */
.cta-button.clicked {
    transform: scale(0.95);
    background-color: var(--accent-green);
    transition: transform 0.1s ease, background-color 0.1s ease;
}

/* Animação de pulso para o botão CTA */
@keyframes pulse-animation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

.pulse-button {
    animation: pulse-animation 2s infinite;
    transform-origin: center;
}

.pulse-button:hover {
    animation: none;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Produto Section */
.produto-section {
    padding: 80px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.produto-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/10-potes-1-759x1024.webp') right center/contain no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.produto-section .container {
    position: relative;
    z-index: 1;
}

.produto-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.produto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.produto-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gold-accent);
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.produto-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.ingredientes, .como-usar {
    margin-bottom: 2rem;
}

.ingredientes h4, .como-usar h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--light-green);
}

.ingredientes ul {
    list-style: none;
}

.ingredientes li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.ingredientes i {
    color: var(--success-green);
    text-shadow: 0 0 8px rgba(40, 167, 69, 0.5);
}

.produto-visual img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Benefícios Section */
.beneficios-section {
    padding: 80px 0;
    background: var(--primary-dark);
    color: var(--text-light);
}

.beneficios-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.beneficio-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 155, 94, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.beneficio-card:hover {
    transform: translateY(-10px);
    background: rgba(74, 155, 94, 0.1);
    border-color: var(--accent-green);
}

.beneficio-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 20px rgba(74, 155, 94, 0.3);
}

.beneficio-icon i {
    font-size: 2rem;
    color: white;
}

.beneficio-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--light-green);
}

.beneficio-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Antes e Depois */
.antes-depois {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.antes-depois::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/Antes-e-Depois_-r821e54e6cl5d5z61puyprngkd57g36p8d0u1x5v28.webp') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.antes-depois .container {
    position: relative;
    z-index: 1;
}

.antes-depois h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.antes-depois-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.resultado-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.resultado-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.resultado-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-accent);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.stat .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Depoimentos */
.depoimentos-section {
    padding: 80px 0;
    background: var(--section-dark);
    position: relative;
    overflow: hidden;
}

.depoimentos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/wmremove-transformed-r821e628d6mforxsw89la9ex5r0knsafkhobj74gw0.webp') center/cover;
    opacity: 0.03;
    z-index: 0;
}

.depoimentos-section .container {
    position: relative;
    z-index: 1;
}

.depoimentos-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.depoimento-card {
    background: rgba(26, 61, 46, 0.8);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid var(--accent-green);
    transition: all 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 155, 94, 0.3);
    border-color: var(--gold-accent);
}

.stars {
    color: var(--gold-accent);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.depoimento-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.cliente strong {
    color: var(--light-green);
}

.cliente span {
    color: #999;
    font-size: 0.9rem;
}

/* Urgência */
.urgencia-section {
    background: linear-gradient(45deg, var(--urgent-orange), #ff4500);
    color: var(--text-light);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: pulse-bg 3s ease-in-out infinite alternate;
}

@keyframes pulse-bg {
    0% { box-shadow: inset 0 0 50px rgba(255, 107, 53, 0.2); }
    100% { box-shadow: inset 0 0 100px rgba(255, 107, 53, 0.4); }
}

.urgencia-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.urgencia-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.urgencia-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.time-unit {
    background: rgba(255,255,255,0.2);
    border: 2px solid var(--gold-accent);
    padding: 1rem;
    border-radius: 15px;
    min-width: 80px;
    backdrop-filter: blur(10px);
    animation: glow-pulse 2s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    0% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
}

.time-unit span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.time-unit label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Checkout Section */
.checkout-section {
    padding: 80px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.checkout-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/5-potes-1-759x1024.webp') center/contain no-repeat;
    opacity: 0.03;
    z-index: 0;
}

.checkout-section .container {
    position: relative;
    z-index: 1;
}

.checkout-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.pacotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pacote-card {
    background: rgba(26, 61, 46, 0.9);
    backdrop-filter: blur(15px);
    border: 2px solid var(--accent-green);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.pacote-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(74, 155, 94, 0.3);
    border-color: var(--gold-accent);
}

.pacote-card.popular {
    border-color: var(--gold-accent);
    transform: scale(1.05);
    background: rgba(45, 90, 61, 0.9);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.popular-badge {
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pacote-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.desconto {
    background: var(--urgent-orange);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.preco {
    margin: 1.5rem 0;
}

.preco-antigo {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    display: block;
}

.preco-atual {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-accent);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.pacote-beneficios {
    list-style: none;
    margin: 1.5rem 0;
}

.pacote-beneficios li {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
}

.pacote-beneficios i {
    color: var(--success-green);
    text-shadow: 0 0 8px rgba(40, 167, 69, 0.5);
}

.comprar-btn {
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comprar-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
    background: linear-gradient(45deg, #ffed4e 0%, #fff700 100%);
}

/* Seção de Confiança */
.confianca-section {
    background: var(--primary-dark);
    padding: 60px 0;
    text-align: center;
    border-top: 2px solid var(--gold-accent);
}

.confianca-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--gold-accent);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.confianca-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.confianca-item {
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(45, 90, 61, 0.3);
    border: 1px solid var(--accent-green);
    transition: all 0.3s ease;
}

.confianca-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold-accent);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.confianca-item i {
    font-size: 2.5rem;
    color: var(--light-green);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(110, 192, 113, 0.5);
}

.confianca-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.confianca-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.selos-confianca {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--gold-accent);
}

.selos-confianca p {
    color: var(--gold-accent);
    font-weight: 600;
    margin: 0;
}

/* Garantia */
.garantia-section {
    background: var(--section-dark);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.garantia-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(40, 167, 69, 0.1) 0%, transparent 70%);
}

.garantia-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.garantia-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(74, 155, 94, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.garantia-icon i {
    font-size: 3rem;
    color: white;
}

.garantia-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--gold-accent);
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.garantia-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 40px;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-links a {
    color: var(--light-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-light);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: black;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.finalizar-btn {
    background: var(--gradient-accent);
    color: var(--text-light);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 155, 94, 0.3);
}

.finalizar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 155, 94, 0.4);
}

/* Carrossel de Resultados */
.carrossel-resultados {
    margin-top: 3rem;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    background: linear-gradient(180deg, rgba(10, 31, 31, 0.8) 0%, rgba(10, 20, 20, 0.9) 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.carrossel-titulo {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gold-accent);
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.carrossel-titulo:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--gold-accent), var(--primary-green));
    border-radius: 3px;
}

.carrossel-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.carrossel-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.carrossel-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s ease;
    position: absolute;
    left: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.carrossel-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateY(0);
    pointer-events: all;
}

/* Elementos antes-depois */
.antes-depois-comparacao {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin-bottom: 1rem;
}

.antes-label, .depois-label {
    position: absolute;
    top: 15px;
    color: white;
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.antes-label {
    left: 20px;
    background-color: var(--urgent-orange);
}

.depois-label {
    right: 20px;
    background-color: var(--success-green);
}

.carrossel-slide img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--gold-accent);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.carrossel-slide img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    border-color: var(--highlight-green);
}

.slide-info {
    text-align: center;
    margin-top: 1.2rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(10, 31, 31, 0.8) 0%, rgba(26, 61, 46, 0.8) 100%);
    border-radius: 10px;
    border: 2px solid var(--accent-green);
    width: 100%;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cliente-nome {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.cliente-resultado {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.cliente-depoimento {
    font-style: italic;
    color: var(--light-green);
    font-size: 0.95rem;
}

.carrossel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    padding: 0 2rem;
}

.control-prev, .control-next {
    background-color: var(--primary-green);
    border: 2px solid var(--gold-accent);
    color: var(--text-light);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-size: 1.1rem;
}

.control-prev:hover, .control-next:hover {
    background-color: var(--highlight-green);
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(110, 192, 113, 0.7);
    color: var(--gold-accent);
}

.control-prev:active, .control-next:active {
    transform: scale(0.95);
    background-color: var(--urgent-orange);
    transition: transform 0.1s ease, background-color 0.1s ease;
}

/* Estilo de clique para os botões do carrossel */
.control-prev.clicked, .control-next.clicked {
    transform: scale(0.95);
    background-color: var(--urgent-orange);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.7);
    color: white;
}

.carrossel-dots {
    display: flex;
    justify-content: center;
    margin: 0 1rem;
}

.carrossel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--primary-green);
    margin: 0 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border: 1px solid var(--accent-green);
}

.carrossel-dot.active {
    background-color: var(--gold-accent);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    border-color: var(--gold-accent);
}

.carrossel-dot:hover {
    background-color: var(--accent-green);
    transform: scale(1.1);
}

/* Responsividade para o carrossel */
@media (max-width: 768px) {
    .carrossel-slide img {
        max-width: 300px;
    }
    
    .slide-info {
        max-width: 260px;
    }
    
    .control-prev, .control-next {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .carrossel-slide img {
        max-width: 250px;
    }
    
    .slide-info {
        max-width: 230px;
    }
    
    .carrossel-titulo {
        font-size: 1.5rem;
    }
    
    .control-prev, .control-next {
        width: 30px;
        height: 30px;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content,
    .produto-grid,
    .antes-depois-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .nav {
        display: none;
    }
    
    .pacotes-grid {
        grid-template-columns: 1fr;
    }
    
    .pacote-card.popular {
        transform: none;
    }
    
    .stats {
        justify-content: center;
    }
    
    .timer {
        flex-wrap: wrap;
    }
    
    .garantia-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .confianca-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .produto-section h2,
    .beneficios-section h2,
    .depoimentos-section h2,
    .checkout-section h2 {
        font-size: 2rem;
    }
    
    .confianca-grid {
        grid-template-columns: 1fr;
    }
    
    .confianca-section h2 {
        font-size: 1.5rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.beneficio-card,
.depoimento-card,
.pacote-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Animações Especiais para Conversão */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.8); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Efeitos especiais nos CTAs */
.cta-button {
    animation: glow 2s ease-in-out infinite alternate;
}

.cta-button:hover {
    animation: none;
}

.popular-badge {
    animation: bounce 2s infinite;
}

.desconto {
    animation: shake 3s ease-in-out infinite;
}

/* Efeito de partículas de fundo */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 215, 0, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(110, 192, 113, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 215, 0, 0.2), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(110, 192, 113, 0.2), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: sparkle 20s linear infinite;
    z-index: 0;
}

@keyframes sparkle {
    from { transform: translateX(0); }
    to { transform: translateX(150px); }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animação para o carrossel */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.carrossel-resultados {
    animation: fadeInUp 1s ease-out;
}

.carrossel-slide.active {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Animações do Carrossel */
@keyframes slideEnter {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideExit {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.4);
    }
    100% {
        transform: scale(1.2);
    }
}

.slide-enter {
    animation: slideEnter 0.8s ease forwards;
}

.slide-exit {
    animation: slideExit 0.5s ease forwards;
}

.pulse {
    animation: pulse 0.5s ease;
}

/* Melhoria para gradiente de fundo do carrossel */
.carrossel-resultados {
    background: linear-gradient(135deg, rgba(10, 31, 31, 0.95) 0%, rgba(26, 61, 46, 0.8) 100%),
                url('../img/Antes-e-Depois_-r821e54e6cl5d5z61puyprngkd57g36p8d0u1x5v28.webp') center center/cover;
    background-blend-mode: multiply;
    position: relative;
    overflow: hidden;
}

.carrossel-resultados:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, 
                rgba(10, 31, 31, 0.9) 0%, 
                rgba(10, 31, 31, 0.5) 50%, 
                rgba(10, 31, 31, 0.9) 100%);
    z-index: 0;
}

.carrossel-resultados .container {
    position: relative;
    z-index: 1;
}

/* Melhoria na transição dos slides */
.carrossel-slide {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.carrossel-slide.active {
    z-index: 2;
}

.resultado-badge {
    background-color: var(--urgent-orange);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 5px 15px;
    border-radius: 25px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    text-align: center;
    border: 2px solid white;
}

@media (max-width: 768px) {
    .resultado-badge {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
}

.anchor-target {
    display: block;
    position: relative;
    top: -100px; /* Ajuste conforme o tamanho do seu cabeçalho */
    visibility: hidden;
    height: 0;
}
