:root {
    --bg: #0a0a0f;
    --bg-secondary: #0f0f1a;
    --bg-card: #1a1a2e;
    --text: #ffffff;
    --text-muted: #b8b8d1;
    --accent: #6366f1;
    --accent-hover: #4f46e5;
    --accent-light: #818cf8;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --purple: #8b5cf6;
    --pink: #ec4899;
    --cyan: #06b6d4;
    --orange: #f97316;
    --border: #2d2d44;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 35px 60px -12px rgba(0, 0, 0, 0.8);
    --radius: 16px;
    --radius-lg: 24px;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h1 { 
    font-size: clamp(1.8rem, 4vw, 3.5rem); 
    word-break: keep-all;
    hyphens: none;
    line-height: 1.2;
}
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--accent-light);
    transform: translateY(-1px);
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-1col { grid-template-columns: 1fr; }

@media (min-width: 768px) {
    .grid-2col { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .grid-3col { grid-template-columns: repeat(3, 1fr); }
    .grid-4col { grid-template-columns: repeat(4, 1fr); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.btn img {
    filter: none !important;
    transition: transform 0.3s ease;
}

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

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
}

.btn-accent {
    background: var(--gradient-accent);
    color: white;
}

/* Cards */
.card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(99, 102, 241, 0.3);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-desktop a {
    color: var(--text);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after {
    width: 100%;
}

@media (min-width: 768px) {
    .nav-desktop { display: flex; }
    .menu-toggle { display: none; }
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    color: var(--text);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.nav-mobile a:hover {
    color: var(--accent);
    padding-left: 1rem;
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
}

.section h2 {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin-bottom: 2rem;
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 800;
    word-break: keep-all;
    hyphens: none;
    line-height: 1.2;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--text-muted);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
    position: relative;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
    z-index: -1;
}

.hero-stats.animating::before {
    opacity: 1;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(26, 26, 46, 0.5);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.5);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    position: relative;
}

.stat-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    border-radius: 8px;
    filter: blur(10px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.animate-glow .stat-number::before {
    opacity: 0.3;
}

.hero-stats .stat {
    transform: translateY(20px);
    opacity: 0;
    animation: slideUpFade 0.8s ease-out forwards;
}

.hero-stats .stat:nth-child(1) { animation-delay: 0.2s; }
.hero-stats .stat:nth-child(2) { animation-delay: 0.4s; }
.hero-stats .stat:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideUpFade {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes numberGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 20px rgba(99, 102, 241, 0.8);
        transform: scale(1.02);
    }
}

.stat-number.animating {
    animation: numberGlow 0.5s ease-in-out;
}

/* Enhanced stat hover effects */
.stat:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.3);
}

.stat:hover .stat-number {
    animation: numberGlow 1s ease-in-out infinite;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-note {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-cta {
    animation: fadeInUp 1s ease-out 0.6s both;
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
}

/* Benefits */
.benefit-card {
    text-align: center;
    position: relative;
}

.benefit-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    position: relative;
}

.benefit-icon img {
    width: 64px;
    height: 64px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.3));
}

.benefit-card:hover .benefit-icon img {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(99, 102, 241, 0.5));
}

.benefit-card h3 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Steps */
.steps {
    display: grid;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

@media (min-width: 768px) {
    .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .steps { grid-template-columns: repeat(4, 1fr); }
}

.steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.3;
    z-index: 0;
}

@media (max-width: 1023px) {
    .steps::before { display: none; }
}

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

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.step:hover .step-number::before {
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
    100% { transform: scale(1); opacity: 0.3; }
}

.step-content h3 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

/* Plans */
.plan-card {
    position: relative;
    text-align: center;
}

.plan-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.05);
    background: rgba(99, 102, 241, 0.05);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.plan-header h3 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.plan-duration {
    font-size: 1.25rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 2rem;
}

.plan-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    position: relative;
    padding-left: 2rem;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.plan-features li:last-child {
    border-bottom: none;
}

/* Apps & Categories */
.app-card, .category-card {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.app-card img, .category-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.app-card:hover img, .category-card:hover img {
    transform: scale(1.15) rotate(3deg);
    filter: drop-shadow(0 12px 24px rgba(99, 102, 241, 0.3));
}

.app-card h3, .category-card h3 {
    color: var(--text);
    font-size: 1.125rem;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-muted);
    font-style: italic;
    font-size: 1.125rem;
}

