.elementor-2007 .elementor-element.elementor-element-14dd523{--display:flex;}/* Start custom CSS for html, class: .elementor-element-8c78115 *//* Variáveis Globais */
:root {
    --primary-color: #FF4D4D;
    --secondary-color: #FFA500;
    --accent-color: #3498DB;
    --success-color: #2ECC71;
    --text-color: #ffffff;
    --text-color-secondary: #cccccc;
    --background: #111111;
    --card-bg: #1a1a1a;
    --dark-bg: #0a0a0a;
    --light-bg: #222222;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.5);
    --spacing-mobile: 15px;
    --spacing-desktop: 30px;
    --gradient-1: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-2: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--background);
    font-size: clamp(14px, 4vw, 16px);
}

img {
    max-width: 100%;
    height: auto;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(var(--spacing-mobile), 3vw, var(--spacing-desktop));
}

/* Seção Hero */
.hero {
    min-height: 100vh;
    padding: clamp(60px, 10vh, 120px) 0;
    display: flex;
    align-items: center;
    text-align: center;
}

h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    margin-bottom: clamp(15px, 3vw, 30px);
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.3rem, 4vw, 2rem);
    margin: clamp(20px, 4vw, 40px) 0;
}

h3 {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
}

/* Cards de Benefícios */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(15px, 3vw, 30px);
    padding: clamp(30px, 5vw, 50px) 0;
}

.benefit-card {
    padding: clamp(20px, 4vw, 40px);
}

/* Carrossel de Ebooks */
.ebooks-carousel {
    padding: 60px 0;
    background: var(--dark-bg);
    border-radius: 20px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.carousel {
    position: relative;
    overflow: hidden;
    margin: 40px auto;
    max-width: 1000px;
    padding: 0 60px;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

/* Desktop: Animação Automática */
@media (min-width: 769px) {
    .carousel-track {
        animation: carousel 30s linear infinite;
        width: fit-content;
    }

    .carousel-track:hover {
        animation-play-state: paused;
    }

    .carousel-button {
        display: none;
    }

    @keyframes carousel {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-100% / 2));
        }
    }
}

/* Mobile: Navegação Manual */
@media (max-width: 768px) {
    .carousel {
        padding: 0 40px;
    }

    .carousel-track {
        animation: none;
        transform: translateX(0);
    }

    .carousel-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: var(--primary-color);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        color: var(--white);
        font-size: 1.5em;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        opacity: 0.9;
        transition: all 0.3s ease;
    }

    .carousel-button:hover {
        opacity: 1;
        background: var(--secondary-color);
    }

    .carousel-button:active {
        transform: translateY(-50%) scale(0.95);
    }

    .carousel-button.prev {
        left: 5px;
    }

    .carousel-button.next {
        right: 5px;
    }

    .carousel-button[disabled] {
        opacity: 0.3;
        cursor: not-allowed;
    }
}

.carousel-item {
    flex: 0 0 auto;
    min-width: 280px;
}

.ebook-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ebook-cover {
    width: 200px;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

/* Ajustes para telas menores */
@media (max-width: 768px) {
    .carousel {
        max-width: 100%;
        margin: 20px 0;
    }

    .carousel-item {
        min-width: 220px;
    }

    .ebook-cover {
        width: 150px;
        height: 210px;
    }

    @keyframes carousel {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-220px * 4 - 30px * 3));
        }
    }
}

/* Reduz a animação se o usuário preferir */
@media (prefers-reduced-motion: reduce) {
    .carousel-track {
        animation: none;
    }
}

/* Touch Active States */
@media (hover: none) {
    .carousel-track:active {
        animation-play-state: paused;
    }
    
    .ebook-card:hover {
        transform: none;
    }
    
    .ebook-card:active {
        transform: scale(0.98);
    }
}

/* Botão CTA */
.cta-button {
    padding: clamp(15px, 4vw, 25px) clamp(30px, 6vw, 50px);
    font-size: clamp(1rem, 3vw, 1.2rem);
    width: min(100%, 400px);
    white-space: normal;
}

