/* Estilos adicionais para Mentoria Nômade Dark - Landing Page */

/* Seção dos mentores */
.section-dark {
    background: linear-gradient(to bottom, #121212, #1a1a2e);
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMjIyMjIyIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0wIDBoNDB2NDBoLTQweiIgb3BhY2l0eT0iLjA1Ii8+PC9nPjwvc3ZnPg==');
    opacity: 0.8;
    pointer-events: none;
}

.section-container {
    position: relative;
    z-index: 2;
}

/* Divisória da seção */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 40px;
    max-width: 600px;
}

.section-divider:before,
.section-divider:after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(80, 227, 194, 0.4), transparent);
}

.divider-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #121212;
    border-radius: 50%;
    margin: 0 20px;
    color: #50E3C2;
    font-size: 18px;
    box-shadow: 0 0 15px rgba(80, 227, 194, 0.3);
    border: 1px solid rgba(80, 227, 194, 0.3);
    position: relative;
    z-index: 1;
}

/* Melhorias nas transições e efeitos de hover */
.mentor-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mentor-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Animação sutil de fundo */
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.mentor-card .mentor-nome {
    background-size: 200% auto;
    animation: gradientAnimation 5s ease infinite;
}

/* Estilos para o cabeçalho e navegação */
.nav-destaque {
    background: linear-gradient(45deg, #3498db, #2c3e50);
    padding: 8px 15px;
    border-radius: 30px;
    color: white !important;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.nav-destaque:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
    background: linear-gradient(45deg, #217dbb, #1a2636);
}

/* Estilos para o Hero */
.destaque {
    color: #3498db;
    font-weight: 600;
}

/* Estilos para estatísticas */
.estatisticas {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.estatistica-item {
    text-align: center;
}

.estatistica-numero {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    display: block;
}

.estatistica-label {
    color: #b0b0b0;
    font-size: 1rem;
    margin-top: 5px;
}

/* Alinhamento dos botões de CTA em linha e responsivo */
.cta-buttons-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0 10px;
}

/* Cards de destaque */
.ferramenta-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ferramenta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.5s ease;
}

.ferramenta-card:hover::before {
    left: 100%;
}

.ferramenta-card:hover {
    transform: translateY(-10px);
    border-color: rgba(52, 152, 219, 0.5);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.2);
}

.ferramenta-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 20px;
    display: block;
}