/* Testimonials */
.testimonials {
    gap: 2rem;
}

.testimonial-card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.testimonial-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--text);
    font-weight: 600;
    font-size: 0.875rem;
}

/* FAQ - Novo CSS Completo */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a2e;
    border: 1px solid #2d2d44;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: fit-content;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
    border-color: #6366f1;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 0;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    line-height: 1.4;
    margin: 0;
    outline: none;
}

.faq-question:hover {
    color: #818cf8;
}

.faq-question:focus {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
}

.faq-question-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.faq-question-text {
    flex: 1;
    color: #ffffff;
    margin: 0;
    padding-right: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.faq-question-icon {
    color: #6366f1;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-question.active .faq-question-icon {
    transform: rotate(45deg);
    color: #818cf8;
}

.faq-answer {
    display: none;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid #2d2d44;
    color: #ffffff;
    line-height: 1.6;
    font-size: 0.9rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: #ffffff !important;
    margin: 0;
    line-height: 1.6;
}
    border-top: 1px solid #2d2d44;
    margin-top: 1rem;
}

.faq-answer p {
    color: #ffffff;
    margin: 0;
}

/* FAQ Responsive */
@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .faq-question {
        font-size: 0.9rem;
    }
    
    .faq-question-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-item {
        padding: 1.25rem;
    }
    
    .faq-question {
        font-size: 0.85rem;
    }
    
    .faq-question-text {
        font-size: 0.85rem;
    }
    
    .faq-answer {
        font-size: 0.85rem;
    }
}

/* CTA Final */
.cta-final {
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::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="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="90" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    -webkit-text-fill-color: white;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-note {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Institucional */
.institucional {
    background: rgba(15, 15, 26, 0.8);
    text-align: center;
}

.institucional h2 {
    color: var(--text);
}

.institucional p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Footer */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section h3 {
    color: var(--text);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

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

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent);
    padding-left: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
        transform: scale(1.02);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-rotate {
    animation: rotate 20s linear infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out;
}

.animate-bounce-in {
    animation: bounceIn 0.6s ease-out;
}

/* Focus States */
*:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Responsive */
@media (max-width: 767px) {
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .hero-stats {
        gap: 1.5rem;
        flex-direction: column;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .plan-card.featured {
        transform: none;
        margin-top: 2rem;
    }
    
    .steps::before {
        display: none;
    }
}

/* Icon Fixes - Force original colors */
img[src*=".svg"],
img[src*="icones/"],
.benefit-icon img,
.surprise-icon img,
.app-card img,
.category-card img,
.floating-icon,
.btn img {
    filter: none !important;
    -webkit-filter: none !important;
}

/* Override any inherited filters */
* img[src*=".svg"] {
    filter: none !important;
    -webkit-filter: none !important;
}

/* Specific icon containers */
.benefit-icon,
.surprise-icon,
.app-card,
.category-card {
    filter: none !important;
}

.benefit-icon *,
.surprise-icon *,
.app-card *,
.category-card * {
    filter: none !important;
}

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

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

/* Surprise Section - Me Surpreenda */
.surprise-section {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0f0f1a 100%);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.surprise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    animation: surpriseGlow 10s ease-in-out infinite alternate;
}

@keyframes surpriseGlow {
    0% { 
        opacity: 0.3; 
        transform: scale(1) rotate(0deg); 
    }
    100% { 
        opacity: 0.8; 
        transform: scale(1.2) rotate(5deg); 
    }
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.1;
    animation: floatRandom 15s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.floating-icon:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 6s;
}

.floating-icon:nth-child(5) {
    top: 50%;
    left: 5%;
    animation-delay: 8s;
}

@keyframes floatRandom {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
        opacity: 0.1;
    }
    25% { 
        transform: translateY(-20px) translateX(10px) rotate(90deg); 
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-10px) translateX(-15px) rotate(180deg); 
        opacity: 0.2;
    }
    75% { 
        transform: translateY(-30px) translateX(5px) rotate(270deg); 
        opacity: 0.4;
    }
}

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

.surprise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.surprise-card {
    background: rgba(26, 26, 46, 0.3);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.surprise-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    animation: rotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.surprise-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.surprise-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.surprise-icon img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.3));
    transition: all 0.4s ease;
}