/* Elementos de Urgência */
.urgency-badge {
    padding: clamp(8px, 2vw, 15px) clamp(10px, 3vw, 25px);
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
}

/* Trust Badges */
.trust-badges {
    gap: clamp(15px, 3vw, 30px);
    flex-wrap: wrap;
}

.trust-badge {
    flex: 1 1 min(250px, 100%);
    padding: clamp(10px, 3vw, 15px) clamp(15px, 4vw, 25px);
}

/* Depoimentos */
.testimonial {
    padding: clamp(20px, 4vw, 30px);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

/* Garantia */
.guarantee-box {
    padding: clamp(20px, 4vw, 30px);
    margin: clamp(20px, 4vw, 40px) 0;
}

/* Melhorias para Touch */
.carousel-button {
    width: clamp(35px, 8vw, 40px);
    height: clamp(35px, 8vw, 40px);
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    background: var(--primary-color);
    opacity: 0.9;
    -webkit-tap-highlight-color: transparent;
}

.carousel-button:active {
    transform: translateY(-50%) scale(0.95);
}

/* Melhorias de Acessibilidade */
@media (hover: none) {
    .benefit-card:hover,
    .ebook-card:hover,
    .cta-button:hover {
        transform: none;
    }
}

/* Touch Active States */
@media (hover: none) {
    .benefit-card:active,
    .ebook-card:active,
    .cta-button:active {
        transform: scale(0.98);
    }
}

/* Ajustes para Telas Pequenas */
@media (max-width: 480px) {
    .hero {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .benefit-card,
    .ebook-card {
        padding: 15px;
    }

    .trust-badges {
        flex-direction: column;
    }

    .trust-badge {
        width: 100%;
    }

    .carousel-button {
        width: 35px;
        height: 35px;
    }

    .ebook-cover {
        width: 140px;
        height: 196px;
    }
}

/* Ajustes para Telas Médias */
@media (min-width: 481px) and (max-width: 768px) {
    .hero {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .trust-badges {
        justify-content: center;
    }

    .trust-badge {
        flex-basis: calc(50% - 15px);
    }
}

/* Otimizações de Fonte */
@media (max-width: 360px) {
    html {
        font-size: 14px;
    }
}

/* Melhorias de Performance para Animações */
.animate {
    will-change: transform, opacity;
}

/* Seção Hero */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('pattern.png');
    opacity: 0.05;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* Tipografia */
h1 {
    font-size: clamp(2em, 5vw, 2.8em);
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

h2 {
    font-size: clamp(1.5em, 4vw, 2em);
    color: var(--text-color);
    margin: 40px 0 20px;
    font-weight: 700;
}

h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: var(--text-color);
}

/* Seção de Prova Social */
.social-proof {
    background: var(--light-bg);
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

.before-after {
    max-width: 800px;
    margin: 30px auto;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.before-after:hover {
    transform: scale(1.02);
}

/* Hero Section */
.hero {
    background: var(--gradient-2);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--accent-yellow);
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-features {
    margin: 2rem 0;
    font-size: 1.2rem;
}

.hero-features p {
    margin: 1rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-weight: 700;
}

.urgency-text {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: 600;
}

/* Botões e CTAs */
.cta-button, .buy-button {
    display: inline-block;
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--gradient-1);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    margin: 2rem 0;
}

.cta-button:hover, .buy-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 61, 0, 0.3);
}

/* Animação de pulso para CTAs */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Seção de Preço */
.price-tag {
    text-align: center;
    margin-bottom: 2rem;
}

.original-price {
    display: block;
    text-decoration: line-through;
    color: var(--light-gray);
    font-size: 1.5rem;
}

.current-price {
    display: block;
    font-size: 3rem;
    color: var(--accent-yellow);
    font-weight: 700;
    margin-top: 0.5rem;
}

.bonus-list {
    list-style: none;
    margin: 2rem 0;
    font-size: 1.2rem;
}

.bonus-list li {
    margin: 1rem 0;
    color: var(--text-color);
}

.guarantee {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    margin-top: 2rem;
    font-weight: 600;
}

/* Seção de Urgência */
.urgency {
    background: var(--gradient-1);
    padding: 2rem;
    text-align: center;
    margin: 4rem 0;
}

.countdown {
    font-size: 1.5rem;
    font-weight: 600;
}

.highlight {
    color: var(--accent-yellow);
    font-weight: 800;
}

/* Footer simplificado */
.footer {
    background: var(--dark-gray);
    padding: 2rem;
    text-align: center;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    margin: 0 1rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeIn 0.6s ease forwards;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .cta-button, .buy-button {
        padding: 1.2rem 2rem;
        font-size: 1.2rem;
    }

    .current-price {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }
}

/* Header e Navegação */
.header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
    padding: 1rem 0;
}

.header.scroll-down {
    background-color: var(--background);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    transition: var(--transition);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: var(--gradient-2);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--accent-yellow);
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-features {
    margin: 2rem 0;
    font-size: 1.2rem;
}

.hero-features p {
    margin: 1rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-weight: 700;
}

.urgency-text {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: 600;
}

/* Botões e CTAs */
.cta-button, .buy-button {
    display: inline-block;
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--gradient-1);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    margin: 2rem 0;
}

