:root {
    --primary-color: #00d9c0;
    --dark-bg: #0a0f1a;
    --darker-bg: #000000;
    --light-bg: #f5f5f5;
    --text-white: #ffffff;
    --text-dark: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Alert Banner */
.alert-banner {
    background: var(--darker-bg);
    color: var(--text-white);
    text-align: center;
    padding: 15px;
    font-size: 14px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a2332 100%);
    padding: 60px 0 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 600px;
}

.logo {
    max-width: 250px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.description {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.produto-hero {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 20px 40px rgba(0, 217, 192, 0.3));
}

.hero-footer {
    background: var(--primary-color);
    color: var(--darker-bg);
    text-align: center;
    padding: 20px;
    font-size: 1.3rem;
    font-weight: bold;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--darker-bg);
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 217, 192, 0.4);
}

.btn-primary.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 217, 192, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(0, 217, 192, 0);
    }
}

.btn-secondary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--darker-bg);
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 10px;
}

/* Problema Section */
.problema {
    background: var(--dark-bg);
    padding: 80px 0;
}

.problema-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.problema-left img {
    width: 100%;
    border-radius: 15px;
}

.problema-right h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.problema-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Videos Section */
.videos {
    background: var(--darker-bg);
    padding: 80px 0;
    text-align: center;
}

.videos>.container {
    max-width: 1600px;
    background: rgba(10, 15, 26, 0.8);
    border: 2px solid rgba(0, 217, 192, 0.3);
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 0 30px rgba(0, 217, 192, 0.1);
}

.videos h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto 30px;
    padding: 0 70px;
}

.carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
    justify-content: flex-start;
}

.video-card,
.transformacao-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
    background: var(--dark-bg);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
}

.video-card:hover {
    transform: scale(1.02);
}

.video-thumbnail {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--darker-bg);
    transition: all 0.3s;
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-antes-depois {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 140px;
    height: 90px;
    border: 3px solid var(--primary-color);
    border-radius: 8px;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--darker-bg);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #555;
    cursor: pointer;
}

.dot.active {
    background: var(--primary-color);
}

/* Benefícios Section */
.beneficios {
    background: var(--dark-bg);
    padding: 80px 0;
}

.beneficios-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.beneficios-left h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.beneficio-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 217, 192, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.beneficio-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.beneficio-card p {
    font-size: 1rem;
    line-height: 1.5;
}

.beneficios-right img {
    width: 100%;
    max-width: 400px;
}

/* Fórmula Section */
.formula {
    background: var(--primary-color);
    padding: 80px 0;
}

.formula h2 {
    color: var(--darker-bg);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.formula-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.formula-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.formula-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.formula-card h3 {
    color: var(--darker-bg);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.formula-card p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Urgência Section */
.urgencia-header {
    background: var(--primary-color);
    color: var(--darker-bg);
    text-align: center;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: bold;
}

.urgencia-content {
    background: var(--darker-bg);
    padding: 80px 0;
    text-align: center;
}

.alerta-icon {
    font-size: 5rem;
    margin-bottom: 30px;
}

.urgencia-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.urgencia-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.progress-bar {
    width: 100%;
    max-width: 600px;
    height: 40px;
    background: #333;
    border-radius: 20px;
    overflow: hidden;
    margin: 30px auto;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    transition: width 2s ease;
}

.progress-text {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 30px;
}

/* Natural Section */
.natural {
    background: var(--light-bg);
    padding: 80px 0;
    text-align: center;
}

.natural-icon {
    font-size: 5rem;
    margin-bottom: 30px;
}

.natural h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.natural p {
    color: var(--text-dark);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

/* Transformação Section */
.transformacao {
    background: var(--dark-bg);
    padding: 80px 0;
}

.transformacao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.transformacao-left {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 217, 192, 0.3);
    border-radius: 20px;
    padding: 50px;
}

.transformacao-left h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 30px;
    line-height: 1.4;
}

.transformacao-right img {
    width: 100%;
    border-radius: 15px;
}

/* Preços Section */
.precos {
    background: var(--darker-bg);
    padding: 80px 0;
}

.precos h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.precos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.preco-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 217, 192, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
}

.preco-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--darker-bg);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.preco-card img {
    width: 100%;
    max-width: 150px;
    margin: 20px 0;
}

.preco-titulo {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.preco-parcelas {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.preco-antigo {
    color: #ff4444;
    text-decoration: line-through;
    font-size: 1rem;
    margin-bottom: 10px;
}

.preco-valor {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    margin: 15px 0;
}

.preco-avista {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Antes e Depois Section */
.antes-depois-header {
    background: var(--primary-color);
    color: var(--darker-bg);
    text-align: center;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: bold;
}

.antes-depois {
    background: var(--darker-bg);
    padding: 80px 0;
    text-align: center;
}

.antes-depois h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.transformacao-card {
    background: var(--dark-bg);
    border-radius: 15px;
    overflow: hidden;
    padding: 20px;
}

.transformacao-logo {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.transformacao-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.transformacao-info {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.transformacao-resultado {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: bold;
}

/* Garantia Section */
.garantia {
    background: var(--dark-bg);
    padding: 80px 0;
}

.garantia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.garantia-left h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.garantia-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.garantia-right {
    position: relative;
    text-align: center;
}

.garantia-right img {
    width: 100%;
    max-width: 300px;
}

.garantia-selo {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--darker-bg);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.garantia-numero {
    font-size: 4rem;
    line-height: 1;
}

.garantia-texto {
    font-size: 1rem;
    text-align: center;
}

.garantia-estrelas {
    margin-top: 10px;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq {
    background: var(--darker-bg);
    padding: 80px 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 217, 192, 0.2);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(0, 217, 192, 0.1);
}

.faq-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.faq-question h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

.faq-answer p {
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: var(--light-bg);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-buttons {
    margin-bottom: 30px;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    margin: 10px 0;
}

.copyright {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {

    .hero-content,
    .problema-content,
    .beneficios-content,
    .transformacao-content,
    .garantia-content {
        grid-template-columns: 1fr;
    }

    .formula-grid,
    .precos-grid {
        grid-template-columns: 1fr;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .video-card,
    .transformacao-card {
        flex: 0 0 100%;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .garantia-selo {
        position: static;
        transform: none;
        margin: 30px auto 0;
    }
}


/* Swiper Customization */
.videosSwiper {
    width: 100%;
    padding: 20px 60px 50px;
}

.videosSwiper .swiper-slide {
    display: flex;
    justify-content: center;
}

.videosSwiper .video-card {
    width: 100%;
    max-width: 780px;
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--primary-color) !important;
    background: rgba(0, 217, 192, 0.2);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px !important;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: #555 !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    cursor: pointer;
    font-weight: bold;
}

.video-modal-close:hover {
    color: var(--primary-color);
}

.video-modal iframe {
    width: 100%;
    height: 500px;
    border-radius: 10px;
}