.surprise-card:hover .surprise-icon img {
    transform: scale(1.1) rotate(10deg);
    filter: drop-shadow(0 8px 16px rgba(99, 102, 241, 0.5));
}

.surprise-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
}

.surprise-card p {
    position: relative;
    z-index: 1;
    line-height: 1.6;
}
/* FAQ 
- Força cores brancas (alta prioridade) */
#faq .faq-grid .faq-item .faq-question,
#faq .faq-grid .faq-item .faq-question h3 {
    color: #ffffff !important;
    font-weight: 600 !important;
}

#faq .faq-grid .faq-item .faq-answer,
#faq .faq-grid .faq-item .faq-answer p,
#faq .faq-grid .faq-item .faq-answer * {
    color: #ffffff !important;
}

/* Hover states específicos */
#faq .faq-grid .faq-item .faq-question:hover {
    color: #818cf8 !important;
}

/* Background específico para FAQ */
#faq .faq-grid .faq-item {
    background: #1a1a2e !important;
    border: 1px solid #2d2d44 !important;
}/
* FAQ - Estilos específicos para garantir funcionamento */
.faq-item .faq-answer.active {
    display: block !important;
    max-height: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.faq-item .faq-answer.active p {
    color: #ffffff !important;
    display: block !important;
}

/* Debug - remover depois */
.faq-question.active {
    background-color: rgba(99, 102, 241, 0.1) !important;
}/* 
FAQ - Estilos finais para garantir funcionamento */
.faq-item .faq-answer {
    display: none !important;
}

.faq-item.active .faq-answer {
    display: block !important;
    color: #ffffff !important;
}

.faq-question-icon {
    user-select: none;
}/* FA
Q - ESTILOS DEFINITIVOS FINAIS */
.faq-answer {
    display: none !important;
    padding: 1rem 0 0 0 !important;
    margin-top: 1rem !important;
    border-top: 1px solid #2d2d44 !important;
    color: #ffffff !important;
    line-height: 1.6 !important;
    font-size: 0.9rem !important;
}

.faq-item.active .faq-answer {
    display: block !important;
}

.faq-answer p {
    color: #ffffff !important;
    margin: 0 !important;
}

.faq-question-icon {
    user-select: none !important;
    pointer-events: none !important;
}/* H
ero Section com Fundo Estelar Animado */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
}

/* Fundo Estelar Animado Otimizado */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #ffffff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(99, 102, 241, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #ffffff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(139, 92, 246, 0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #ffffff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: stars 20s linear infinite;
    opacity: 0.6;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 50px 50px, rgba(236, 72, 153, 0.4), transparent),
        radial-gradient(2px 2px at 120px 120px, rgba(6, 182, 212, 0.3), transparent),
        radial-gradient(1px 1px at 200px 80px, rgba(245, 158, 11, 0.3), transparent);
    background-repeat: repeat;
    background-size: 300px 200px;
    animation: stars 30s linear infinite reverse;
    opacity: 0.4;
    z-index: 1;
}

@keyframes stars {
    from { transform: translateX(0); }
    to { transform: translateX(-200px); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #818cf8 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.3);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.stat {
    text-align: center;
    position: relative;
    padding: 1rem;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(99, 102, 241, 0.1);
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Button */
.hero .btn-cta {
    margin: 2rem 0 1rem 0;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.hero-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Animações de Entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes glow {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    }
    50% { 
        text-shadow: 0 0 30px rgba(99, 102, 241, 0.8);
        box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
    }
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding: 2rem 0;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Otimização para Performance */
@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .hero::after {
        animation: none;
    }
    
    .hero-stats::before {
        animation: none;
    }
    
    .animate-glow,
    .animate-pulse {
        animation: none;
    }
}/* Hero 
Section com Fundo Estelar Animado */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
}

/* Fundo Estelar Animado - Starfield Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #ffffff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(99, 102, 241, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #ffffff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(139, 92, 246, 0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #ffffff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: stars 20s linear infinite;
    opacity: 0.6;
    z-index: 1;
    will-change: transform;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 50px 50px, rgba(236, 72, 153, 0.4), transparent),
        radial-gradient(2px 2px at 120px 120px, rgba(6, 182, 212, 0.3), transparent),
        radial-gradient(1px 1px at 200px 80px, rgba(245, 158, 11, 0.3), transparent);
    background-repeat: repeat;
    background-size: 300px 200px;
    animation: stars 30s linear infinite reverse;
    opacity: 0.4;
    z-index: 1;
    will-change: transform;
}

@keyframes stars {
    from { transform: translateX(0); }
    to { transform: translateX(-200px); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #818cf8 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Stats - Números 30% menores */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.3);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.stat {
    text-align: center;
    position: relative;
    padding: 1rem;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(99, 102, 241, 0.1);
}

