/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de Cores Principal */
    --primary-purple: #667eea;
    --primary-purple-dark: #764ba2;
    --accent-gold: #fbbf24;
    --accent-gold-dark: #f59e0b;
    --primary-blue: #2563eb;
    --primary-blue-light: #3b82f6;
    --text-dark: #1f2937;
    --text-medium: #374151;
    --text-light: #6b7280;
    --background-light: #f8fafc;
    --background-white: #ffffff;
    --success-green: #10b981;
    --success-green-dark: #059669;
    --warning-red: #dc2626;
    --warning-red-light: #ef4444;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: var(--background-white);
    box-shadow: 0 2px 20px rgba(102, 126, 234, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.logo-img {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: var(--primary-purple);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-purple-dark));
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--accent-gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    width: fit-content;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold));
}

.urgency {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-gold);
    font-weight: 500;
}

.hero-image {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.floating-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.3);
    animation: floating 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.floating-image:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 35px 80px rgba(102, 126, 234, 0.4);
}

/* Floating Animation */
@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

/* Problema Section */
.problema {
    padding: 80px 0;
    background: var(--background-light);
}

.problema h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-purple-dark);
}

.problema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.problema-item {
    background: var(--background-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-purple);
}

.problema-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.problema-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.problema-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem; /* Reduced spacing */
    color: var(--text-dark);
}

/* Consequências */
.consequencias {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
    color: white;
}

.consequencias-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.consequencias h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent-gold);
}

.consequencias-list {
    list-style: none;
}

.consequencias-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
    padding: 0.8rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--primary-purple);
}

.consequencias-list i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.consequencias-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
}

/* Solução Section */
.solucao {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
    color: white;
}

.solucao h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.solucao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.solucao-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.solucao-item:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
}

.solucao-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-dark);
    font-size: 2rem;
}

.solucao-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem; /* Reduced spacing */
}

/* Benefícios */
.beneficios {
    padding: 80px 0;
    background: var(--background-light);
}

.beneficios h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.beneficios-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.beneficios-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
}

.beneficio-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--background-white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-blue);
}

.beneficio-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.beneficio-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.beneficio-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Oferta Section */
.oferta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--text-medium) 100%);
    color: white;
}

.oferta-card {
    background: var(--background-white);
    color: var(--text-dark);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.oferta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-purple-dark));
}

.oferta-header {
    text-align: center;
    margin-bottom: 3rem;
}

.oferta-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem; /* Reduced spacing */
    color: var(--text-dark);
}

.preco {
    text-align: center;
    margin-bottom: 3rem;
}

.preco-de {
    display: block;
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.preco-por {
    display: block;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.preco-valor {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-purple);
    line-height: 1;
}

.preco-mes {
    font-size: 2rem;
    color: var(--text-light);
}

.desconto {
    display: inline-block;
    background: linear-gradient(135deg, var(--warning-red), var(--warning-red-light));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 1rem;
}

.inclusos {
    margin-bottom: 2rem;
}

.inclusos h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.inclusos ul {
    list-style: none;
}

.inclusos li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0.5rem; /* Reduced spacing */
    font-size: 1.1rem;
    padding: 0.5rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 8px;
}

.inclusos i {
    color: var(--success-green);
    font-size: 1.2rem;
}

.garantia {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-green-dark);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    font-weight: 600;
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.garantia i {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.cta-section {
    text-align: center;
}

.btn-oferta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--text-dark);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.3);
}

.btn-oferta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.4);
}

.urgencia-text {
    margin-top: 1rem;
    color: var(--warning-red);
    font-weight: 600;
}

/* Depoimentos */
.depoimentos {
    padding: 80px 0;
    background: var(--background-light);
}

.depoimentos h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.depoimento {
    background: var(--background-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-purple);
    position: relative;
}

.depoimento::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-purple);
    opacity: 0.3;
}

.depoimento:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.depoimento-content {
    margin-bottom: 1.5rem;
}

.depoimento-content p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-medium);
}

.depoimento-autor strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.depoimento-autor span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: var(--background-white);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.faq-item {
    background: var(--background-light);
    border-radius: 10px;
    margin-bottom: 0.5rem; /* Reduced spacing */
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-purple);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(102, 126, 234, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.faq-question i {
    color: var(--primary-purple);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-medium);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Contato */
.contato {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: white;
    text-align: center;
}

.contato h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem; /* Reduced spacing */
}

.contato p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contato-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.btn-whatsapp, .btn-telefone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-whatsapp:hover, .btn-telefone:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

.horario {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-logo-img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .consequencias-content,
    .beneficios-content {
        grid-template-columns: 1fr;
    }
    
    .contato-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .logo-img, .footer-logo-img {
        width: 35px;
        height: 35px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.problema-item,
.solucao-item,
.beneficio-item,
.depoimento {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Scroll to top button */
.scroll-to-top {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-dark)) !important;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.scroll-to-top:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}



.urgencia-text-yellow {
    margin-top: 1rem;
    color: var(--accent-gold);
    font-weight: 600;
}



.ebook-offer {
    padding: 20px 0; /* Reduzido ainda mais o padding */
    background: var(--background-white);
    text-align: center;
}

.ebook-header {
    margin-bottom: 3rem;
}

.ebook-header h2 {
    font-size: 2.5rem;
    color: var(--primary-purple-dark);
}

.ebook-main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.1);
    background: var(--background-white);
}

.ebook-image {
    flex-shrink: 0;
}

.ebook-image img {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: none;
}

.ebook-text-and-button {
    text-align: left;
}

.ebook-text-and-button p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.ebook-text-and-button ul {
    list-style: none;
    margin-bottom: 2rem;
}

.ebook-text-and-button li {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ebook-text-and-button i {
    color: var(--primary-purple);
    font-size: 1.1rem;
}

.btn-ebook-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-dark));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-ebook-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, var(--primary-purple-dark), var(--primary-purple));
}

@media (max-width: 768px) {
    .ebook-main-content {
        flex-direction: column;
        padding: 2rem;
    }

    .ebook-header {
        margin-bottom: 2rem;
    }

    .ebook-header h2 {
        font-size: 2rem;
    }

    .ebook-image img {
        max-width: 200px;
    }

    .ebook-text-and-button {
        text-align: center;
    }

    .ebook-text-and-button ul {
        display: block;
        text-align: center;
    }

    .ebook-text-and-button li {
        justify-content: center;
    }
}



.solucao-logo {
    height: 100px; /* Aumentado para 2.5X o tamanho anterior */
    vertical-align: middle;
    margin-right: 10px;
}



.ebook-image img {
    transform: scale(1.05);
    transform-origin: center center;
    margin: -5% -5%;
    position: relative;
    z-index: 1;
}

