.elementor-949 .elementor-element.elementor-element-81413df{--display:flex;}/* Start custom CSS for html, class: .elementor-element-8482f94 *//* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variáveis de cores e tamanhos para facilitar a manutenção */
:root {
    --primary-purple: #9b3192;
    --primary-orange: #f39c12;
    --dark-purple: #7a2574;
    --light-purple: #b84aa8;
    --dark-orange: #d68910;
    --light-orange: #f8c471;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.15);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Garante que o scroll suave funcione se o navegador suportar */
html {
    scroll-behavior: smooth;
}

/* Estilos para o corpo da landing page (wrapper para isolar de conflitos do tema) */
.lp-page-wrapper { /* Novo seletor para encapsular todo o conteúdo da landing page */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden; /* Evita barra de rolagem horizontal indesejada */
}

/* Container padrão para centralizar o conteúdo */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Estilos para títulos de seção */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 16px;
    position: relative;
}

/* Linha decorativa abaixo do título da seção */
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-orange));
    margin: 24px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Botões gerais */
.btn-primary, .btn-secondary, .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Espaçamento entre texto e ícone */
    padding: 16px 32px;
    border-radius: 50px; /* Bordas arredondadas */
    text-decoration: none; /* Sem sublinhado */
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition); /* Transição suave para hover */
    border: none; /* Remove borda padrão do botão */
    cursor: pointer; /* Indica que é clicável */
}

.btn-primary {
    background: var(--white);
    color: var(--primary-purple);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px); /* Efeito de "levantar" */
    box-shadow: var(--shadow-heavy);
    background: var(--light-gray);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px); /* Efeito de blur no fundo */
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Section (seção principal) */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-orange) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    width: 100%; height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 { width: 300px; height: 300px; top: 10%; right: 10%; animation-delay: 0s; }
.shape-2 { width: 200px; height: 200px; bottom: 20%; left: 5%; animation-delay: 2s; }
.shape-3 { width: 150px; height: 150px; top: 50%; right: 30%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: slideInDown 0.8s ease-out;
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.highlight, .gradient-text {
    background: linear-gradient(45deg, var(--light-orange), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease-out 0.8s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 500;
}

/* Seção Introdutória */
.intro-section {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 32px;
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 24px;
    line-height: 1.2;
}

.intro-text {
    font-size: 1.125rem;
    color: var(--medium-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.intro-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--primary-purple);
}

.feature i {
    color: var(--primary-orange);
}

/* Seção Pilares */
.pilares-section {
    padding: 100px 0;
    background: var(--white);
}

.pilares-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.pilar-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    /* REMOVIDAS as regras de opacity e transform iniciais */
    /* opacity: 0; */
    /* transform: translateY(30px); */
}

/* REMOVIDA a regra .pilar-card.animate */
/* .pilar-card.animate {
    opacity: 1;
    transform: translateY(0);
} */

.pilar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-orange));
}

.pilar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-purple);
}

.pilar-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-orange));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 24px;
    box-shadow: var(--shadow-light);
}

.pilar-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.pilar-subtitle {
    color: var(--medium-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.pilar-list {
    list-style: none;
}

.pilar-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: var(--medium-gray);
    line-height: 1.5;
}

.pilar-list i {
    color: var(--primary-orange);
    margin-top: 2px;
    flex-shrink: 0;
}

.pilar-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 14px;
}

/* Seção Formatos */
.formatos-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.formatos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.formato-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    border: 1px solid #f0f0f0;
    /* REMOVIDAS as regras de opacity e transform iniciais */
    /* opacity: 0; */
    /* transform: translateY(30px); */
}

/* REMOVIDA a regra .formato-card.animate */
/* .formato-card.animate {
    opacity: 1;
    transform: translateY(0);
} */

.formato-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.formato-featured {
    border: 2px solid var(--primary-purple);
    transform: scale(1.05); /* Card de destaque com um pouco mais de zoom */
}

.formato-featured:hover {
    transform: scale(1.05) translateY(-8px); /* Mantém o zoom ao hover */
}

.formato-header {
    text-align: center;
    margin-bottom: 32px;
}

.formato-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    margin: 0 auto 20px;
    box-shadow: var(--shadow-light);
}

.formato-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.formato-subtitle {
    color: var(--medium-gray);
    line-height: 1.6;
}

.formato-list {
    list-style: none;
}

.formato-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: var(--medium-gray);
    line-height: 1.5;
}

.formato-list i {
    color: var(--primary-orange);
    margin-top: 2px;
    flex-shrink: 0;
}

.formato-badge {
    position: absolute;
    top: -12px; /* Posiciona acima do card */
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-orange));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Seção CTA */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-orange) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}

.cta-shapes {
    position: absolute;
    width: 100%; height: 100%;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite;
}

.cta-shape-1 { width: 200px; height: 200px; top: 20%; left: 10%; animation-delay: 1s; }
.cta-shape-2 { width: 150px; height: 150px; bottom: 30%; right: 15%; animation-delay: 3s; }


.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.125rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--primary-purple);
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    margin-bottom: 24px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    background: var(--light-gray);
}

.cta-guarantee {
    font-size: 14px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Animações CSS puras */
@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsividade */
@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .hero-section { min-height: 90vh; padding: 60px 0; }
    .hero-headline { font-size: 2.5rem; }
    .hero-subheadline { font-size: 1.125rem; }
    .hero-cta { flex-direction: column; align-items: center; gap: 15px; }
    .hero-stats { gap: 24px; }
    .stat-number { font-size: 2rem; }
    .section-title { font-size: 2rem; }
    .intro-title, .cta-title { font-size: 2rem; }
    .pilares-grid, .formatos-grid { grid-template-columns: 1fr; gap: 24px; }
    .pilar-card, .formato-card { padding: 32px; }
    .intro-section, .pilares-section, .formatos-section, .cta-section { padding: 80px 0; }
    .intro-features, .cta-benefits { flex-direction: column; align-items: center; gap: 16px; }
    .shape-1 { width: 200px; height: 200px; }
    .shape-2 { width: 150px; height: 150px; }
    .shape-3 { width: 100px; height: 100px; }
}

@media (max-width: 480px) {
    .hero-headline { font-size: 2rem; }
    .section-title { font-size: 1.75rem; }
    .intro-title, .cta-title { font-size: 1.75rem; }
    .pilar-card, .formato-card { padding: 24px; }
    .btn-primary, .btn-secondary { padding: 14px 28px; font-size: 14px; }
    .cta-button { padding: 16px 32px; font-size: 16px; }
}

/* Melhorias de acessibilidade */
.btn-primary:focus, .btn-secondary:focus, .cta-button:focus {
    outline: 3px solid var(--primary-orange);
    outline-offset: 2px;
}

.pilar-card:focus, .formato-card:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

/* Estilo para WordPress (Garantir que margens/padding extras do tema não atrapalhem) */
/* Usamos !important para garantir que prevaleça sobre estilos padrão do tema/Elementor */
.wp-block-group { margin: 0 !important; padding: 0 !important; }
.wp-block-group__inner-container { margin: 0 !important; padding: 0 !important; }

/* Prefers reduced motion (para usuários com sensibilidade a animações) */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .shape, .cta-shape {
        animation: none;
    }
}/* End custom CSS */