/* Números 30% menores para melhor ajuste nas caixas */
.stat-number {
    display: block;
    font-size: clamp(1.4rem, 2.8vw, 2.1rem); /* Reduzido de 2rem-3rem para 1.4rem-2.1rem */
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Button */
.hero .btn-cta {
    margin: 2rem 0 1rem 0;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.hero-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Animações de Entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes glow {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    }
    50% { 
        text-shadow: 0 0 30px rgba(99, 102, 241, 0.8);
        box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
    }
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding: 2rem 0;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    /* Números ainda menores no mobile */
    .stat-number {
        font-size: 1.4rem; /* Fixo no mobile para melhor controle */
    }
}

/* Otimização para Performance - Google Page Speed */
@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .hero::after {
        animation: none;
    }
    
    .hero-stats::before {
        animation: none;
    }
    
    .animate-glow,
    .animate-pulse {
        animation: none;
    }
}/
* Recursos Exclusivos - Ícones Coloridos */
.surprise-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.surprise-icon img {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

/* Ícones coloridos específicos */
.surprise-card:nth-child(1) .surprise-icon img {
    filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.4)) hue-rotate(0deg) saturate(1.2);
}

.surprise-card:nth-child(2) .surprise-icon img {
    filter: drop-shadow(0 4px 8px rgba(139, 92, 246, 0.4)) hue-rotate(30deg) saturate(1.3);
}

.surprise-card:nth-child(3) .surprise-icon img {
    filter: drop-shadow(0 4px 8px rgba(236, 72, 153, 0.4)) hue-rotate(60deg) saturate(1.4);
}

.surprise-card:nth-child(4) .surprise-icon img {
    filter: drop-shadow(0 4px 8px rgba(6, 182, 212, 0.4)) hue-rotate(90deg) saturate(1.2);
}

.surprise-card:nth-child(5) .surprise-icon img {
    filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.4)) hue-rotate(120deg) saturate(1.3);
}

.surprise-card:nth-child(6) .surprise-icon img {
    filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.4)) hue-rotate(150deg) saturate(1.4);
}

.surprise-card:hover .surprise-icon img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(99, 102, 241, 0.6)) hue-rotate(var(--hue, 0deg)) saturate(1.5) brightness(1.1);
}

/* Como Funciona - Steps em Boxes */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-box {
    position: relative;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.2);
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
}

.step-box:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.step-box:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.5);
}

.step-content h3 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