.ferramenta-titulo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.ferramenta-descricao {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ferramenta-destaque {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.ferramenta-destaque::after {
    content: '✨ DESTAQUE';
    position: absolute;
    top: 18px;
    right: 20px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

/* Estilos para seção do criador */
.criador-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.criador-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.criador-imagem {
    position: relative;
    display: flex;
    justify-content: center;
}

.criador-foto {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(52, 152, 219, 0.6);
    box-shadow: 0 20px 60px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.criador-foto:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 80px rgba(52, 152, 219, 0.5);
}

.criador-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    animation: pulse 2s infinite;
    z-index: 3;
}

.criador-badge i {
    margin-right: 8px;
}

.criador-info {
    color: white;
}

.criador-nome {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #fff, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.criador-titulo {
    font-size: 1.3rem;
    color: #3498db;
    margin-bottom: 25px;
    font-weight: 600;
}

.criador-descricao {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 40px;
    max-width: 600px;
}

.criador-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-numero {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    display: block;
    text-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

.mentor-colaborador {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mentor-colaborador h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #3498db;
}

.colaborador-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.colaborador-foto {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(52, 152, 219, 0.4);
}

.colaborador-card h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.colaborador-card p {
    margin: 5px 0 0;
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Timeline avançada */
.timeline-advanced {
    margin-top: 80px;
    position: relative;
    padding-left: 30px;
}

.timeline-advanced:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #3498db, #2c3e50);
    z-index: 1;
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
    padding-left: 30px;
}

.timeline-point {
    position: absolute;
    left: -45px;
    background: linear-gradient(45deg, #3498db, #2c3e50);
    color: #fff;
    padding: 8px 12px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
    z-index: 2;
}

.timeline-content h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #b0b0b0;
    margin: 0;
    font-size: 1rem;
}

/* Estilos para depoimentos */
.result-highlight {
    display: block;
    margin-top: 10px;
    color: #3498db;
    font-weight: 600;
    font-size: 0.9rem;
}

.guarantee-text {
    color: #b0b0b0;
    margin-top: 15px;
    display: block;
    text-align: center;
}

.guarantee-text i {
    color: #2ecc71;
    margin-right: 8px;
}

/* Estilos para área de preço */
.pricing-badge {
    position: relative;
    margin: 15px auto 20px;
    display: block;
    width: fit-content;
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    letter-spacing: 1px;
    z-index: 3;
}

.pricing-header {
    margin-bottom: 30px;
    position: relative;
}

.price-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    color: #2ecc71;
    font-size: 1rem;
    font-weight: 600;
}

.price-guarantee i {
    font-size: 1.2rem;
}

.discount-badge {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 15px;
    position: relative;
    top: -5px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #2ecc71;
    font-size: 1rem;
    margin-right: 8px;
    flex-shrink: 0;
}

.pricing-btn {
    margin-bottom: 25px;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.countdown-container {
    margin-bottom: 25px;
}

.countdown-title {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 10px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.countdown-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 70px;
}

.count-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    display: block;
    text-align: center;
}

.count-text {
    font-size: 0.8rem;
    color: #b0b0b0;
    display: block;
    text-align: center;
    margin-top: 5px;
}

.payment-methods {
    margin-top: 30px;
    text-align: center;
}

.payment-methods p {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.satisfaction-guarantee {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 60px auto 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-icon {
    font-size: 3rem;
    color: #2ecc71;
    flex-shrink: 0;
}

.guarantee-text h3 {
    color: #2ecc71;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.guarantee-text p {
    margin: 0;
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 1rem;
}

/* Estilo para FAQ */
.faq-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(13, 13, 35, 0.9) 100%);
    padding: 100px 0;
    position: relative;
}

.accordion {
    max-width: 800px;
    margin: 40px auto;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.accordion-icon {
    color: #3498db;
    font-size: 1.1rem;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    padding: 0 25px;
    background: rgba(255, 255, 255, 0.02);
}

.accordion-content p {
    padding: 10px 0 25px;
    margin: 0;
    color: #b0b0b0;
    line-height: 1.7;
}

.accordion-item.active .accordion-content {
    max-height: 500px !important;
}

.accordion-item.active .accordion-header {
    background: rgba(52, 152, 219, 0.1);
}

/* Bonus Section */
.bonus-section {
    background: 
        linear-gradient(135deg, rgba(13, 13, 35, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%),
        radial-gradient(circle at 80% 20%, rgba(255, 20, 147, 0.08) 0%, transparent 50%);
    padding: 100px 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: rgba(52, 152, 219, 0.5);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.2);
}

.bonus-icon {
    font-size: 3rem;
    color: #f39c12;
    margin-bottom: 20px;
}

.bonus-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.bonus-value {
    color: #f39c12;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.bonus-card p {
    color: #b0b0b0;
}

.bonus-total {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-total-value {
    font-size: 1.1rem;
}

.bonus-total-value span {
    color: #b0b0b0;
    margin-right: 10px;
}

.bonus-total-value strong {
    color: #f39c12;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Footer styles */
.main-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: white;
    padding: 50px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content-new {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #fff, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: #b0b0b0;
    margin-bottom: 20px;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #3498db;
    transform: translateY(-3px);
}

.footer-contact-info {
    flex: 1;
    min-width: 250px;
}

.footer-contact-info h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

.footer-contact-info p {
    color: #b0b0b0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-info i {
    color: #3498db;
}

.copyright-new {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
}

.copyright-new p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .criador-content {
        grid-template-columns: 1fr;
    }
    
    .criador-foto {
        width: 200px;
        height: 200px;
    }
    
    .criador-nome {
        font-size: 2.5rem;
    }
    
    .criador-titulo {
        font-size: 1.2rem;
    }
    
    .criador-descricao {
        font-size: 1rem;
    }
    
    .criador-badge {
        top: 10px;
        right: 10px;
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .nomade-title {
        font-size: 2.5rem;
    }
    
    .nomade-subtitle {
        font-size: 1.1rem;
    }
    
    .estatisticas {
        gap: 30px;
    }
    
    .estatistica-numero {
        font-size: 2.2rem;
    }
    
    .btn-nomade-primary,
    .btn-whatsapp-destaque {
        padding: 15px 25px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }
    
    .satisfaction-guarantee {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .bonus-total {
        flex-direction: column;
        text-align: center;
    }
}
