:root {
    /* Cores */
    --color-bg: #0a0a0f;
    --color-bg-alt: #13131a;
    /* Corzinha alternada das seções */
    --color-text: #ffffff;
    --color-text-muted: #a0a0a0;

    --color-primary: #8b5cf6;
    /* Violeta */
    --color-secondary: #3b82f6;
    /* Azul */
    --color-accent: #f472b6;
    /* Rosa */
    --color-green: #4ade80;
    /* Verde Brilhante */

    --gradient-main: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    --gradient-glow: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(59, 130, 246, 0.5));

    /* Layout (O esqueleto) */
    --container-width: 1300px;
    --header-height: 80px;

    /* Efeitos */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-blur: blur(10px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
    /* Cabeçalho + aquele respiro visual */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Barra de Rolagem */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Utilidades */
.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
}

.bg-alt {
    background-color: var(--color-bg-alt);
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text-muted);
}

.btn-ghost:hover {
    color: white;
}

.btn-ghost.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Cabeçalho e Menu */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ... existing code ... */

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.plan-price span.price-suffix {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.plan-price span.main-price {
    font-size: 3rem;
    color: var(--color-text);
    font-weight: 700;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    fill: transparent;
    stroke: rgba(255, 255, 255, 0.7);
    stroke-width: 1.6px;
    /* Borda vítrea */
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.3));

    /* Reflexo “molhado” do iOS */
    paint-order: stroke;
}

.logo img {
    height: 40px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo img:hover {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.5));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--gradient-main);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
}

/* Otimização pro Celular */
@media (max-width: 768px) {

    /* Centralizando Tudo */
    .section-header,
    .section-title,
    .section-subtitle,
    .text-center-mobile {
        text-align: center !important;
    }

    /* Seção Hero (A principal) */
    .hero-content {
        text-align: center;
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Grid virando coluna única */
    .features-grid,
    .pricing-grid,
    .grid {
        grid-template-columns: 1fr !important;
    }

    /* Centralizando os Cards */
    .feature-card,
    .pricing-card,
    .glass-card {
        text-align: center;
        align-items: center;
    }

    /* Centralizando ícones */
    .feature-icon {
        margin: 0 auto 20px auto;
    }

    /* Detalhes do Card de Preço */
    .pricing-card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .plan-features {
        text-align: left;
        width: 100%;
    }

    /* Rodapé */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links {
        justify-content: center;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* Centralizando Redes Sociais no Hero */
    .hero-social {
        justify-content: center;
    }
}

/* Estilo do Menu no Celular */
@media (max-width: 960px) {
    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        gap: 24px;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .header-actions {
        display: none;
        /* Simplifica pro mobile, ou move pra dentro dos nav-links via JS se precisar. mantendo simples por agora. */
    }

    .menu-toggle {
        display: flex;
    }

    /* Mostrar botões no menu mobile? mais fácil esconder ou adicionar via JS.
       Vamos manter simples: Hamburger só alterna os links. */
}

/* Seção Hero */
.hero {
    position: relative;
    padding: 0;
    /* padding tratado pelo alinhamento, mas mantendo um pouco por segurança */
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    /* Compensação pro cabeçalho fixo */
}

/* Garante que o container dentro do flex ocupe tudo */
.hero .container {
    width: 100%;
}

/* Efeito de brilho bolado no fundo */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, rgba(10, 10, 15, 0) 70%);
    z-index: -1;
    filter: blur(80px);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    font-size: 0.875rem;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-primary);
}

/* Ícones das Redes Sociais no Hero */
.hero-social {
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    color: white;
}

.social-btn.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.4);
}

.social-btn.instagram:hover {
    background: #e1306c;
    border-color: #e1306c;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.social-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.social-btn.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Visual do Hero */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    /* Habilitando 3D pros filhos */
}

.bg-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    z-index: 1;
    /* Atrás do mockup (z-index 10) mas na frente do fundo */
    opacity: 0.15;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5));
    pointer-events: none;
    animation: floatLogo 3s ease-in-out infinite alternate;
}

.bg-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes floatLogo {
    0% {
        transform: translate(-50%, -50%) translateY(0) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) translateY(-20px) rotate(5deg);
    }
}

.glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--gradient-main);
    filter: blur(100px);
    opacity: 0.4;
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

.hero-card-mockup {
    position: relative;
    width: 100%;
    left: 20px;
    width: 250px;
    padding: 24px;
    z-index: 1001;
    /* Acima do cabeçalho (1000) */
    /* Efeito de Vidro */
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.hero-card-mockup:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #f59e0b;
}

.dot.green {
    background: #10b981;
}

.mockup-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 150px;
    position: relative;
    /* Garante que os filhos com absolute se posicionem em relação a isso aqui */
}