/* Cores diferentes para cada step */
.step-box:nth-child(1) .step-number {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.step-box:nth-child(2) .step-number {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.step-box:nth-child(3) .step-number {
    background: linear-gradient(135deg, #ec4899, #f59e0b);
}

.step-box:nth-child(4) .step-number {
    background: linear-gradient(135deg, #f59e0b, #10b981);
}

/* Responsividade */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-box {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}/
* Correção dos Ícones Coloridos - Recursos Exclusivos */
.surprise-section .surprise-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
    position: relative;
}

.surprise-section .surprise-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

/* Backgrounds coloridos específicos para cada card */
.surprise-section .surprise-card:nth-child(1) .surprise-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.surprise-section .surprise-card:nth-child(2) .surprise-icon {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.surprise-section .surprise-card:nth-child(3) .surprise-icon {
    background: linear-gradient(135deg, #ec4899, #f59e0b);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
}

.surprise-section .surprise-card:nth-child(4) .surprise-icon {
    background: linear-gradient(135deg, #06b6d4, #10b981);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

.surprise-section .surprise-card:nth-child(5) .surprise-icon {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.surprise-section .surprise-card:nth-child(6) .surprise-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.surprise-section .surprise-card:hover .surprise-icon {
    transform: scale(1.1) rotate(5deg);
}

.surprise-section .surprise-card:nth-child(1):hover .surprise-icon {
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.5);
}

.surprise-section .surprise-card:nth-child(2):hover .surprise-icon {
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.5);
}

.surprise-section .surprise-card:nth-child(3):hover .surprise-icon {
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.5);
}

.surprise-section .surprise-card:nth-child(4):hover .surprise-icon {
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.5);
}

.surprise-section .surprise-card:nth-child(5):hover .surprise-icon {
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.5);
}

.surprise-section .surprise-card:nth-child(6):hover .surprise-icon {
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.5);
}

.surprise-section .surprise-card:hover .surprise-icon img {
    transform: scale(1.1);
}/* ÍCO
NES GRANDES E COLORIDOS - SEM FUNDO CIRCULAR */
.surprise-section .surprise-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1.5rem auto !important;
    transition: all 0.3s ease !important;
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
}

.surprise-section .surprise-icon img {
    width: 80px !important;
    height: 80px !important;
    transition: all 0.3s ease !important;
    filter: none !important;
}

/* CORES ESPECÍFICAS PARA CADA ÍCONE - GRANDES E CHAMATIVOS */
.surprise-section .surprise-card:nth-child(1) .surprise-icon img {
    filter: hue-rotate(220deg) saturate(2) brightness(1.3) drop-shadow(0 8px 16px rgba(99, 102, 241, 0.5)) !important;
}

.surprise-section .surprise-card:nth-child(2) .surprise-icon img {
    filter: hue-rotate(280deg) saturate(2) brightness(1.3) drop-shadow(0 8px 16px rgba(139, 92, 246, 0.5)) !important;
}

.surprise-section .surprise-card:nth-child(3) .surprise-icon img {
    filter: hue-rotate(320deg) saturate(2) brightness(1.3) drop-shadow(0 8px 16px rgba(236, 72, 153, 0.5)) !important;
}

.surprise-section .surprise-card:nth-child(4) .surprise-icon img {
    filter: hue-rotate(180deg) saturate(2) brightness(1.3) drop-shadow(0 8px 16px rgba(6, 182, 212, 0.5)) !important;
}

.surprise-section .surprise-card:nth-child(5) .surprise-icon img {
    filter: hue-rotate(40deg) saturate(2) brightness(1.3) drop-shadow(0 8px 16px rgba(245, 158, 11, 0.5)) !important;
}

.surprise-section .surprise-card:nth-child(6) .surprise-icon img {
    filter: hue-rotate(120deg) saturate(2) brightness(1.3) drop-shadow(0 8px 16px rgba(16, 185, 129, 0.5)) !important;
}

/* HOVER EFFECTS - ÍCONES FICAM AINDA MAIORES E MAIS BRILHANTES */
.surprise-section .surprise-card:hover .surprise-icon img {
    transform: scale(1.2) rotate(10deg) !important;
}

.surprise-section .surprise-card:nth-child(1):hover .surprise-icon img {
    filter: hue-rotate(220deg) saturate(2.5) brightness(1.5) drop-shadow(0 12px 24px rgba(99, 102, 241, 0.7)) !important;
}

.surprise-section .surprise-card:nth-child(2):hover .surprise-icon img {
    filter: hue-rotate(280deg) saturate(2.5) brightness(1.5) drop-shadow(0 12px 24px rgba(139, 92, 246, 0.7)) !important;
}

.surprise-section .surprise-card:nth-child(3):hover .surprise-icon img {
    filter: hue-rotate(320deg) saturate(2.5) brightness(1.5) drop-shadow(0 12px 24px rgba(236, 72, 153, 0.7)) !important;
}

.surprise-section .surprise-card:nth-child(4):hover .surprise-icon img {
    filter: hue-rotate(180deg) saturate(2.5) brightness(1.5) drop-shadow(0 12px 24px rgba(6, 182, 212, 0.7)) !important;
}

.surprise-section .surprise-card:nth-child(5):hover .surprise-icon img {
    filter: hue-rotate(40deg) saturate(2.5) brightness(1.5) drop-shadow(0 12px 24px rgba(245, 158, 11, 0.7)) !important;
}

.surprise-section .surprise-card:nth-child(6):hover .surprise-icon img {
    filter: hue-rotate(120deg) saturate(2.5) brightness(1.5) drop-shadow(0 12px 24px rgba(16, 185, 129, 0.7)) !important;
}/
* CORREÇÃO FINAL - ÍCONES SVG COLORIDOS CORRETAMENTE */
.surprise-section .surprise-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1.5rem auto !important;
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
}

