/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Principais */
    --primary-purple: #7c3aed;
    --dark-purple: #5b21b6;
    --neon-purple: #a78bfa;
    --bright-neon: #c084fc;
    --bg-dark: #0f0a1f;
    --bg-darker: #0a0614;
    --bg-card: #1a1229;
    --text-light: #f3f4f6;
    --text-gray: #9ca3af;
    --accent-pink: #ec4899;
    
    /* Tipografia */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Sombras e Efeitos */
    --shadow-neon: 0 0 20px rgba(167, 139, 250, 0.5);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
    --glow-neon: 0 0 30px rgba(167, 139, 250, 0.8), 0 0 60px rgba(167, 139, 250, 0.4);
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Tipografia */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.neon-text {
    color: var(--neon-purple);
    text-shadow: var(--shadow-neon);
    animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    from {
        text-shadow: 0 0 10px rgba(167, 139, 250, 0.5), 0 0 20px rgba(167, 139, 250, 0.3);
    }
    to {
        text-shadow: 0 0 20px rgba(167, 139, 250, 0.8), 0 0 40px rgba(167, 139, 250, 0.5);
    }
}

/* Seção Hero */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, #1a0f2e 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-50px, 50px) rotate(180deg); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.logo {
    margin-bottom: 30px;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    margin: 40px auto;
    max-width: 800px;
}

/* CSS para o placeholder de vídeo removido */

/* Botões CTA */
.cta-button {
    display: inline-block;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    letter-spacing: 1px;
	position: relative;
    z-index: 1;
}

.primary-cta {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-pink) 100%);
    color: var(--text-light);
    box-shadow: var(--shadow-neon);
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-neon);
}

.secondary-cta {
    background: transparent;
    border: 2px solid var(--neon-purple);
    color: var(--neon-purple);
	position: relative;
    z-index: 1;
}

.secondary-cta:hover {
    background: var(--neon-purple);
    color: var(--bg-dark);
    box-shadow: var(--shadow-neon);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--neon-purple);
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Seções Gerais */
section {
    padding: 100px 20px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Seção de Benefícios */
.benefits-section {
    background: var(--bg-darker);
}

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

.benefit-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    border-color: var(--neon-purple);
    box-shadow: var(--shadow-neon);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--neon-purple);
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Seção de Módulos */
.modules-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.modules-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.module-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-card);
    border-radius: 15px;
    border-left: 4px solid var(--primary-purple);
    transition: all 0.3s ease;
}

.module-item:hover {
    border-left-color: var(--neon-purple);
    box-shadow: var(--shadow-neon);
    transform: translateX(10px);
}

.module-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--neon-purple);
    opacity: 0.3;
    min-width: 80px;
}

.module-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.module-content p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Seção de Bônus */
.bonus-section {
    background: var(--bg-darker);
    text-align: center;
}

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

.bonus-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple) 0%, var(--accent-pink) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.bonus-card:hover::before {
    transform: scaleX(1);
}

.bonus-card:hover {
    border-color: var(--neon-purple);
    box-shadow: var(--shadow-neon);
    transform: translateY(-5px);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.bonus-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--neon-purple);
}

.bonus-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Seção de Depoimentos */
.testimonials-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

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

.testimonial-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--neon-purple);
    box-shadow: var(--shadow-neon);
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-avatar {
    width: 200px; /* Ajustado para 200px x 200px conforme solicitado */
    height: 200px;
    object-fit: cover; /* Para garantir que a imagem preencha a área sem distorção */
    border-radius: 50%; /* Se a moldura for circular */
    margin: 0 auto 20px; /* Centraliza e adiciona margem */
    display: block;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Centraliza o autor na caixinha */
    justify-content: center;
    flex-direction: column; /* Alinha verticalmente para centralizar tudo */
    text-align: center;
}

.author-avatar {
    /* Ajuste para caber na moldura (tamanho original era 60px) */
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-pink) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Seção FAQ */
.faq-section {
    background: var(--bg-darker);
}

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

.faq-item {
    background: var(--bg-card);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(124, 58, 237, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--neon-purple);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(124, 58, 237, 0.1);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 2rem;
    color: var(--neon-purple);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Seção de Inscrição */
.signup-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a0f2e 100%);
    text-align: center;
}

.signup-content {
    max-width: 600px;
    margin: 0 auto;
}

.signup-form {
    margin-top: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 18px 25px;
    font-size: 1rem;
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 10px;
    background: var(--bg-card);
    color: var(--text-light);
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.form-group input:focus {
    outline: none;
    border-color: var(--neon-purple);
    box-shadow: var(--shadow-neon);
}

.form-group input::placeholder {
    color: var(--text-gray);
}

.signup-form .cta-button {
    width: 100%;
    margin-top: 20px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #4ade80;
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #f87171;
    display: block;
}

/* Rodapé */
.footer {
    background: var(--bg-darker);
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
	position: relative;
    z-index: 1;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--neon-purple);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.footer-section p,
.footer-section ul {
    color: var(--text-gray);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--neon-purple);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
    color: var(--text-gray);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .benefits-grid,
    .bonus-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .module-item {
        flex-direction: column;
        text-align: center;
    }
    
    .module-number {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    section {
        padding: 60px 20px;
    }
}



/* Seção de Módulos Incríveis - Carrossel */
.incredible-modules-section {
    background: var(--bg-dark);
    padding: 80px 0;
}

.incredible-modules-section .section-title {
    margin-bottom: 60px;
}

.carousel-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    border: 2px solid var(--primary-purple);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-image {
    /* Reduz o tamanho em 50% do formato original */
    max-width: 50%;
    height: auto;
    display: block;
    width: 100%;
    flex-shrink: 0;
    display: block;
    object-fit: cover;
    border-radius: 13px;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(124, 58, 237, 0.7);
    color: var(--text-light);
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-neon);
}

.carousel-button:hover {
    background-color: var(--neon-purple);
    box-shadow: var(--glow-neon);
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

@media (max-width: 768px) {
    .carousel-button {
        padding: 10px 15px;
        font-size: 1.2rem;
    }
}



/* Seção de 2000 Workflows Prontos */
.workflows-prontos-section {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    padding: 100px 20px;
}

.workflows-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.workflows-text {
    text-align: center;
    max-width: 700px;
}

.workflows-text .section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.workflows-text .section-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0;
}

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

.workflows-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--glow-neon);
    transition: transform 0.3s ease;
}

.workflows-image img:hover {
    transform: scale(1.02);
}

@media (min-width: 992px) {
    .workflows-content {
        flex-direction: row;
        text-align: left;
    }

    .workflows-text {
        text-align: left;
        max-width: 50%;
    }

    .workflows-image {
        max-width: 40%;
    }
}

@media (max-width: 768px) {
    .workflows-text .section-title {
        font-size: 2rem;
    }

    .workflows-text .section-subtitle {
        font-size: 1rem;
    }
}



/* Estilos para as imagens dos depoimentos */
.test.author-avatar {
    /* 60px * 1.5 = 90px */
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--primary-color);
    box-shadow: var(--glow-neon);
}

.testimonial-card .author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-card .author-avatar {
    display: none; /* Oculta o avatar de texto agora que temos imagem */
}

