/* Reset and Base Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography - Fontes mais arredondadas e modernas */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
}

h3 {
    font-size: clamp(1.3rem, 3vw, 2rem);
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 400;
}

/* Buttons - Design mais moderno */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.btn-secondary {
    background: linear-gradient(135deg, #374151, #1f2937);
    color: white;
    border: 2px solid #dc2626;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.3);
}

.btn-outline {
    background: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.btn-outline:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.3rem;
    border-radius: 60px;
}

/* Sticky CTA Buttons - Melhorados */

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sticky-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.sticky-btn.digital {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
}

.sticky-btn.fisica {
    background: linear-gradient(135deg, #374151, #1f2937);
    color: white;
    border: 2px solid #dc2626;
}

.sticky-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

/* Animations - Mais suaves */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in {
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sections */

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    color: #dc2626;
    font-size: 0.8em;
}

/* HERO SECTION - Melhorado */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    background-image: radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.logo-space {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
}

.logo {
    max-width: 210px;
    height: auto;
}

.hero-title {
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    color: #e5e5e5;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    font-size: 1rem;
    font-weight: 500;
}

.stat i {
    color: #dc2626;
    font-size: 1.2em;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid #dc2626;
    border-bottom: 3px solid #dc2626;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) rotate(45deg) translateY(0);
    }
    40% {
        transform: translateX(-50%) rotate(45deg) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) rotate(45deg) translateY(-5px);
    }
}

/* SOBRE SECTION - Melhorado */