.surprise-section .surprise-icon img {
    width: 80px !important;
    height: 80px !important;
    transition: all 0.3s ease !important;
}

/* COLORINDO SVGs PRETOS COM CORES ESPECÍFICAS */
.surprise-section .surprise-card:nth-child(1) .surprise-icon img {
    filter: brightness(0) saturate(100%) invert(39%) sepia(57%) saturate(1815%) hue-rotate(234deg) brightness(104%) contrast(94%) drop-shadow(0 4px 12px rgba(99, 102, 241, 0.4)) !important;
}

.surprise-section .surprise-card:nth-child(2) .surprise-icon img {
    filter: brightness(0) saturate(100%) invert(32%) sepia(44%) saturate(1829%) hue-rotate(263deg) brightness(99%) contrast(94%) drop-shadow(0 4px 12px rgba(139, 92, 246, 0.4)) !important;
}

.surprise-section .surprise-card:nth-child(3) .surprise-icon img {
    filter: brightness(0) saturate(100%) invert(23%) sepia(89%) saturate(1747%) hue-rotate(308deg) brightness(88%) contrast(92%) drop-shadow(0 4px 12px rgba(236, 72, 153, 0.4)) !important;
}

.surprise-section .surprise-card:nth-child(4) .surprise-icon img {
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(170deg) brightness(96%) contrast(94%) drop-shadow(0 4px 12px rgba(6, 182, 212, 0.4)) !important;
}

.surprise-section .surprise-card:nth-child(5) .surprise-icon img {
    filter: brightness(0) saturate(100%) invert(64%) sepia(88%) saturate(1534%) hue-rotate(21deg) brightness(103%) contrast(101%) drop-shadow(0 4px 12px rgba(245, 158, 11, 0.4)) !important;
}

.surprise-section .surprise-card:nth-child(6) .surprise-icon img {
    filter: brightness(0) saturate(100%) invert(47%) sepia(69%) saturate(959%) hue-rotate(121deg) brightness(98%) contrast(86%) drop-shadow(0 4px 12px rgba(16, 185, 129, 0.4)) !important;
}

/* HOVER EFFECTS INTENSOS */
.surprise-section .surprise-card:hover .surprise-icon img {
    transform: scale(1.15) rotate(8deg) !important;
}

.surprise-section .surprise-card:nth-child(1):hover .surprise-icon img {
    filter: brightness(0) saturate(100%) invert(39%) sepia(57%) saturate(2500%) hue-rotate(234deg) brightness(120%) contrast(110%) drop-shadow(0 8px 20px rgba(99, 102, 241, 0.6)) !important;
}

.surprise-section .surprise-card:nth-child(2):hover .surprise-icon img {
    filter: brightness(0) saturate(100%) invert(32%) sepia(44%) saturate(2500%) hue-rotate(263deg) brightness(120%) contrast(110%) drop-shadow(0 8px 20px rgba(139, 92, 246, 0.6)) !important;
}

.surprise-section .surprise-card:nth-child(3):hover .surprise-icon img {
    filter: brightness(0) saturate(100%) invert(23%) sepia(89%) saturate(2500%) hue-rotate(308deg) brightness(120%) contrast(110%) drop-shadow(0 8px 20px rgba(236, 72, 153, 0.6)) !important;
}

.surprise-section .surprise-card:nth-child(4):hover .surprise-icon img {
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(2000%) hue-rotate(170deg) brightness(120%) contrast(110%) drop-shadow(0 8px 20px rgba(6, 182, 212, 0.6)) !important;
}

.surprise-section .surprise-card:nth-child(5):hover .surprise-icon img {
    filter: brightness(0) saturate(100%) invert(64%) sepia(88%) saturate(2200%) hue-rotate(21deg) brightness(120%) contrast(110%) drop-shadow(0 8px 20px rgba(245, 158, 11, 0.6)) !important;
}

