/* ===== NOVO DESIGN ULTRA MODERNO MENTORIA ===== */

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

body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

/* Importação de fonte profissional */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Otimizações de performance */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

* {
    will-change: auto;
}

/* Header e Navegação */
header {
    background-color: #000;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transform: translateZ(0);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
    max-width: 150px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #dc3545;
}

/* Hero Section - Melhorado */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('IMG/Capa/nova.jpg') center top/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    animation: gradient-shift 10s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
}

/* Responsivo para hero */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
}

/* Seções */
section {
    padding: 5rem 2rem;
}

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

/* Quem Somos */
.about {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.03) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

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

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-content {
    margin-bottom: 60px;
}

.about-flex {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
}

.video-item-custom {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-item-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.video-item-custom iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 20px;
}

.about-text {
    padding: 20px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #dc3545, #4ecdc4);
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 20px;
}

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

.feature {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.feature:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.feature:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature i {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature:hover i {
    color: #c82333;
    transform: scale(1.1);
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.feature p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('IMG/Capa/nova.jpg') center top/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Seções */
section {
    padding: 5rem 2rem;
}

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

/* Quem Somos */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    text-align: center;
}

.about-flex {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
}

.video-item-custom {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-item-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.video-item-custom iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 20px;
}

.about-text {
    padding: 20px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #dc3545, #4ecdc4);
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 20px;
}

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

.feature {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.feature:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.feature:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature i {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature:hover i {
    color: #c82333;
    transform: scale(1.1);
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.feature p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}


    
    .language-dropdown {
        font-size: 12px;
        padding: 4px 6px;
    }
}

/* Botão WhatsApp Flutuante - Verde com Animação de Pulo */
.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsapp-bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 28px;
    color: #fff;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes whatsapp-bounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Debug - força visibilidade das listas */
.module.open ul {
    display: block !important;
    opacity: 1 !important;
    max-height: none !important;
    overflow: visible !important;
}

/* Animação suave */
.module ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.module.open ul {
    max-height: 2000px;
}
/* Melhorias para galeria */
.gallery-section {
    padding: 80px 20px;
    background: #000000;
    color: #ffffff;
    position: relative;
}

.gallery-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4a);
    border-radius: 2px;
}

.gallery-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
    touch-action: pan-y;
}

.gallery-item {
    flex: 0 0 auto;
    width: 300px;
    margin: 0 10px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.3s ease;
    background-color: #1a1a1a;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(220, 53, 69, 0.9);
    color: #fff;
    border: none;
    padding: 15px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    min-height: 50px;
}

.gallery-btn:hover {
    background: #dc3545;
    transform: translateY(-50%) scale(1.1);
}

.gallery-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Melhorias para seção do estúdio */
.studio-section {
    padding: 80px 20px;
    background: #000000;
    color: #ffffff;
}

.studio-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.studio-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4a);
    border-radius: 2px;
}

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

.studio-grid-custom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.studio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.studio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.studio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.studio-item:hover img {
    transform: scale(1.05);
}

/* Estúdio */
.studio-gallery {
    padding: 4rem 0;
    background-color: #000000;
}

.studio-gallery h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
}

.studio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.studio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.studio-item:hover {
    transform: scale(1.03);
}

.studio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Mentoria - Garantindo contraste adequado para todos os textos (exceto CTA) */
.mentorship,
.mentorship *,
.mentoria-body :not(.cta-section):not(.cta-section *) {
    color: #111 !important;
}

/* Exceções para elementos específicos que devem manter cores especiais - DOURADO para títulos e detalhes */
.mentorship h1,
.mentorship h2,
.mentorship h3,
.mentorship h4,
.mentorship h5,
.mentorship h6,
.mentoria-title,
.mentoria-title *,
.mentorship-card h3,
.mentorship-info-enhanced h2,
.mentorship-info-enhanced h3,
.mentorship-benefits-enhanced h4,
.mentorship-modules h3,
.module h4,
.aluna-video-section h4,
.bonus-enhanced h4 {
    color: #ffd700 !important;
}

/* Botões e links especiais mantêm suas cores - VERMELHO para botão Saiba Mais */
.whatsapp-cta,
.whatsapp-cta *,
.cta-primary,
.cta-primary *,
.cta-secondary,
.cta-secondary *,
.destaque-mentoria .cta-button,
.destaque-mentoria .cta-button * {
    color: #fff !important;
}

/* Exceções para seção CTA - cores específicas */
.cta-section h2 {
    color: #333333 !important;
}

.cta-section > .cta-container > p {
    color: #555555 !important;
}

.testimonial blockquote {
    color: #ffffff !important;
}

.testimonial cite {
    color: #dbeafe !important;
}