.growth-arrow-container {
    position: absolute;
    top: 20%;
    left: 10%;
    right: 10%;
    height: 60%;
    pointer-events: none;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.growth-arrow {
    width: 100%;
    height: 100%;
    color: #4ade80;
    /* verde brilhante */
    filter: drop-shadow(0 0 8px rgba(74, 222, 128, 0.5));
    animation: growPath 2s ease-out forwards;
    opacity: 0.9;
}

.growth-label {
    position: absolute;
    top: -40px;
    /* Jogado pra cima da barra */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.9rem;
    /* Um pouco maior pra chamar atenção */
    font-weight: 700;
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-bottom: 2px solid rgba(74, 222, 128, 0.5);
    /* Borda embaixo pra dar profundidade */
    animation: fadeIn 0.5s ease-out 1.5s forwards;
    opacity: 0;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 30;
}

@keyframes growPath {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes fadeIn {
    to {
        transform: translateX(-50%) translateY(-5px);
        /* Leve flutuada ao aparecer */
        opacity: 1;
    }
}

.chart-bar {
    width: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px 4px 0 0;
    transition: height 1s ease;
    position: relative;
    /* Pro rótulo */
}

.chart-bar.active {
    background: var(--gradient-main);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

@media (max-width: 960px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        margin: 0 auto 32px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 60px;
    }
}

/* Seções Gerais */
.section-padding {
    padding: 60px 0;
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Seção de Funcionalidades */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 32px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: inline-block;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Seção de Comparação */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.comparison-card {
    padding: 40px;
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
    font-size: 1.1rem;
    color: var(--color-text);
}

.comparison-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
}

.old-way {
    border-color: rgba(239, 68, 68, 0.2);
}

.old-way h3 {
    color: #f87171;
}

.old-way .comparison-list li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
}

.new-way {
    border-color: rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.02) 100%);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.new-way h3 {
    color: #34d399;
}

.new-way .comparison-list li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334d399' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .new-way {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .new-way {
        transform: scale(1);
    }
}

/* Página de Preços */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
    transform: scale(1.05);
    z-index: 10;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

/* Regra antiga do span .plan-price removida/substituída por classes específicas acima/abaixo */

.plan-desc {
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.plan-features {
    list-style: none;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-features li {
    margin-bottom: 16px;
    font-size: 0.95rem;
}

@media (max-width: 960px) {
    .pricing-card.popular {
        transform: scale(1);
    }
}

/* Seção CTA */
.cta-box {
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.cta-box h2 {
    font-size: 2.5rem;
}

/* Rodapé */
.site-footer {
    padding: 80px 0 40px;
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 80px;
}

.footer-column h4 {
    margin-bottom: 24px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--color-primary);
}

/* Menu Social Flutuante */
.floating-menu {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    display: flex;
    gap: 16px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    /* Bem vidrado */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    /* Completamente arredondado */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-menu.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.floating-menu .social-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-menu .social-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 40px;
    }
}

/* Navegação Lateral */
.features-sidebar {
    position: fixed;
    top: 100px;
    left: 20px;
    width: 250px;
    padding: 24px;
    z-index: 1001;
    /* Acima do cabeçalho (1000) */
    /* Efeito de Vidro */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    transition: opacity 0.3s ease, transform 0.3s ease;
}

.features-sidebar ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.features-sidebar a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid transparent;
}

.features-sidebar a:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.05);
}

.features-sidebar a.active {
    color: white;
    background: rgba(139, 92, 246, 0.1);
    /* tom roxo */
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
}

/* Esconder em telas menores */
@media (max-width: 1400px) {

    /* aumentado de 1280 pra ser mais seguro dado container de 1200px + padding */
    .features-sidebar {
        display: none;
    }
}

/* Animação Card de Fogo */
/* Animação Card Neon */
.fire-card {
    position: relative;
    border: 2px solid #ff00ff !important;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    animation: neonPulse 1.5s infinite alternate;
}

@keyframes neonPulse {
    0% {
        box-shadow: 0 0 20px rgba(255, 0, 255, 0.6), inset 0 0 10px rgba(255, 0, 255, 0.3);
        border-color: #ff00ff;
    }

    100% {
        box-shadow: 0 0 50px rgba(255, 0, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.6), inset 0 0 20px rgba(255, 0, 255, 0.5);
        border-color: #00ffff;
    }
}

.competitor-cost-box {
    background: linear-gradient(45deg, #ff0055, #ff00ff);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: shake 5s infinite;
}

@keyframes shake {

    0%,
    90% {
        transform: translate(0, 0);
    }

    91% {
        transform: translate(-2px, 0);
    }

    93% {
        transform: translate(2px, 0);
    }

    95% {
        transform: translate(-2px, 0);
    }

    97% {
        transform: translate(2px, 0);
    }

    99% {
        transform: translate(0, 0);
    }
}

/* Otimiza��o Mobile Adicional */
@media (max-width: 768px) {
    .hero-social {
        justify-content: center;
        margin-top: 32px;
    }

    .hero-social .social-icons {
        justify-content: center;
    }

    .section-header {
        text-align: center;
    }

    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr !important;
    }

    .glass-card {
        padding: 24px !important;
    }

    /* Ajuste para o box de concorr�ncia no mobile se necess�rio */
    .competitor-cost-box {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}