.surprise-section .surprise-card:nth-child(6):hover .surprise-icon img {
    filter: brightness(0) saturate(100%) invert(47%) sepia(69%) saturate(1500%) hue-rotate(121deg) brightness(120%) contrast(110%) drop-shadow(0 8px 20px rgba(16, 185, 129, 0.6)) !important;
}/* COR
REÇÃO DO BADGE "MAIS POPULAR" */
.plan-card {
    position: relative;
    overflow: visible !important; /* Permite que o badge apareça fora da caixa */
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    z-index: 10;
    white-space: nowrap;
}

.plan-card.featured {
    border: 2px solid rgba(99, 102, 241, 0.3);
    transform: scale(1.02);
    z-index: 5;
}

/* CORREÇÃO DO FUNDO DA SEÇÃO RECURSOS EXCLUSIVOS */
.surprise-section {
    background: var(--bg-secondary) !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Remove qualquer animação de fundo balançando */
.surprise-section::before,
.surprise-section::after {
    display: none !important;
}

/* Adiciona fundo estático na cor desejada */
.surprise-section {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%) !important;
}

/* Garante que os cards tenham overflow visible para badges */
.grid {
    overflow: visible !important;
}

.grid .card {
    overflow: visible !important;
}/* CORREÇÕE
S ADICIONAIS */

/* Remove qualquer animação flutuante ou movimento */
.surprise-section *,
.surprise-section *::before,
.surprise-section *::after {
    animation: none !important;
    transform: none !important;
}

/* Exceção para hover effects dos cards */
.surprise-section .surprise-card:hover {
    transform: translateY(-5px) !important;
}

.surprise-section .surprise-card:hover .surprise-icon img {
    transform: scale(1.15) rotate(8deg) !important;
}

/* Garante que o container dos planos tenha overflow visible */
#planos .container {
    overflow: visible !important;
}

#planos .grid {
    overflow: visible !important;
}

/* Melhora o posicionamento do badge */
.plan-badge {
    position: absolute !important;
    top: -12px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 100 !important;
    min-width: 120px !important;
    text-align: center !important;
}

/* Garante que o card featured tenha espaço para o badge */
.plan-card.featured {
    margin-top: 20px !important;
    position: relative !important;
}

/* Remove animações de parallax se existirem */
.surprise-section {
    will-change: auto !important;
}

/* Remove qualquer transform que possa estar causando movimento */
.surprise-section .floating-icons,
.surprise-section .floating-icon {
    display: none !important;
}/* OTIMIZAÇ
ÕES FINAIS PARA GOOGLE PAGE SPEED */

/* Otimização de will-change para animações */
.hero::before,
.hero::after {
    will-change: transform;
}

.stat-number {
    will-change: contents;
}

.faq-question,
.surprise-card,
.step-box {
    will-change: transform;
}

/* Remove will-change após animações */
.animate-complete {
    will-change: auto;
}

/* Otimização de contenção */
.hero-stats {
    contain: layout style paint;
}

.faq-grid {
    contain: layout style;
}

.surprise-grid {
    contain: layout style;
}

/* Lazy loading hint para imagens */
img {
    content-visibility: auto;
}

/* Otimização de scroll */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Otimização de repaint */
.card:hover {
    contain: layout style paint;
}

/* Critical CSS inline hint */
.hero {
    content-visibility: auto;
    contain-intrinsic-size: 100vh;
}/* CORREÇÃO
 DO HEADER SOBREPONDO A SEÇÃO HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    padding-top: 100px; /* Espaço para o header fixo */
}

/* Fundo Estelar Animado - Starfield Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #ffffff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(99, 102, 241, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #ffffff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(139, 92, 246, 0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #ffffff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: stars 20s linear infinite;
    opacity: 0.6;
    z-index: 1;
    will-change: transform;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 50px 50px, rgba(236, 72, 153, 0.4), transparent),
        radial-gradient(2px 2px at 120px 120px, rgba(6, 182, 212, 0.3), transparent),
        radial-gradient(1px 1px at 200px 80px, rgba(245, 158, 11, 0.3), transparent);
    background-repeat: repeat;
    background-size: 300px 200px;
    animation: stars 30s linear infinite reverse;
    opacity: 0.4;
    z-index: 1;
    will-change: transform;
}

@keyframes stars {
    from { transform: translateX(0); }
    to { transform: translateX(-200px); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #818cf8 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Stats - Números 30% menores */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.3);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
    contain: layout style paint;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.stat {
    text-align: center;
    position: relative;
    padding: 1rem;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(99, 102, 241, 0.1);
}