/* Ícones especiais mantêm suas cores - DOURADO */
.mentorship-card i.fas.fa-graduation-cap,
.mentoria-title i,
.mentorship-content-wrapper li:before,
.mentorship-benefits-enhanced li::before,
.module li::before {
    color: #ffd700 !important;
}

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

.mentorship-content {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    margin: 40px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.mentorship-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    max-width: 900px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.mentorship-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
    z-index: 0;
}

.mentorship-card > * {
    position: relative;
    z-index: 1;
}

.mentorship-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
}

.mentorship-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
    margin: 2.5rem 0;
}

.mentorship-content-wrapper ul {
    flex: 1;
    text-align: left;
    list-style: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 25px;
    border-left: 5px solid #ffd700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.mentorship-content-wrapper ul li {
    margin-bottom: 1rem;
    padding: 12px 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.mentorship-content-wrapper ul li:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.2);
}

.mentorship-content-wrapper ul li:before {
    content: "📚";
    margin-right: 12px;
    font-size: 1.1rem;
}

.mentorship-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.mentorship-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.mentorship-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.mentorship-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mentorship-image:hover::after {
    opacity: 1;
}

.mentorship-content-wrapper ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: #111 !important;
}

.mentorship-content-wrapper ul li:before {
    content: "•";
    color: #dc3545;
    position: absolute;
    left: 0;
}

.mentorship-image {
    flex: 1;
    max-width: 300px;
}

.mentorship-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mentorship-info {
    text-align: center;
    margin-top: 3rem;
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #ffffff;
    border-radius: 20px;
    margin: 40px 20px 0;
    position: relative;
    overflow: hidden;
}

.mentorship-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 53, 69, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.mentorship-info > * {
    position: relative;
    z-index: 1;
}

.mentorship-info-enhanced {
    max-width: 1200px;
    margin: 0 auto;
}