.sobre {
    background: #0a0a0a;
    padding: 120px 0;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sobre-text h2 {
    color: #ffffff;
    margin-bottom: 30px;
    text-align: left;
    justify-content: flex-start;
}

.sobre-description {
    font-size: 1.2rem;
    color: #e5e5e5;
    margin-bottom: 50px;
    line-height: 1.8;
}

.investigation-board {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.evidence-note {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a, #222222);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #dc2626;
    transform: rotate(-1deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.evidence-note:hover {
    transform: rotate(0deg) translateY(-5px);
}

.evidence-note:nth-child(2) {
    transform: rotate(1deg);
    margin-left: 30px;
}

.evidence-note:nth-child(2):hover {
    transform: rotate(0deg) translateY(-5px);
    margin-left: 30px;
}

.evidence-note h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #dc2626;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.evidence-note p {
    color: #cccccc;
    margin: 0;
    font-size: 1rem;
}

.pin {
    position: absolute;
    top: -8px;
    right: 25px;
    width: 12px;
    height: 12px;
    background: #dc2626;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.pin::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 18px;
    height: 18px;
    border: 2px solid #991b1b;
    border-radius: 50%;
}

/* Carousel - Melhorado */

.carousel-container {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    background: #111111;
}

.carousel-slide {
    display: none;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: auto;
    max-width: 100%;
    height: 480px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #444;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot.active {
    background: #dc2626;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

/* FEATURES SECTION - Melhorado */

.recebe {
    background: #111111;
    padding: 120px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a1a, #222222);
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.2);
    border-color: #dc2626;
}

.feature-icon {
    margin-bottom: 25px;
}

.feature-icon i {
    font-size: 3.5rem;
    color: #dc2626;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-card h3 {
    color: #dc2626;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.feature-card p {
    color: #e5e5e5;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* TESTIMONIALS - Melhorado */

.depoimentos {
    background: #0a0a0a;
    padding: 120px 0;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial {
    background: linear-gradient(135deg, #1a1a1a, #222222);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid #dc2626;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.stars i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-style: italic;
    color: #e5e5e5;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar i {
    font-size: 2.5rem;
    color: #dc2626;
}

.testimonial-author span {
    font-weight: 600;
    color: #dc2626;
    font-size: 1.1rem;
}

/* DIFERENCIAIS - Melhorado */

.diferenciais {
    background: #111111;
    padding: 120px 0;
}

.diferencial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.diferencial-card {
    background: linear-gradient(135deg, #1a1a1a, #222222);
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.diferencial-card:hover {
    border-color: #dc2626;
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(220, 38, 38, 0.2);
}

.diferencial-icon i {
    font-size: 4.5rem;
    color: #dc2626;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.diferencial-card:hover .diferencial-icon i {
    transform: scale(1.1);
}

.diferencial-card h3 {
    color: #dc2626;
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.diferencial-card p {
    color: #e5e5e5;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* CTA EMOCIONAL - Melhorado */

.cta-emocional {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    padding: 140px 0;
    text-align: center;
    position: relative;
}

.cta-emocional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(220, 38, 38, 0.1), transparent);
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 1.4rem;
    color: #e5e5e5;
    margin-bottom: 50px;
    line-height: 1.8;
    font-weight: 400;
}

/* PRICING - Muito melhorado */

.precos {
    background: #0a0a0a;
    padding: 120px 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.pricing-card {
    background: linear-gradient(135deg, #1a1a1a, #222222);
    border-radius: 25px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border-color: #dc2626;
}

.pricing-card.popular {
    border-color: #dc2626;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.3);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
    padding: 12px 25px;
    text-align: center;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-header {
    padding: 40px 35px 20px;
    text-align: center;
}

.pricing-icon {
    margin-bottom: 20px;
}

.pricing-icon i {
    font-size: 3rem;
    color: #dc2626;
}

.pricing-header h3 {
    color: #dc2626;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.price {
    margin-bottom: 20px;
}

.old-price {
    color: #666;
    text-decoration: line-through;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 5px;
}

.current-price {
    color: #dc2626;
    font-size: 1.9rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.pricing-description {
    padding: 0 35px 25px;
    text-align: center;
}

.pricing-description p {
    color: #e5e5e5;
    font-size: 1.1rem;
    line-height: 1.6;
}

.pricing-features {
    padding: 0 30px 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 8px;
    padding: 5px 0;
}

.feature-item i {
    color: #22c55e;
    font-size: 1rem;
    min-width: 20px;
}

.feature-item span {
    color: #e5e5e5;
    font-size: 0.8rem;
    font-weight: 400;
}

.pricing-btn {
    width: calc(100% - 70px);
    margin: 0 35px 35px;
    display: block;
    text-align: center;
    justify-content: center;
}

.payment-info {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #333;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.payment-icons span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e5e5e5;
    font-size: 1.1rem;
    font-weight: 500;
}

.payment-icons i {
    color: #22c55e;
    font-size: 1.3rem;
}

.urgency {
    color: #dc2626;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* GARANTIA - Melhorado */

.garantia {
    background: #111111;
    padding: 100px 0;
    text-align: center;
}

.garantia-content {
    max-width: 700px;
    margin: 0 auto;
}

.garantia-text {
    font-size: 1.3rem;
    color: #e5e5e5;
    margin-bottom: 35px;
    line-height: 1.7;
}

.trust-signal p {
    color: #dc2626;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* FAQ - Estático Simplificado */

.faq {
    background: #0a0a0a;
    padding: 120px 0;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #1a1a1a, #222222);
    border: 2px solid #222;
    border-radius: 15px;
    padding: 25px 35px;
    margin-bottom: 25px;
    color: #eee;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #dc2626;
}

.faq-item h3 {
    color: #dc2626;
    font-size: 1.3rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ccc;
}

/* PRÓXIMO EPISÓDIO - Melhorado */

.proximo {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    padding: 120px 0;
    text-align: center;
}

.proximo-content {
    max-width: 700px;
    margin: 0 auto;
}

.proximo-content p {
    font-size: 1.3rem;
    color: #e5e5e5;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* CONTATO - Melhorado */

.contato {
    background: #111111;
    padding: 100px 0;
    text-align: center;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 40px;
    background: linear-gradient(135deg, #1a1a1a, #222222);
    border-radius: 20px;
    text-decoration: none;
    color: #e5e5e5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-link:hover {
    color: #dc2626;
    border-color: #dc2626;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2);
}

.contact-link i {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-link:hover i {
    color: #dc2626;
    transform: scale(1.1);
}

/* FOOTER - Melhorado */

.footer {
    background: #0a0a0a;
    padding: 60px 0 40px;
    border-top: 2px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
}

.footer-logo img {
    max-height: 160px;
    opacity: 0.9;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-text p {
    color: #888;
    font-size: 1rem;
}

.footer-menu {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-menu a {
    color: #e5e5e5;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #dc2626;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-social a {
    color: #888;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.footer-social a:hover {
    color: #dc2626;
    transform: translateY(-3px);
}

/* RESPONSIVE DESIGN - Melhorado */

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    section {
        padding: 80px 0;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
    .hero-stats {
        gap: 25px;
    }
    .stat {
        font-size: 0.9rem;
    }
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .sobre-text h2 {
        text-align: center;
        justify-content: center;
    }
    .evidence-note:nth-child(2) {
        margin-left: 0;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-carousel {
        grid-template-columns: 1fr;
    }
    .diferencial-cards {
        grid-template-columns: 1fr;
    }
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    .pricing-card.popular {
        transform: none;
    }
    .contact-links {
        flex-direction: column;
        align-items: center;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .footer-menu {
        justify-content: center;
    }
    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }
    .sticky-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    .video-stats {
        gap: 25px;
    }
    .video-stat {
        font-size: 0.9rem;
    }
    .payment-icons {
        gap: 25px;
    }
    .payment-icons span {
        font-size: 1rem;
    }
    /* Typography adjustments */
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    p {
        font-size: 1rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .cta-text {
        font-size: 1.2rem;
    }
    .current-price {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .evidence-note {
        transform: none;
        margin-left: 0 !important;
    }
    .payment-icons {
        gap: 20px;
    }
    .payment-icons span {
        font-size: 0.9rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    .video-stats {
        flex-direction: column;
        gap: 15px;
    }
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    .pricing-card {
        min-width: auto;
    }
}

/* Loading and Scroll Reveal - Melhorado */

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling for older browsers */

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Custom scrollbar */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ef4444;
}

/* ==== Carrossel de Imagens ==== */

.carousel-section {
    width: 100%;
    overflow: hidden;
    background: #111;
    /* opcional, pode trocar ou remover */
    padding: 20px 0;
}

.carousel {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    animation: scroll 25s linear infinite;
    /* ajuste de velocidade */
}

.video-wrapper {
    max-width: 360px;
    /* largura do vídeo */
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 177.78%;
    /* altura proporcional 16:9 vertical (9/16 = 0.5625, inverso = 1.7778) */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-track img {
    width: 198px;
    height: 317px;
    object-fit: contain;
    /* garante que a imagem não vai ser cortada */
    margin-right: 20px;
    border-radius: 10px;
    flex-shrink: 0;
    /* impede as imagens de reduzirem no mobile */
}

/* Animação de movimento */

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

@media (max-width: 768px) {
    .cta-emocional {
        padding: 60px 0;
        /* reduz espaço vertical */
    }
    .video-container {
        padding-top: 56.25%;
        /* formato 16:9 normal */
        margin-bottom: 15px;
        /* pequeno espaço entre vídeos */
    }
}

.feature-card {
    overflow: hidden;
    /* evita corte estranho */
    text-align: center;
    /* centraliza */
}

.feature-img {
    max-width: 100%;
    /* garante que a imagem não ultrapasse a largura */
    height: auto;
    /* mantém proporção */
    display: block;
    /* evita espaço extra */
    margin: 0 auto;
    /* centraliza */
}

/* Sessão Casos */

.casos-section {
    margin: 50px auto;
}

.casos-section h2 {
    text-align: center;
    margin-bottom: 25px;
}

.casos-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 0;
}

.caso-card {
    background: var(--dark-bg, #111);
    /* usa cor do tema */
    border-radius: 12px;
    min-width: 300px;
    max-width: 300px;
    flex: 0 0 auto;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.caso-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.caso-content {
    padding: 15px;
}

.caso-content h3 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.caso-content p {
    font-size: 0.80rem;
    line-height: 1.3;
    margin-bottom: 20px;
    text-align: left;
}

.caso-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.caso-tags span {
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 20px;
}

.carousel-controls button {
    background: transparent;
    border: 2px solid currentColor;
    color: inherit;
    padding: 6px 12px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.carousel-controls button:hover {
    background: currentColor;
    color: #fff;
}

.section-title {
    margin-bottom: 2px;
    /* ou menos se quiser colado */
}

.casos-section {
    margin-top: 0;
    /* garante que não soma com a margem do h2 */
}

.caso-content h3 {
    display: block;
    /* mantém como bloco, mas alinhado à esquerda */
    text-align: left;
    /* garante alinhamento à esquerda */
    margin: 0 0 5px 0;
    /* remove margens extras se quiser */
}