/* ===== DESIGN SYSTEM - VARIÁVEIS ===== */
:root {
    /* Cores Principais */
    --primary-bg: #f4efe1;
    --primary-text: #121212;
    --secondary-text: rgba(18, 18, 18, 0.5);
    --accent-bg: #ded4e8;
    --accent-text: #121212;
    --white: #ffffff;
    --black: #212121;
    
    /* Cores dos Cards */
    --card-yellow: #fbff7a;
    --card-green: #acdd9f;
    --card-purple: #ded4e8;
    --card-light-green: #e2ddc7;
    --card-hover: #cec8b2;
    --card-whatsapp: #bad2b5;
    
    /* Cores dos Botões */
    --btn-primary-bg: #ded4e8;
    --btn-primary-text: #121212;
    --btn-dark-bg: #121212;
    --btn-dark-text: #f4efe1;
    
    /* Espaçamentos */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --section-margin-bottom: 80px;
    
    /* Tipografia */
    --font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-large: 3rem;
    --font-size-medium: 1.8rem;
    --font-size-base: 1rem;
    
    /* Bordas */
    --border-radius: 8px;
    --border-radius-full: 50px;
    
    /* Transições */
    --transition-smooth: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

/* ===== RESET E CONFIGURAÇÕES BÁSICAS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--primary-text);
    background-color: var(--primary-bg);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-text);
}

h1 {
    font-size: var(--font-size-large);
    font-weight: 700;
}

h2 {
    font-size: var(--font-size-medium);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: none;
}

.btn:hover {
    background: var(--card-hover);
    transform: translateY(-2px);
    color: #121212;
}

.btn-primary {
    background: #ded4e8;
    color: #121212;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 20px;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo a:hover img {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: nowrap;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #212121;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #cec8b2;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #bad2b5;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.header-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-header {
    background: #121212;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-header:hover {
    background: #333333;
    color: #FFFFFF;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    padding: 80px 0 20px;
    background: #f4efe1;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}


.hero h1 {
    margin-bottom: 20px;
    color: #121212;
    opacity: 1;
    transform: translateY(0);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(18, 18, 18, 0.5);
    margin-bottom: 30px;
    opacity: 1;
    transform: translateY(0);
}

.hero-actions {
    display: flex !important;
    align-items: center;
    gap: 30px;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}


/* Stats Section */
.stats {
    padding: 40px 0;
    background: #f4efe1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
    cursor: pointer;
    box-shadow: none;
}

.stat-item:hover {
    transform: scale(1.02) !important;
    box-shadow: none !important;
}

.stat-item:nth-child(1) {
    background: #fbff7a;
}

.stat-item:nth-child(2) {
    background: #ded4e8;
}

.stat-item:nth-child(3) {
    background: #acdd9f;
}


.stat-item h2 {
    font-size: 3rem;
    color: #121212;
    font-weight: bold;
    margin-bottom: 15px;
}

.stat-item p {
    color: rgba(18, 18, 18, 0.5);
    font-size: 1rem;
}

/* Features Section */
.features {
    padding: 60px 0;
    background: #f4efe1;
}

.section-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.section-subtitle {
    color: rgba(18, 18, 18, 0.5);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ESPECÍFICO PARA DETAILED FEATURES */
.detailed-features .section-subtitle {
    font-weight: 400;
}

.section-description {
    font-size: 1.2rem;
    color: rgba(18, 18, 18, 0.5);
    margin-bottom: 30px;
    margin-top: 30px;
}

/* TÍTULOS PRINCIPAIS DAS SEÇÕES */
.section-header h2 {
    color: #121212;
    font-weight: bold;
    font-size: 3rem;
    max-width: 100%;
    margin: 0 auto 30px auto;
}

/* TEXTOS COMPLEMENTARES DAS SEÇÕES */
.section-header p {
    color: rgba(18, 18, 18, 0.5);
    font-size: 1.2rem;
    margin-bottom: 30px;
    margin-top: 30px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.features-image {
    text-align: center;
    margin: 40px 0 0 0;
}

.features-image img {
    max-width: 600px;
    width: 100%;
    height: auto;
}

/* Features Grid */
.features-grid {
    padding: 20px 0 100px 0;
    background: #f4efe1;
}

.features-grid .section-header {
    margin-bottom: 10px;
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
    box-shadow: none;
}

.feature-item:hover {
    transform: scale(1.02) !important;
    box-shadow: none !important;
}

/* Primeira linha de cards */
.feature-item:nth-child(1) {
    background: #fbff7a;
}

.feature-item:nth-child(2) {
    background: #acdd9f;
}

.feature-item:nth-child(3) {
    background: #ded4e8;
}

.feature-item:nth-child(4) {
    background: #FFFFFF;
}


/* Cards escuros - textos claros */
.feature-item:nth-child(5),
.feature-item:nth-child(9),
.feature-item:nth-child(14) {
    background: #212121;
}

.feature-item:nth-child(5) h3,
.feature-item:nth-child(9) h3,
.feature-item:nth-child(14) h3 {
    color: #f4efe1;
}

.feature-item:nth-child(5) .feature-plus,
.feature-item:nth-child(9) .feature-plus,
.feature-item:nth-child(14) .feature-plus {
    color: rgba(244, 239, 225, 0.3);
}

.feature-item:nth-child(6) {
    background: #acdd9f;
}

/* Segunda linha de cards */
.feature-item:nth-child(7) {
    background: #ded4e8;
}

.feature-item:nth-child(8) {
    background: #FFFFFF;
}

.feature-item:nth-child(10) {
    background: #fbff7a;
}

.feature-item:nth-child(11) {
    background: #acdd9f;
}

.feature-item:nth-child(12) {
    background: #ded4e8;
}

.feature-item:nth-child(13) {
    background: #FFFFFF;
}



/* Hover colors baseadas na cor de fundo de cada card */
.feature-item:nth-child(1):hover {
    border-color: #e6f051;
}

.feature-item:nth-child(2):hover,
.feature-item:nth-child(6):hover,
.feature-item:nth-child(11):hover {
    border-color: #8bc78a;
}

.feature-item:nth-child(3):hover,
.feature-item:nth-child(7):hover,
.feature-item:nth-child(12):hover {
    border-color: #c4b8d4;
}

.feature-item:nth-child(4):hover,
.feature-item:nth-child(8):hover,
.feature-item:nth-child(13):hover {
    border-color: #e0e0e0;
}

.feature-item:nth-child(5):hover,
.feature-item:nth-child(9):hover,
.feature-item:nth-child(14):hover {
    border-color: #424242;
}

.feature-item:nth-child(10):hover {
    border-color: #e6f051;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 60px;
    height: 60px;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #121212;
}

.feature-plus {
    color: rgba(18, 18, 18, 0.3);
    font-size: 1.5rem;
}

/* Detailed Features */
.detailed-features {
    padding: 0 0 100px 0;
    background: #f4efe1;
}

/* SEÇÕES ESPECÍFICAS - LARGURA REDUZIDA */
.detailed-features .section-header {
    max-width: 80%;
    margin: 0 auto 80px;
}

.features .section-header {
    max-width: 840px;
    margin: 0 auto 80px;
}

/* PRICING - MANTÉM LARGURA PADRÃO */
.pricing .section-header {
    max-width: 960px;
    margin: 0 auto 80px;
}

.feature-detail {
    margin-bottom: 40px;
    background: #e2ddc7;
    border-radius: 15px;
    padding: 40px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.feature-detail:hover {
    transform: scale(1.02) !important;
    box-shadow: none !important;
}

.feature-detail:last-child {
    margin-bottom: 0;
}

/* Badges para destaques */
.feature-benefits li {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 16px;
    border-radius: 50px;
    border: none;
    color: #121212;
    width: fit-content;
}

/* Primeiro badge - amarelo */
.feature-benefits li:nth-child(1) {
    background: #fbff7a;
}

/* Segundo badge - verde */
.feature-benefits li:nth-child(2) {
    background: #acdd9f;
}

/* Terceiro badge - roxo claro */
.feature-benefits li:nth-child(3) {
    background: #ded4e8;
}

.feature-benefits li i {
    margin-right: 12px;
    font-size: 1rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Cores dos ícones baseadas no fundo do badge */
.feature-benefits li:nth-child(1) i {
    color: #fbff7a;
}

.feature-benefits li:nth-child(2) i {
    color: #acdd9f;
}

.feature-benefits li:nth-child(3) i {
    color: #ded4e8;
}

/* Botão específico para detailed-features */
.detailed-features .btn-primary {
    background: #121212;
    color: #f4efe1;
    border: none;
}

.detailed-features .btn-primary:hover {
    background: #333333;
    color: #f4efe1;
}

.feature-detail-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.feature-detail-image {
    text-align: center;
}

.feature-detail-image img {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.feature-detail-text h3 {
    color: #121212;
    margin-bottom: 15px;
}

.feature-detail-text h4 {
    color: #121212;
    font-size: 1rem;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 16px;
    background: #FFFFFF;
    border-radius: 50px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.feature-detail-text p {
    color: rgba(18, 18, 18, 0.5);
}

.feature-benefits {
    list-style: none;
    margin: 30px 0;
}

.feature-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature-benefits i {
    color: #247d64;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Pricing */
.pricing {
    padding: 0 0 40px 0;
    background: #f4efe1;
}

.pricing-grid {
    position: relative;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px 30px 0px 30px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: absolute;
    width: calc(33.333% - 20px);
    margin-bottom: 30px;
}

.pricing-card:hover {
    border: 2px solid #e2ddc7;
    transform: translateY(-5px);
    box-shadow: none;
}

.pricing-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
}

.pricing-card img {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #121212;
}

.pricing-banner {
    background: #121212;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin: 0 0 30px 0;
}

.pricing-title-badge {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #121212;
    font-weight: bold;
    text-transform: uppercase;
}

.pricing-price {
    margin-bottom: 30px;
}

.price-badge {
    background: #F4EFE1;
    color: #121212;
    padding: 15px 25px;
    border-radius: 12px;
    text-align: center;
    display: inline-block;
    margin: 0 auto;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #121212;
    display: block;
    margin-bottom: 5px;
}

.period {
    color: #121212;
    font-size: 1rem;
    font-weight: 500;
}

/* Pricing features styles moved to accordion section - REMOVED TO AVOID CONFLICT */
    top: 0;
}

.pricing-details p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.detail-badge {
    background: #FBFF7A;
    color: #121212;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.whatsapp-badge {
    background: #DED4E8;
    color: #121212;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.number-badge {
    background: #ACDD9F;
    color: #121212;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    display: inline-block;
}

.pricing-card .btn-primary {
    background: #121212;
    color: #FFFFFF;
    border: none;
    margin-top: 20px;
    margin-bottom: 30px;
}

.pricing-card .btn-primary:hover {
    background: #333333;
    color: #FFFFFF;
}

/* CTA Final */
.cta-final {
    padding: 40px 0 100px 0;
    background: #f4efe1;
    color: #121212;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #ded4e8;
    border-radius: 20px;
    padding: 60px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.cta-content:hover {
    transform: scale(1.02) !important;
    box-shadow: none !important;
}

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

.cta-image img {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.cta-subtitle {
    color: rgba(18, 18, 18, 0.5);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.cta-final h2 {
    color: #121212;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: bold;
}

.cta-final .btn {
    background: #121212;
    color: #FFFFFF;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-final .btn:hover {
    background: #333333;
    color: #FFFFFF;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #f4efe1;
    color: #121212;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand a {
    display: inline-block;
    text-decoration: none;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 20px;
    transition: opacity 0.3s ease;
}

.footer-brand a:hover img {
    opacity: 0.8;
}

.footer-brand p {
    color: rgba(18, 18, 18, 0.7);
    line-height: 1.7;
}

.footer-links h3,
.footer-contact h3 {
    color: #121212;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(18, 18, 18, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ded4e8;
}

.footer-contact p {
    color: rgba(18, 18, 18, 0.7);
    font-size: 1.1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(18, 18, 18, 0.2);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(18, 18, 18, 0.1);
    color: #121212;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ded4e8;
    color: #121212;
    transform: scale(1.1);
}

.footer-copyright p {
    color: rgba(18, 18, 18, 0.7);
    margin: 0;
}

.footer-copyright a {
    color: rgba(18, 18, 18, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #ded4e8;
}

.scroll-to-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(18, 18, 18, 0.1);
    color: #121212;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    background: #ded4e8;
    color: #121212;
    transform: scale(1.1);
}

/* Text Selection */
::selection {
    background: #ded4e8;
    color: #121212;
}

::-moz-selection {
    background: #ded4e8;
    color: #121212;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 600px;
    overflow-y: auto;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 20px 0;
}

.modal-close {
    background: #121212;
    border: none;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #333;
    transform: scale(1.1);
}

.modal-content {
    padding: 20px 40px 40px;
    text-align: left;
}

.modal-icon {
    max-width: 72px;
    width: 100%;
    height: auto;
    margin: 0 0 20px 0;
}

.modal-title {
    color: #121212;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.modal-subtitle {
    color: rgba(18, 18, 18, 0.5);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.modal-text {
    color: rgba(18, 18, 18, 0.5);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Popups com fundo escuro - textos claros */
.modal[style*="background-color: rgb(33, 33, 33)"] .modal-title {
    color: #f4efe1;
}

.modal[style*="background-color: rgb(33, 33, 33)"] .modal-subtitle,
.modal[style*="background-color: rgb(33, 33, 33)"] .modal-text {
    color: rgba(244, 239, 225, 0.5);
}


/* ===== AUDIO PLAYER NATIVO ===== */
.audio-player {
    margin-left: 20px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    position: relative !important;
    z-index: 999 !important;
}

.audio-player audio {
    width: 100%;
    max-width: 280px;
    height: 50px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 999 !important;
}

/* ===== SISTEMA DE ANIMAÇÕES PADRONIZADO ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Variáveis de animação */
:root {
    --animation-duration: 0.8s;
    --animation-easing: ease;
    --animation-delay-step: 150ms;
    --animation-offset: 30px;
}

/* ===== CONFIGURAÇÃO INICIAL - ELEMENTOS ANIMADOS ===== */
[data-animate="fadeInUp"] {
    opacity: 0;
    transform: translateY(var(--animation-offset));
    transition: opacity var(--animation-duration) var(--animation-easing), 
                transform var(--animation-duration) var(--animation-easing);
}

/* CORREÇÃO PARA HOVER NO CTA */
.cta-content[data-animate="fadeInUp"]:hover {
    transform: scale(1.02) !important;
    box-shadow: none !important;
}

/* CORREÇÃO PARA HOVER NOS DETAILED FEATURES */
.feature-detail[data-animate="fadeInUp"]:hover {
    transform: scale(1.02) !important;
    box-shadow: none !important;
}

/* CORREÇÃO PARA HOVER NOS FEATURE ITEMS */
.feature-item[data-animate="fadeInUp"]:hover {
    transform: scale(1.02) !important;
    box-shadow: none !important;
}

/* CORREÇÃO PARA HOVER NOS STAT ITEMS */
.stat-item[data-animate="fadeInUp"]:hover {
    transform: scale(1.02) !important;
    box-shadow: none !important;
}

/* Configuração inicial para elementos animados */
.hero-image img,
.stat-item,
.features .section-header,
.features-image,
.detailed-features .section-header,
.feature-detail,
.cta-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}


/* Elementos animados ficam visíveis */
.hero-image img.animated,
.stat-item.animated,
.features .section-header.animated,
.features-image.animated,
.detailed-features .section-header.animated,
.feature-detail.animated,
.cta-content.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Header */
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Hero */
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Features */
    .features-content {
        flex-direction: column;
    }
    
    .features-grid-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* CTA */
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* Modal */
    .modal {
        max-width: 90%;
        margin: 20px;
    }
    
    /* Typography */
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    /* Hero */
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    /* Features Grid */
    .features-grid-items {
        grid-template-columns: 1fr;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    /* Modal */
    .modal {
        max-width: 95%;
        margin: 10px;
    }
    
    /* Typography */
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    /* Spacing */
    .container {
        padding: 0 15px;
    }
}

.feature-item.animated {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.6s;
}

/* ===== ACCORDION PRICING ===== */
.pricing-accordion {
    margin: 20px 0;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
}

.accordion-header:hover {
    background: #e9ecef;
}

.accordion-header span {
    font-weight: 600;
    color: #121212;
    font-size: 1rem;
}

.accordion-icon {
    color: #121212;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #ffffff;
}

.accordion-item.active .accordion-content {
    max-height: 800px;
}

.accordion-content .pricing-features {
    padding: 20px;
    margin: 0;
    list-style: none;
}

.accordion-content .pricing-features li {
    padding: 8px 0;
    color: #121212;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.accordion-content .pricing-features li i {
    color: #FFFFFF;
    margin-right: 10px;
    font-size: 0.7rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