.info-header {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.info-main-title {
    margin: 0 0 15px 0;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-subtitle {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.6;
}

/* Guarantee Section */
.guarantee-section {
    padding: 30px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.guarantee-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
    border-left: 4px solid #2563eb;
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.guarantee-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
}

.guarantee-enhanced {
    margin: 0;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Professional Development Section */
.professional-development {
    padding: 40px 30px;
    background: #f8fafc;
}

.development-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
}

.development-title i {
    color: #2563eb;
    font-size: 1.5rem;
}

.video-container-professional {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.video-responsive {
    width: 100%;
    height: auto;
    display: block;
}

.video-description {
    padding: 25px;
    text-align: center;
}

.video-description h4 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
}

.video-description p {
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mentor Presentation */
.mentor-presentation {
    padding: 40px 30px;
    background: white;
}

.mentor-credentials h3 {
    margin: 0 0 15px 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
}

.mentor-credentials > p {
    text-align: center;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.credentials-list {
    display: grid;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.credential {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 10px;
    border-left: 3px solid #2563eb;
}

.credential i {
    color: #2563eb;
    font-size: 1.2rem;
    width: 20px;
}

.credential span {
    color: #1e293b;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Program Benefits Grid */
.program-benefits {
    padding: 40px 30px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.benefits-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
}

.benefits-title i {
    color: #2563eb;
    font-size: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #2563eb;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.benefit-card h4 {
    margin: 0 0 12px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.benefit-card p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Professional Modules Section */
.mentorship-modules {
    padding: 40px 30px;
    background: white;
}

.modules-header {
    text-align: center;
    margin-bottom: 40px;
}

.modules-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
}

.modules-title i {
    color: #2563eb;
    font-size: 2rem;
}

.modules-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
}

/* ===== LAYOUT PROFISSIONAL REORGANIZADO ===== */

/* Módulos em Grid Azul */
.modules-grid-professional {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.module-box-blue {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 32px;
    border-left: 5px solid #3b82f6;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.module-box-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.module-box-blue:hover::before {
    opacity: 1;
}

.module-box-blue:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
    border-left-color: #8b5cf6;
}

.module-header-compact {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.module-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.module-header-compact h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    flex: 1;
}

.module-topics-compact {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.module-topics-compact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
}

.module-topics-compact li:hover {
    color: #3b82f6;
}

.module-topics-compact i {
    color: #22c55e;
    font-size: 1rem;
}

/* Estilos especiais */
.styles-grid-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.style-tag-compact {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.realism-styles-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.realism-item-compact {
    background: #f1f5f9;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: #334155;
    transition: all 0.3s ease;
}

.realism-item-compact:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

/* Seção de bônus profissional */
.bonus-professional-centered {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.bonus-professional-centered::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.bonus-header-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.bonus-icon-centered {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.bonus-content-centered h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.bonus-content-centered p {
    opacity: 0.9;
    margin: 0;
}

.bonus-workshops-centered {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.workshop-item-centered {
    background: rgba(255, 255, 255, 0.2);
    padding: 16px 24px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.workshop-item-centered:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.workshop-style-centered {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}

.workshop-desc-centered {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Video responsivo melhorado */
.video-container-professional {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    margin: 30px 0;
}

.video-responsive {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-description {
    background: white;
    padding: 25px;
    text-align: center;
}

.video-description h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.video-description p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Responsividade aprimorada */
@media (max-width: 768px) {
    .benefits-grid-redesigned {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modules-grid-professional {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bonus-header-centered {
        flex-direction: column;
        gap: 15px;
    }
    
    .bonus-workshops-centered {
        flex-direction: column;
        gap: 15px;
    }
    
    .module-header-compact {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* ===== HERO ULTRA MODERNO - DESIGN PROFISSIONAL ===== */
.hero-ultra-modern {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 0 0 0;
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    animation: patternFloat 20s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    color: white;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 32px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #22c55e;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.title-line-1 {
    display: block;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line-2 {
    display: block;
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line-3 {
    display: block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
}

.hero-right {
    position: relative;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-5px);
}

.card-1 {
    top: 50px;
    left: -20px;
    width: 220px;
    animation: float1 6s ease-in-out infinite;
}

.card-2 {
    top: 200px;
    right: -20px;
    width: 200px;
    animation: float2 8s ease-in-out infinite;
}

.card-3 {
    bottom: 80px;
    left: 40px;
    width: 190px;
    animation: float3 7s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(5deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-15px) rotateY(-5deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-25px) rotateY(3deg); }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.card-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.card-status.active {
    background: #22c55e;
    animation: pulse 2s infinite;
}

.card-status.completed {
    background: #3b82f6;
}

.card-status.pending {
    background: #f59e0b;
}

.card-header span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 4px;
    transition: width 2s ease;
}

.central-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.central-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899, #f59e0b);
    border-radius: 22px;
    z-index: -1;
    animation: rotate 8s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== PROGRAMA ULTRA MODERNO ===== */
.programa-ultra-modern {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.programa-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-intro {
    text-align: center;
    margin-bottom: 80px;
}

.intro-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1e293b;
}

.title-accent {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.skills-showcase {
    margin-bottom: 80px;
}

.skill-category {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.skill-category:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.skill-category.active {
    border-color: #3b82f6;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
}

.category-header {
    display: flex;
    align-items: center;
    padding: 32px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.category-header:hover {
    background: #f8fafc;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 24px;
}

.category-info {
    flex: 1;
}

.category-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1e293b;
}

.category-info span {
    color: #64748b;
    font-size: 0.95rem;
}

.category-arrow {
    color: #94a3b8;
    transition: transform 0.3s ease;
}

.skill-category.active .category-arrow {
    transform: rotate(90deg);
}

.category-content {
    padding: 0 32px 32px;
    display: none;
}

.skill-category.active .category-content {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.module-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.module-item:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.module-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.module-name {
    font-weight: 600;
    color: #1e293b;
}

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

.cta-modern {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 20px;
    padding: 40px;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
}

.cta-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-content p {
    opacity: 0.9;
    margin: 0;
}

.cta-button-modern {
    background: white;
    color: #3b82f6;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.button-icon {
    transition: transform 0.3s ease;
}

.cta-button-modern:hover .button-icon {
    transform: translateX(5px);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .cta-modern {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .programa-container,
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-features {
        align-items: center;
    }
    
    .category-header {
        padding: 24px 20px;
    }
    
    .category-content {
        padding: 0 20px 24px;
    }
    
    .module-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== NOVAS SEÇÕES PROFISSIONAIS ===== */

/* Estatísticas de Sucesso */
.success-statistics {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.success-statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.statistics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.stats-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.stats-title i {
    color: #3b82f6;
    font-size: 2rem;
}

.stats-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

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

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Processo de Aprendizagem */
.learning-process {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.learning-process::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.process-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.process-title i {
    color: #3b82f6;
    font-size: 2rem;
}

.process-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 37px;
    top: 75px;
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6);
}

.timeline-marker {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    position: relative;
}

.timeline-marker::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-timeline 2s infinite;
}

@keyframes pulse-timeline {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.timeline-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.timeline-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 16px;
}

.timeline-duration {
    display: inline-block;
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Garantia Aprimorada */
.guarantee-section {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.guarantee-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.guarantee-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.guarantee-icon i {
    font-size: 3rem;
    color: white;
}

.guarantee-content {
    flex: 1;
    color: white;
}

.guarantee-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.guarantee-enhanced {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.95;
    margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .timeline-item::after {
        display: none;
    }
    
    .guarantee-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .guarantee-icon {
        width: 80px;
        height: 80px;
    }
    
    .guarantee-icon i {
        font-size: 2.5rem;
    }
}

/* Mentor Section Aprimorada */
.mentor-presentation-enhanced {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.mentor-presentation-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

.mentor-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.mentor-profile {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.mentor-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
}

.mentor-avatar {
    position: relative;
    flex-shrink: 0;
}

.mentor-avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mentor-status {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #22c55e;
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.mentor-info {
    flex: 1;
    position: relative;
    z-index: 2;
}

.mentor-info h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
}

.mentor-role {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 20px;
}

.mentor-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stars {
    display: flex;
    gap: 4px;
}

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

.rating-text {
    color: #64748b;
    font-weight: 600;
}

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

.credential-enhanced {
    background: white;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.credential-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.credential-enhanced:hover::before {
    opacity: 1;
}

.credential-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(59, 130, 246, 0.15);
}

.credential-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.credential-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.credential-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.credential-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.mentor-quote {
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.mentor-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.mentor-quote blockquote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.mentor-quote blockquote::before {
    content: '"';
    font-size: 6rem;
    color: rgba(59, 130, 246, 0.2);
    position: absolute;
    top: -30px;
    left: -20px;
    font-family: Georgia, serif;
}

.mentor-quote cite {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

/* Responsividade */
@media (max-width: 768px) {
    .mentor-profile {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .mentor-avatar img {
        width: 120px;
        height: 120px;
    }
    
    .mentor-info h3 {
        font-size: 2rem;
    }
    
    .mentor-credentials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .credential-enhanced {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .mentor-quote {
        padding: 30px 20px;
    }
    
    .mentor-quote blockquote {
        font-size: 1.2rem;
    }
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
}

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

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.faq-title i {
    color: #3b82f6;
    font-size: 2rem;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin: 0;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

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

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: left 0.5s ease;
}

.faq-question:hover::before {
    left: 100%;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    flex: 1;
    position: relative;
    z-index: 2;
}

.faq-question i {
    color: #3b82f6;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 24px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* ===== FIM NOVAS SEÇÕES PROFISSIONAIS ===== */

/* ===== FIM DO NOVO DESIGN ULTRA MODERNO MENTORIA ===== */

/* ===== MELHORIAS SEÇÕES MENTORIA ===== */

/* Seção de informações da mentoria aprimorada */
.mentorship-info-enhanced {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 80px 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

.mentorship-info-enhanced::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="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.info-header {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

/* Cards de benefícios redesenhados */
.benefits-grid-redesigned {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.benefit-card-gray {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.benefit-card-gray::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.benefit-card-gray:hover::before {
    left: 100%;
}

.benefit-card-gray:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.benefit-card-gray h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
    position: relative;
    z-index: 2;
}

.benefit-card-gray p {
    color: #64748b;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Módulos profissionais */
.modules-grid-professional {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.module-box-blue {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 32px;
    border-left: 5px solid #3b82f6;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.module-box-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.module-box-blue:hover::before {
    opacity: 1;
}

.module-box-blue:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
    border-left-color: #8b5cf6;
}

.module-header-compact {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.module-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.module-header-compact h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    flex: 1;
}

.module-topics-compact {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.module-topics-compact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
}

.module-topics-compact li:hover {
    color: #3b82f6;
}

.module-topics-compact i {
    color: #22c55e;
    font-size: 1rem;
}

/* Estilos especiais */
.styles-grid-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.style-tag-compact {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.realism-styles-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.realism-item-compact {
    background: #f1f5f9;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: #334155;
    transition: all 0.3s ease;
}

.realism-item-compact:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

/* Seção de bônus profissional */
.bonus-professional-centered {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.bonus-professional-centered::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.bonus-header-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.bonus-icon-centered {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.bonus-content-centered h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.bonus-content-centered p {
    opacity: 0.9;
    margin: 0;
}

.bonus-workshops-centered {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.workshop-item-centered {
    background: rgba(255, 255, 255, 0.2);
    padding: 16px 24px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.workshop-item-centered:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.workshop-style-centered {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}

.workshop-desc-centered {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Video responsivo melhorado */
.video-container-professional {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    margin: 30px 0;
}

.video-responsive {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-description {
    background: white;
    padding: 25px;
    text-align: center;
}

.video-description h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.video-description p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Responsividade aprimorada */
@media (max-width: 768px) {
    .benefits-grid-redesigned {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modules-grid-professional {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bonus-header-centered {
        flex-direction: column;
        gap: 15px;
    }
    
    .bonus-workshops-centered {
        flex-direction: column;
        gap: 15px;
    }
    
    .module-header-compact {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}