.cta-button:hover, .buy-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 61, 0, 0.3);
}

/* Animação de pulso para CTAs */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Seção de Preço */
.price-tag {
    text-align: center;
    margin-bottom: 2rem;
}

.original-price {
    display: block;
    text-decoration: line-through;
    color: var(--light-gray);
    font-size: 1.5rem;
}

.current-price {
    display: block;
    font-size: 3rem;
    color: var(--accent-yellow);
    font-weight: 700;
    margin-top: 0.5rem;
}

.bonus-list {
    list-style: none;
    margin: 2rem 0;
    font-size: 1.2rem;
}

.bonus-list li {
    margin: 1rem 0;
    color: var(--text-color);
}

.guarantee {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    margin-top: 2rem;
    font-weight: 600;
}

/* Seção de Urgência */
.urgency {
    background: var(--gradient-1);
    padding: 2rem;
    text-align: center;
    margin: 4rem 0;
}

.countdown {
    font-size: 1.5rem;
    font-weight: 600;
}

.highlight {
    color: var(--accent-yellow);
    font-weight: 800;
}

/* Footer simplificado */
.footer {
    background: var(--dark-gray);
    padding: 2rem;
    text-align: center;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    margin: 0 1rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeIn 0.6s ease forwards;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .cta-button, .buy-button {
        padding: 1.2rem 2rem;
        font-size: 1.2rem;
    }

    .current-price {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }
}

/* Carrossel de Ebooks */
.ebooks-carousel {
    padding: 60px 0;
    background: var(--dark-bg);
    border-radius: 20px;
    margin: 40px 0;
}

.carousel {
    position: relative;
    padding: 0 60px;
    margin: 40px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
}

.ebook-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform-origin: center center;
}

.ebook-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.ebook-card h3 {
    color: var(--primary-color);
    font-size: 1.2em;
    margin: 15px 0;
}

.ebook-card p {
    color: var(--text-color-secondary);
    font-size: 0.9em;
    margin-bottom: 15px;
}

.bonus-tag {
    background: var(--dark-bg);
    color: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
    display: inline-block;
    border: 1px solid var(--secondary-color);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--card-bg);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-color);
    font-size: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.carousel-button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.carousel-button.prev {
    left: 0;
}

.carousel-button.next {
    right: 0;
}

@media (max-width: 768px) {
    .carousel {
        padding: 0 40px;
    }

    .ebook-card {
        padding: 15px;
    }

    .ebook-cover {
        width: 150px;
        height: 210px;
    }
}/* End custom CSS */