/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #007bff;
    --primary-dark: #0056b3;
    --accent: #00d4ff;
    --muted: #8a8f98;
    --bg-primary: #0b0e12;
    --bg-secondary: #141820;
    --bg-card: #1a1f2e;
    --text-primary: #ffffff;
    --text-secondary: #e6e8ec;
    --text-muted: #b8bcc8;
    --border: #2a2f3a;
    --shadow: rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 16px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    color: #e6e8ec;
}

a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover, a:focus {
    color: #0056b3;
    text-decoration: underline;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Header */
.site-header {
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px var(--shadow);
    border-bottom: 1px solid var(--border);
}

.nav-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #e6e8ec;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-menu a:hover, .nav-menu a:focus {
    background: #007bff;
    color: #fff;
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #e6e8ec;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Seções */
.section {
    padding: 4rem 0;
}

.hero {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(135deg, #0b0e12 0%, #141820 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #b8bcc8;
}

.hero-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #8a8f98;
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.grid-1col {
    grid-template-columns: 1fr;
}

.grid-2col {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3col {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Cards */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.2);
    border-color: var(--primary);
}

.card:hover::before {
    transform: scaleX(1);
}

.card img {
    margin-bottom: 1rem;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.card:hover img {
    filter: brightness(1.1);
}

.card h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.card p {
    color: #b8bcc8;
    margin-bottom: 1rem;
}

.card ul {
    text-align: left;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.card li {
    color: #e6e8ec;
    margin-bottom: 0.5rem;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--primary);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    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:hover, .btn:focus {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    text-decoration: none;
    color: var(--text-primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #004085 100%);
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.5);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #141820;
    border: 1px solid #1e2329;
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
}

.faq-item h3 {
    color: #007bff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-item p {
    margin-bottom: 0;
    color: #e6e8ec;
}

/* CTA Final */
.cta-final {
    text-align: center;
    background: #141820;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #1e2329;
}

.cta-section {
    background: #141820;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #1e2329;
    margin-top: 2rem;
    text-align: center;
}

/* Footer */
.site-footer {
    background: #111;
    padding: 3rem 0 1rem;
    border-top: 1px solid #1e2329;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info img {
    margin-bottom: 1rem;
}

.footer-info p {
    color: #8a8f98;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #b8bcc8;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-contact p {
    color: #b8bcc8;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #111;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section {
        padding: 2rem 0;
    }

    .hero {
        padding: 4rem 0;
    }

    .grid {
        gap: 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .card {
        padding: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Estados de foco para acessibilidade */
button:focus,
a:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Animações suaves */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Melhorias de performance */
img {
    max-width: 100%;
    height: auto;
}

/* Utilitários */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* Sistema de Ícones - Sem Fundos, Cores Variadas */
.icon,
img[src*="icones/"] {
    transition: all 0.3s ease;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Tamanhos de Ícones por Seção */
.hero img[src*="icones/"],
.hero-badge img[src*="icones/"],
.feature-icon,
.trust-icon,
.note-icon,
.btn-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(100%); /* Branco */
}

.icon-small {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(100%); /* Branco */
}

.card-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(100%); /* Branco */
}

.play-button img[src*="icones/"] {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%) invert(100%); /* Branco */
}

/* Seção Features - Azul Ciano */
.section-features img[src*="icones/"] {
    width: 80px;
    height: 80px;
    filter: brightness(0) saturate(100%) invert(64%) sepia(98%) saturate(2969%) hue-rotate(180deg) brightness(101%) contrast(101%);
}

/* Seção Como Funciona - Ícones Grandes */
.step-icon img[src*="icones/"] {
    width: 100px;
    height: 100px;
    filter: brightness(0) saturate(100%) invert(64%) sepia(98%) saturate(2969%) hue-rotate(180deg) brightness(101%) contrast(101%);
}

/* Seção Benefícios - Verde */
.section-benefits img[src*="icones/"] {
    width: 80px;
    height: 80px;
    filter: brightness(0) saturate(100%) invert(69%) sepia(78%) saturate(1200%) hue-rotate(88deg) brightness(104%) contrast(107%);
}

/* Seção Planos - Roxo */
.section-plans .plan-icon img[src*="icones/"] {
    width: 80px;
    height: 80px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(77%) saturate(7482%) hue-rotate(271deg) brightness(87%) contrast(129%);
}

.feature-check {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(64%) sepia(98%) saturate(2969%) hue-rotate(180deg) brightness(101%) contrast(101%);
}

/* Seção Aplicativos - Roxo */
.section-apps img[src*="icones/"],
.app-icon-wrapper img[src*="icones/"] {
    width: 80px;
    height: 80px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(77%) saturate(7482%) hue-rotate(271deg) brightness(87%) contrast(129%);
}

.status-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(64%) sepia(98%) saturate(2969%) hue-rotate(180deg) brightness(101%) contrast(101%);
}

/* Seção Categorias - Roxo */
.section-categories img[src*="icones/"] {
    width: 80px;
    height: 80px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(77%) saturate(7482%) hue-rotate(271deg) brightness(87%) contrast(129%);
}

/* Seção Avaliações - Laranja */
.section-reviews img[src*="icones/"] {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(66%) sepia(100%) saturate(2000%) hue-rotate(6deg) brightness(106%) contrast(106%);
}

/* Setas de Navegação - Branco */
.step-arrow img[src*="icones/"] {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(100%);
}

/* Efeitos Hover */
.card:hover img[src*="icones/"] {
    transform: scale(1.1);
}

.step-card:hover .step-icon img[src*="icones/"] {
    transform: scale(1.05);
}

.btn:hover img[src*="icones/"] {
    transform: scale(1.1);
}

/* Responsividade dos Ícones */
@media (max-width: 768px) {
    .section-features img[src*="icones/"],
    .section-benefits img[src*="icones/"],
    .section-plans .plan-icon img[src*="icones/"],
    .section-apps img[src*="icones/"],
    .section-categories img[src*="icones/"] {
        width: 60px;
        height: 60px;
    }
    
    .step-icon img[src*="icones/"] {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .section-features img[src*="icones/"],
    .section-benefits img[src*="icones/"],
    .section-plans .plan-icon img[src*="icones/"],
    .section-apps img[src*="icones/"],
    .section-categories img[src*="icones/"] {
        width: 50px;
        height: 50px;
    }
    
    .step-icon img[src*="icones/"] {
        width: 70px;
        height: 70px;
    }
    
    .hero img[src*="icones/"],
    .feature-icon,
    .btn-icon {
        width: 20px;
        height: 20px;
    }
}

/* Seções especiais */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.section-apps {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
}

.section-apps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.apps-showcase {
    margin: 2rem 0;
}

.apps-image {
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.app-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(26, 31, 46, 0.8) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.app-card:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.app-icon-wrapper {
    margin-bottom: 1rem;
}

.app-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 500;
}

.status-icon {
    width: 16px;
    height: 16px;
}/
* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, #1a1f2e 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--accent), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--primary), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--accent), transparent),
        radial-gradient(1px 1px at 130px 80px, var(--primary), transparent),
        radial-gradient(2px 2px at 160px 30px, var(--accent), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(0, 123, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at center, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3);
}

.icon-small {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 50%, #8a2be2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subtitle-main {
    color: var(--text-primary);
    display: block;
    font-size: 3rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.hero-cta {
    margin-bottom: 2rem;
}

.btn-hero {
    font-size: 1.125rem;
    padding: 1rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.hero-trust {
    display: flex;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.trust-icon {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    background: rgba(0, 123, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.note-icon {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-showcase {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.showcase-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.device-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.device-showcase:hover .device-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 123, 255, 0.4);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.device-showcase:hover .play-button {
    transform: scale(1);
}

.play-button svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(26, 31, 46, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.card-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: -15%;
    animation-delay: 2s;
}

.card-3 {
    top: 60%;
    right: -5%;
    animation-delay: 4s;
}

@keyframes sparkle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Responsivo Hero */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        margin-top: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle-main {
        font-size: 2.5rem;
    }
    
    .floating-cards {
        display: none;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 3rem 0 2rem;
    }
    
    .hero .container {
        gap: 3rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle-main {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        line-height: 1.5;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-item {
        justify-content: center;
        font-size: 1rem;
        padding: 1rem;
        background: rgba(26, 31, 46, 0.5);
        border-radius: 12px;
        border: 1px solid var(--border);
    }
    
    .feature-icon {
        width: 24px;
        height: 24px;
    }
    
    .btn-hero {
        font-size: 1.1rem;
        padding: 1.2rem 2.5rem;
        width: 100%;
        max-width: 320px;
        margin-bottom: 2rem;
        box-shadow: 0 8px 32px rgba(0, 123, 255, 0.3);
    }
    
    .hero-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .trust-item {
        justify-content: center;
        font-size: 0.9rem;
        padding: 0.8rem;
        background: rgba(0, 123, 255, 0.1);
        border-radius: 8px;
        border: 1px solid rgba(0, 123, 255, 0.2);
    }
    
    .hero-note {
        font-size: 0.9rem;
        padding: 1.2rem;
        text-align: center;
        border-radius: 16px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        background: rgba(0, 123, 255, 0.15);
        border: 1px solid rgba(0, 123, 255, 0.3);
    }
    
    .note-icon {
        width: 20px;
        height: 20px;
        margin-right: 0.5rem;
    }
    
    .device-showcase {
        max-width: 85%;
        margin: 0 auto;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    }
    
    .showcase-image {
        border-radius: 20px;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .play-button svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0 1.5rem;
    }
    
    .hero .container {
        gap: 2.5rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle-main {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: 95%;
    }
    
    .hero-features {
        gap: 1.2rem;
        margin-bottom: 2.5rem;
        max-width: 280px;
    }
    
    .feature-item {
        font-size: 0.95rem;
        padding: 0.8rem;
    }
    
    .feature-icon {
        width: 22px;
        height: 22px;
    }
    
    .btn-hero {
        font-size: 1rem;
        padding: 1.1rem 2rem;
        max-width: 300px;
    }
    
    .btn-icon {
        width: 20px;
        height: 20px;
    }
    
    .hero-trust {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 250px;
    }
    
    .trust-item {
        font-size: 0.85rem;
        padding: 0.7rem;
    }
    
    .hero-note {
        font-size: 0.85rem;
        padding: 1rem;
        max-width: 95%;
    }
    
    .note-icon {
        width: 18px;
        height: 18px;
    }
    
    .device-showcase {
        max-width: 90%;
    }
    
    .showcase-image {
        border-radius: 16px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button svg {
        width: 24px;
        height: 24px;
    }
}/* Se
ções melhoradas */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Seção Como Funciona */
.section-steps {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.section-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.2);
    border-color: var(--primary);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3);
}

.step-icon {
    margin: 2rem 0 1.5rem;
}

.step-icon .icon {
    width: 80px;
    height: 80px;
    color: var(--accent);
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-arrow {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
}

.step-arrow svg {
    width: 20px;
    height: 20px;
}

.step-card:last-child .step-arrow {
    display: none;
}

/* Seção Planos */
.section-plans {
    background: var(--bg-secondary);
    position: relative;
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 123, 255, 0.25);
    border-color: var(--primary);
}

.plan-popular {
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-icon {
    margin-bottom: 1rem;
}

.plan-icon svg {
    width: 60px;
    height: 60px;
    color: var(--accent);
}

.plan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.plan-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.2);
    color: var(--accent);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.plan-features {
    margin-bottom: 2rem;
}

.plan-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.plan-features .feature-item:hover {
    background: rgba(0, 123, 255, 0.1);
}

.feature-check {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.plan-features span {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Responsividade das seções */
@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .step-arrow {
        display: none;
    }
    
    .step-card {
        padding: 2rem;
    }
    
    .step-icon .icon {
        width: 60px;
        height: 60px;
    }
    
    .plans-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .plan-popular {
        transform: none;
    }
    
    .plan-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .plan-card {
        padding: 1.5rem;
    }
}/* 
Seção CTA Final */
.section-cta {
    background: linear-gradient(135deg, var(--bg-primary) 0%, #1a1f2e 50%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cta-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(3px 3px at 30px 50px, var(--accent), transparent),
        radial-gradient(2px 2px at 80px 30px, var(--primary), transparent),
        radial-gradient(1px 1px at 120px 80px, var(--accent), transparent),
        radial-gradient(2px 2px at 180px 40px, var(--primary), transparent);
    background-repeat: repeat;
    background-size: 250px 120px;
    animation: sparkle 25s linear infinite;
    opacity: 0.4;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-text {
    text-align: left;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.cta-badge svg {
    width: 18px;
    height: 18px;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.cta-feature svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.btn-cta {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 123, 255, 0.4);
}

.cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.cta-image-wrapper:hover {
    transform: scale(1.05);
}

.cta-image {
    width: 100%;
    height: auto;
    display: block;
}

.cta-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.quality-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.quality-badge svg {
    width: 16px;
    height: 16px;
}

/* Responsividade CTA */
@media (max-width: 1024px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .cta-text {
        text-align: center;
    }
    
    .cta-features {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-cta {
        font-size: 1.1rem;
        padding: 1.1rem 2rem;
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .cta-content h2 {
        font-size: 1.9rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .btn-cta {
        font-size: 1rem;
        padding: 1rem 1.8rem;
        max-width: 300px;
    }
}/* Íco
nes pequenos para badges e features */
.icon-mask-small {
    width: 20px;
    height: 20px;
    background-color: var(--accent);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Ajustes para ícones nos step-icons */
.step-icon .icon-mask {
    width: 80px;
    height: 80px;
    background-color: var(--accent);
}

/* Ajustes para ícones nos plan-icons */
.plan-icon .icon-mask {
    width: 60px;
    height: 60px;
    background-color: var(--accent);
}

/* Ajustes para badges CTA */
.cta-badge .icon-mask-small {
    width: 18px;
    height: 18px;
    background-color: white;
}

/* Ajustes para features CTA */
.cta-feature .icon-mask-small {
    width: 20px;
    height: 20px;
    background-color: var(--accent);
}

/* Ajustes para quality badge */
.quality-badge .icon-mask-small {
    width: 16px;
    height: 16px;
    background-color: var(--accent);
}

/* Ajustes para feature checks nos planos */
.feature-check {
    width: 20px;
    height: 20px;
    background-color: var(--accent);
}/* 
Ajustes específicos para ícones do hero */
.hero-badge .icon-mask-small {
    width: 16px;
    height: 16px;
    background-color: white;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background-color: var(--accent);
}

.trust-icon {
    width: 16px;
    height: 16px;
    background-color: var(--accent);
}

.note-icon {
    width: 18px;
    height: 18px;
    background-color: var(--accent);
    flex-shrink: 0;
}

.card-icon {
    width: 20px;
    height: 20px;
    background-color: var(--accent);
}/* Ajustes
 para ícones de botões */
.btn-icon {
    width: 20px;
    height: 20px;
    background-color: white;
}/* C
ores e tamanhos para ícones */
.hero-badge img {
    filter: brightness(0) saturate(100%) invert(100%);
    width: 20px;
    height: 20px;
}

.feature-icon {
    filter: brightness(0) saturate(100%) invert(64%) sepia(98%) saturate(2969%) hue-rotate(180deg) brightness(101%) contrast(101%);
    width: 24px;
    height: 24px;
}

.btn-icon {
    filter: brightness(0) saturate(100%) invert(100%);
    width: 24px;
    height: 24px;
}

.trust-icon {
    filter: brightness(0) saturate(100%) invert(64%) sepia(98%) saturate(2969%) hue-rotate(180deg) brightness(101%) contrast(101%);
    width: 20px;
    height: 20px;
}

.note-icon {
    filter: brightness(0) saturate(100%) invert(64%) sepia(98%) saturate(2969%) hue-rotate(180deg) brightness(101%) contrast(101%);
    width: 22px;
    height: 22px;
}

.play-button img {
    filter: brightness(0) saturate(100%) invert(100%);
    width: 40px;
    height: 40px;
}

.card-icon {
    filter: brightness(0) saturate(100%) invert(64%) sepia(98%) saturate(2969%) hue-rotate(180deg) brightness(101%) contrast(101%);
    width: 24px;
    height: 24px;
}

/* Seção Benefícios */
.section#beneficios .card img {
    filter: brightness(0) saturate(100%) invert(64%) sepia(98%) saturate(2969%) hue-rotate(180deg) brightness(101%) contrast(101%);
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

/* Seção Como Funciona */
.step-icon img {
    filter: brightness(0) saturate(100%) invert(64%) sepia(98%) saturate(2969%) hue-rotate(180deg) brightness(101%) contrast(101%);
    width: 100px;
    height: 100px;
}

.step-arrow img {
    filter: brightness(0) saturate(100%) invert(100%);
    width: 24px;
    height: 24px;
}

/* Seção Planos */
.plan-icon img {
    filter: brightness(0) saturate(100%) invert(47%) sepia(96%) saturate(1206%) hue-rotate(251deg) brightness(97%) contrast(98%);
    width: 80px;
    height: 80px;
}

.feature-check {
    filter: brightness(0) saturate(100%) invert(64%) sepia(98%) saturate(2969%) hue-rotate(180deg) brightness(101%) contrast(101%);
    width: 24px;
    height: 24px;
}

/* Seção Aplicativos */
.app-icon-wrapper img {
    filter: brightness(0) saturate(100%) invert(47%) sepia(96%) saturate(1206%) hue-rotate(251deg) brightness(97%) contrast(98%);
    width: 80px;
    height: 80px;
}

.status-icon {
    filter: brightness(0) saturate(100%) invert(64%) sepia(98%) saturate(2969%) hue-rotate(180deg) brightness(101%) contrast(101%);
    width: 20px;
    height: 20px;
}

/* Seção Categorias */
.section#categorias .card img {
    filter: brightness(0) saturate(100%) invert(47%) sepia(96%) saturate(1206%) hue-rotate(251deg) brightness(97%) contrast(98%);
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

/* Seção Avaliações */
.section#prova-social .card img {
    filter: brightness(0) saturate(100%) invert(85%) sepia(95%) saturate(1347%) hue-rotate(358deg) brightness(103%) contrast(103%);
    width: 32px;
    height: 32px;
    margin-bottom: 1rem;
}

/* Seção CTA */
.cta-badge img {
    filter: brightness(0) saturate(100%) invert(100%);
    width: 22px;
    height: 22px;
}

.cta-feature img {
    filter: brightness(0) saturate(100%) invert(64%) sepia(98%) saturate(2969%) hue-rotate(180deg) brightness(101%) contrast(101%);
    width: 24px;
    height: 24px;
}

.quality-badge img {
    filter: brightness(0) saturate(100%) invert(64%) sepia(98%) saturate(2969%) hue-rotate(180deg) brightness(101%) contrast(101%);
    width: 20px;
    height: 20px;
}

/* Cores específicas por seção */
/* Azul ciano para elementos principais */
.hero .feature-icon,
.trust-icon,
.note-icon,
.card-icon,
.cta-feature img,
.quality-badge img,
.status-icon,
.feature-check {
    filter: brightness(0) saturate(100%) invert(64%) sepia(98%) saturate(2969%) hue-rotate(180deg) brightness(101%) contrast(101%);
}

/* Roxo para planos e aplicativos */
.plan-icon img,
.app-icon-wrapper img,
.section#categorias .card img {
    filter: brightness(0) saturate(100%) invert(47%) sepia(96%) saturate(1206%) hue-rotate(251deg) brightness(97%) contrast(98%);
}

/* Verde para benefícios */
.section#beneficios .card img {
    filter: brightness(0) saturate(100%) invert(64%) sepia(98%) saturate(2969%) hue-rotate(120deg) brightness(101%) contrast(101%);
}

/* Laranja para avaliações */
.section#prova-social .card img {
    filter: brightness(0) saturate(100%) invert(85%) sepia(95%) saturate(1347%) hue-rotate(358deg) brightness(103%) contrast(103%);
}

/* Branco para elementos de destaque */
.hero-badge img,
.btn-icon,
.play-button img,
.step-arrow img,
.cta-badge img {
    filter: brightness(0) saturate(100%) invert(100%);
}

/* Hover effects */
.card:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: scale(1.1);
}

.step-card:hover .step-icon img {
    transform: scale(1.05);
}

/* Responsividade dos ícones */
@media (max-width: 768px) {
    .section#beneficios .card img,
    .section#categorias .card img {
        width: 60px;
        height: 60px;
    }
    
    .step-icon img {
        width: 80px;
        height: 80px;
    }
    
    .plan-icon img,
    .app-icon-wrapper img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .section#beneficios .card img,
    .section#categorias .card img {
        width: 50px;
        height: 50px;
    }
    
    .step-icon img {
        width: 60px;
        height: 60px;
    }
    
    .plan-icon img,
    .app-icon-wrapper img {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon {
        width: 20px;
        height: 20px;
    }
    
    .btn-icon {
        width: 20px;
        height: 20px;
    }
}/* Ga
rantir que não há fundos nos ícones */
img[src*="icones/"] {
    background-color: transparent !important;
    background-image: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Cores específicas por contexto */
.hero-badge img[src*="icones/"],
.play-button img[src*="icones/"] {
    filter: brightness(0) saturate(100%) invert(100%) !important; /* Branco puro */
}

/* Ícones flutuantes com cores diferentes */
.floating-card.card-1 img[src*="icones/"] {
    filter: brightness(0) saturate(100%) invert(66%) sepia(100%) saturate(2000%) hue-rotate(6deg) brightness(106%) contrast(106%) !important; /* Laranja */
}

.floating-card.card-1 span {
    color: #ff8c42 !important;
}

.floating-card.card-2 img[src*="icones/"] {
    filter: brightness(0) saturate(100%) invert(69%) sepia(78%) saturate(1200%) hue-rotate(88deg) brightness(104%) contrast(107%) !important; /* Verde */
}

.floating-card.card-2 span {
    color: #4ade80 !important;
}

.floating-card.card-3 img[src*="icones/"] {
    filter: brightness(0) saturate(100%) invert(20%) sepia(77%) saturate(7482%) hue-rotate(271deg) brightness(87%) contrast(129%) !important; /* Roxo */
}

.floating-card.card-3 span {
    color: #8a2be2 !important;
}

/* Ícones de status e checks com azul ciano */
.app-status img[src*="icones/"],
.feature-check {
    filter: brightness(0) saturate(100%) invert(64%) sepia(98%) saturate(2969%) hue-rotate(180deg) brightness(101%) contrast(101%) !important;
}/* 
Layout dos Planos - 3 colunas desktop, 2 tablet, 1 mobile */
.section-plans .grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}


/* FAQ Styles - Versão Final */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.faq-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.faq-card:hover::before {
    transform: scaleX(1);
}

.faq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.2);
    border-color: var(--primary);
}

.faq-card h3 {
    color: var(--text-primary);
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    padding-right: 2.5rem;
    transition: color 0.3s ease;
}

.faq-card h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-card.active h3 {
    color: var(--primary);
}

.faq-card.active h3::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin-top 0.3s ease;
    opacity: 0;
    margin-top: 0;
}

.faq-card.active .faq-answer {
    max-height: 2000px;
    opacity: 1;
    margin-top: 1rem;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.faq-answer a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.faq-answer a:hover {
    opacity: 0.8;
}

/* Responsividade FAQ */
@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-card {
        padding: 1.5rem;
    }
    
    .faq-card h3 {
        font-size: 1rem;
        padding-right: 2rem;
    }
    
    .faq-card h3::after {
        font-size: 1.5rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-card {
        padding: 1.25rem;
    }
    
    .faq-card h3 {
        font-size: 0.95rem;
    }
    
    .faq-card h3::after {
        font-size: 1.3rem;
    }
}