/* Números 30% menores para melhor ajuste nas caixas */
.stat-number {
    display: block;
    font-size: clamp(1.4rem, 2.8vw, 2.1rem); /* Reduzido de 2rem-3rem para 1.4rem-2.1rem */
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    line-height: 1.1;
    will-change: contents;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Button */
.hero .btn-cta {
    margin: 2rem 0 1rem 0;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.hero-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Animações de Entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes glow {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    }
    50% { 
        text-shadow: 0 0 30px rgba(99, 102, 241, 0.8);
        box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
    }
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding: 120px 0 2rem 0; /* Mais padding no mobile */
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    /* Números ainda menores no mobile */
    .stat-number {
        font-size: 1.4rem; /* Fixo no mobile para melhor controle */
    }
}

/* Otimização para Performance - Google Page Speed */
@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .hero::after {
        animation: none;
    }
    
    .hero-stats::before {
        animation: none;
    }
    
    .animate-glow,
    .animate-pulse {
        animation: none;
    }
}

/* Critical CSS inline hint */
.hero {
    content-visibility: auto;
    contain-intrinsic-size: 100vh;
}/
* OTIMIZAÇÕES FINAIS PARA 100/100 NO PAGESPEED */

/* Remove CSS não utilizado em mobile */
@media (max-width: 767px) {
    .nav-desktop {
        display: none !important;
    }
}

/* Otimiza animações para performance */
.hero::before,
.hero::after,
.hero-stats::before {
    will-change: transform;
    transform: translateZ(0);
}

/* Remove will-change após animações */
.animation-complete {
    will-change: auto;
}

/* Otimiza repaint */
.surprise-card:hover .surprise-icon img,
.step-box:hover,
.faq-item:hover {
    will-change: transform;
}

/* Critical CSS para above-the-fold */
.hero,
.hero-content,
.hero h1,
.hero-subtitle,
.hero-stats {
    contain: layout style paint;
}

/* Hero H1 Responsive Fix - Override all previous rules */
.hero h1 {
    word-break: keep-all !important;
    hyphens: none !important;
    text-align: center !important;
    overflow-wrap: normal !important;
    -webkit-hyphens: none !important;
    -moz-hyphens: none !important;
    -ms-hyphens: none !important;
}

/* Desktop - telas grandes */
@media (min-width: 1200px) {
    .hero h1 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
}

/* Desktop médio */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero h1 {
        font-size: 2.2rem !important;
        line-height: 1.3 !important;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 991px) {
    .hero h1 {
        font-size: 1.9rem !important;
        line-height: 1.4 !important;
        padding: 0 1rem !important;
    }
}

/* Mobile landscape e tablet pequeno */
@media (min-width: 481px) and (max-width: 768px) {
    .hero h1 {
        font-size: 1.6rem !important;
        line-height: 1.4 !important;
        padding: 0 1rem !important;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.3rem !important;
        line-height: 1.5 !important;
        padding: 0 0.5rem !important;
        letter-spacing: -0.01em !important;
    }
}

/* Mobile muito pequeno */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        padding: 0 0.25rem !important;
    }
}
/* Control
e de quebras de linha responsivas */
.mobile-break {
    display: none;
}

@media (max-width: 768px) {
    .mobile-break {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        white-space: pre-line !important;
    }
}/*
 Controle específico das partes do H1 */
.h1-part {
    white-space: nowrap;
}

.h1-separator {
    margin: 0 0.3em;
}

/* Mobile - quebrar em linhas separadas */
@media (max-width: 768px) {
    .hero h1 {
        white-space: normal !important;
    }
    
    .h1-part {
        display: inline-block;
        white-space: nowrap;
    }
    
    .h1-separator {
        display: none;
    }
    
    .h1-part:not(:last-child):after {
        content: "";
        display: block;
        height: 0.2em;
    }
}

@media (max-width: 480px) {
    .h1-part {
        display: block;
        margin: 0.1em 0;
    }
}

/* FAQ Accordion Otimizado para Performance */
.faq-answer {
    will-change: auto;
    contain: content;
}

.faq-item.active .faq-answer {
    will-change: height;
}

.faq-question {
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Otimização de renderização */
.faq-grid {
    contain: layout style;
}

.faq-item {
    contain: layout;
}
