/* RESET BÁSICO */
html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

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

html {
    scroll-behavior: smooth;
}

/* ESTRUTURA PRINCIPAL */
body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    --font-scale: 1;
}

/* FAZ O CONTEÚDO OCUPAR O ESPAÇO */
main {
    flex: 1;
}

/* GARANTE QUE O FOOTER FIQUE NO FINAL */
.site-footer {
    margin-top: auto;
}

/* High Contrast Mode */
body.high-contrast {
    background-color: #000000 !important;
    color: #ffff00 !important;
}

body.high-contrast * {
    background-color: transparent !important;
    color: #ffff00 !important;
    border-color: #ffff00 !important;
    text-shadow: none !important;
    box-shadow: none !important;
}

body.high-contrast .accessibility-bar,
body.high-contrast .btn-subscribe,
body.high-contrast .badge-popular {
    background-color: #ffff00 !important;
    color: #000000 !important;
}


/* Background Video */
.bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Fundo mais opaco para destacar bem os textos */
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.95) 100%);
    background-color: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

/* Header Container */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

/* Section 1: Accessibility Bar */
.accessibility-bar {
    background-color: #E8185A;
    height: 40px;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    font-size: 11px;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
}

.acc-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.acc-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
}

.acc-center a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.acc-center a:hover {
    opacity: 0.8;
}

.acc-center span {
    opacity: 0.5;
}

.acc-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-high-contrast {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 10px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-high-contrast:hover {
    background: #ffffff;
    color: #E8185A;
}

.acc-separator {
    width: 1px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.3);
}

.font-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.font-controls button {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

#font-decrease {
    font-size: 10px;
}

#font-reset {
    font-size: 12px;
}

#font-increase {
    font-size: 14px;
}

/* Section 2: Main Navbar */
.main-navbar {
    background-color: #09090b;
    height: 72px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: sticky;
    top: 40px;
    /* Logo abaixo da barra de acessibilidade */
}


.main-navbar.scrolled {
    background-color: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.navbar-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* CONTAINER DA LOGO */
.nav-logo {
    display: flex;
    align-items: center;
    max-height: 70px;
    overflow: hidden;
}

/* LOGO PRINCIPAL */
.logo-img {
    width: 230px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .logo-img {
        width: 180px;
    }
}

.nav-links-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 32px;
}

.nav-links-center a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    padding: 8px 0;
}

.nav-links-center a:hover {
    color: #ffffff;
}

.nav-links-center a.active {
    color: #E8185A;
}

.nav-links-center a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #E8185A;
}

.nav-actions-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-client-area {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #ffffff;
    border-radius: 8px;
    padding: 8px 18px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-client-area:hover {
    border-color: #E8185A;
    color: #E8185A;
}

.btn-subscribe {
    background: #E8185A;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-subscribe:hover {
    background: #c9134d;
    box-shadow: 0 4px 20px rgba(232, 24, 90, 0.4);
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 4px;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background-color: #111113;
    border-left: 1px solid rgba(255, 255, 255, 0.07);
    z-index: 2000;
    transition: right 0.3s ease;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: flex-end;
}

.btn-close-drawer {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 24px;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-links a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.drawer-links a.active {
    color: #E8185A;
}

.drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.drawer-actions .btn-client-area,
.drawer-actions .btn-subscribe {
    text-align: center;
    padding: 12px;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1999;
    display: none;
}

.drawer-overlay.active {
    display: block;
}

@media (max-width: 992px) {
    .nav-links-center {
        gap: 20px;
    }
}

@media (max-width: 768px) {

    .nav-links-center,
    .btn-client-area {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .navbar-container {
        padding: 0 16px;
    }

    .accessibility-bar {
        padding: 0 16px;
    }

    .acc-center {
        display: none;
    }
}

transform: scale(1.05);
}

/* Hero Section */
.hero {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    z-index: 2;
    margin-top: 5vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 1rem;
    border: 1px solid rgba(225, 29, 72, 0.3);
    border-radius: 9999px;
    background: rgba(225, 29, 72, 0.05);
    color: #E11D48;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.highlight {
    background: linear-gradient(135deg, #FF0055, #E11D48);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(225, 29, 72, 0.4);
}

.cursor {
    display: inline-block;
    color: #E11D48;
    animation: blink 1s step-end infinite;
    font-weight: 300;
    margin-left: 4px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #a1a1aa;
    margin-bottom: 3rem;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.btn-primary-hero {
    background: #E11D48;
    color: #ffffff;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    display: inline-block;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    box-shadow: 0 6px 0 0 #5eaebc;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary-hero:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 0 0 #5eaebc;
}

.btn-primary-hero:active {
    transform: translateY(6px);
    box-shadow: 0 0 0 0 #5eaebc;
}

/* Hero Glow Button */
.hero-glow-wrapper {
    position: relative;
    display: inline-flex;
    padding: 2px;
    /* Espessura da borda de luz */
    border-radius: 9999px;
    box-shadow: 0 6px 0 0 #5eaebc;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    background: #18181b;
    /* Cor da borda quando a luz não está passando */
}

.hero-glow-wrapper:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 0 0 #5eaebc;
}

.hero-glow-wrapper:active {
    transform: translateY(6px);
    box-shadow: 0 0 0 0 #5eaebc;
}

.hero-glow-border {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent 70%, #ffffff 100%);
    animation: rotate-glow 2.5s linear infinite;
    z-index: 0;
}

@keyframes rotate-glow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-glow-wrapper .btn-primary-hero {
    position: relative;
    z-index: 1;
    box-shadow: none !important;
    transform: none !important;
    margin: 0;
}

.btn-secondary {
    color: #a1a1aa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0;
    background: transparent;
    border: none;
}

.btn-secondary:hover {
    color: #ffffff;
}

.line-icon {
    display: block;
    width: 32px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Metrics Section */
.hero-metrics {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    width: 90%;
    max-width: 1100px;
    margin: 6rem auto 0;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 2;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.metric-label {
    font-size: 0.75rem;
    color: #71717a;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.metric-desc {
    font-size: 0.75rem;
    color: #E11D48;
    font-weight: 500;
}

/* Comparison Section */
.comparison-section {
    padding: 8rem 2rem;
    background: #000000;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-container {
    max-width: 900px;
    margin: 0 auto;
}

.comparison-header {
    text-align: center;
    margin-bottom: 8rem;
}

.comparison-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.comparison-header .section-subtitle {
    font-size: 1.25rem;
    color: #a1a1aa;
    max-width: 600px;
    margin: 0 auto;
}

.comparison-header .highlight {
    color: #E8185A;
    text-shadow: 0 0 30px rgba(232, 24, 90, 0.6);
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.comparison-item {
    width: 100%;
}

.comp-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.comp-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
}

.comp-percentage {
    font-size: 1.5rem;
    font-weight: 800;
    color: #52525b;
    font-family: 'Outfit', sans-serif;
}

.highlighted .comp-percentage {
    color: #E8185A;
}

.progress-track {
    border-radius: 99px;
    overflow: visible;
    /* Permite que o brilho saia */
    position: relative;
}

.brand-item .progress-track {
    height: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(232, 24, 90, 0.4);
    padding: 2px;
}

.competitor-item .progress-track {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.progress-fill {
    height: 100%;
    width: 0%;
    border-radius: 99px;
    transition: width 0.5s ease-out;
}

.progress-fill.competitor {
    background: #52525b;
}

.progress-fill.brand {
    background: #E8185A;
    box-shadow: 0 0 20px #E8185A, 0 0 40px rgba(232, 24, 90, 0.4);
}

.comp-status {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #52525b;
    font-weight: 500;
}

.highlighted .comp-status {
    color: rgba(232, 24, 90, 0.8);
}



/* Pricing Section */
.pricing-section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
    text-align: center;
    background-color: rgba(5, 5, 5, 0.75);
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    overflow: hidden;
}

.dotted-surface-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.pricing-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    /* Sincronizado com a grid para centralização perfeita */
    margin: 0 auto;
    width: 100%;
}

.pricing-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #a1a1aa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
    justify-content: center;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.pricing-card.highlighted {
    border: none;
    background: rgba(225, 29, 72, 0.08);
}

.pricing-card-container {
    position: relative;
    display: flex;
    padding-top: 12px;
    /* Espaço para o badge */
}

/* Card Glow Effect */
.card-glow-wrapper {
    position: relative;
    display: flex;
    padding: 2px;
    border-radius: 24px;
    overflow: hidden;
    background: #18181b;
}

.card-glow-border {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent 70%, #ffffff 100%);
    animation: rotate-glow 4s linear infinite;
    z-index: 0;
}

.card-glow-wrapper .pricing-card {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: #0a0a0b;
    border: none;
    margin: 0;
}

.highlight-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
    border-radius: 24px;
}

.badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #FF0055, #E11D48);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
    color: #ffffff;
}

.plan-price .currency {
    font-size: 1.25rem;
    font-weight: 600;
    margin-right: 0.25rem;
}

.plan-price .value {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.plan-price .period {
    font-size: 1rem;
    color: #a1a1aa;
    margin-left: 0.25rem;
}

.plan-desc {
    font-size: 0.875rem;
    color: #E11D48;
    margin-bottom: 1.5rem;
    min-height: 2.5rem;
}

.btn-full {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
    box-sizing: border-box;
}

.plan-features {
    margin-top: auto;
}

.features-title {
    display: block;
    font-size: 0.875rem;
    color: #a1a1aa;
    margin-bottom: 1rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
    width: 100%;
}

.plan-features li {
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #e4e4e7;
    line-height: 1.4;
}

.plan-features li small {
    display: inline;
    font-size: 0.75rem;
    color: #a1a1aa;
    line-height: 1.3;
    margin-left: 4px;
}

.plan-features li svg {
    flex-shrink: 0;
    color: #E11D48;
}

/* Features Section */
.features-section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.features-header {
    margin-bottom: 5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Footer Section */
.site-footer {
    padding: 6rem 2rem 5rem;
    background: #000000;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
    margin-bottom: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: #a1a1aa;
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 250px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #E11D48;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

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

.footer-contact p {
    color: #a1a1aa;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact .highlight {
    color: #E11D48;
    font-weight: 600;
}

.footer-bottom {
    margin-top: 6rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #71717a;
    font-size: 0.75rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #a1a1aa;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: #E11D48;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p,
    .footer-contact p {
        margin: 0 auto 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 4rem 2rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
    border-color: rgba(225, 29, 72, 0.3);
    transform: translateY(-4px);
}

.feature-icon-wrapper {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    background: #000000;
    border: 2px solid #E11D48;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E11D48;
    box-shadow: 0 4px 20px rgba(225, 29, 72, 0.3);
}

.feature-divider {
    width: 24px;
    height: 2px;
    background: #E11D48;
    margin-bottom: 1.5rem;
}

.feature-text {
    font-size: 1.125rem;
    color: #e4e4e7;
    line-height: 1.5;
    font-weight: 500;
}

/* Upsell Section (Conecta+) */
.upsell-section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
    background-color: #050505;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    overflow: hidden;
}

.upsell-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.upsell-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.upsell-content {
    flex: 1;
}

.upsell-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.highlight-conecta {
    color: #f97316;
}

.highlight-conecta .plus {
    color: #3b82f6;
}

.upsell-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.upsell-icon {
    width: 48px;
    height: 48px;
    background: #1e3a8a;
    border: 1px solid #3b82f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upsell-logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.upsell-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.upsell-benefits li {
    display: flex;
    align-items: center;
    color: #a1a1aa;
    font-size: 1.125rem;
}

.bullet {
    width: 6px;
    height: 6px;
    background: #a1a1aa;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.75rem;
}

/* Upsell Card */
.upsell-card {
    flex: 1;
    background: #0a0a0b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.upsell-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.upsell-badge {
    font-size: 0.75rem;
    color: #a1a1aa;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.upsell-card-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin-top: 0.5rem;
    font-weight: 600;
}

.upsell-card-divider {
    width: 40px;
    height: 2px;
    background: #ffffff;
    margin: 1rem auto 0;
}

.upsell-card-body {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.upsell-card-features {
    flex: 1;
}

.upsell-card-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.upsell-card-features li {
    display: flex;
    align-items: center;
    color: #e4e4e7;
    font-size: 0.875rem;
}

.upsell-card-features .bullet {
    background: #ffffff;
}

.upsell-animation {
    flex: 1.2;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.router-svg {
    width: 100%;
    height: auto;
    display: block;
}

.upsell-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.upsell-price {
    display: flex;
    align-items: baseline;
    color: #ffffff;
}

.upsell-price .currency {
    font-size: 1.25rem;
    font-weight: 600;
    margin-right: 0.25rem;
}

.upsell-price .value {
    font-size: 2.5rem;
    font-weight: 800;
}

.upsell-price .period {
    font-size: 1rem;
    color: #a1a1aa;
    margin-left: 0.25rem;
}

.btn-warning {
    background: #FFC107;
    color: #000000;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-warning:hover {
    transform: scale(1.05);
    background: #FFD54F;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.faq-subtitle {
    font-size: 1.125rem;
    color: #a1a1aa;
}

.faq-accordion {
    background: #0a0a0b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 1rem 2rem;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.02);
}

.faq-item {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
    font-family: inherit;
}

.faq-question:hover {
    color: #E11D48;
}

.faq-icon {
    color: #a1a1aa;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #E11D48;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
    color: #a1a1aa;
    font-size: 1rem;
    line-height: 1.6;
    padding-bottom: 0;
}

.faq-item.active .faq-answer-inner {
    padding-bottom: 1.5rem;
}

.faq-footer {
    margin-top: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.faq-footer p {
    color: #a1a1aa;
    font-size: 1.125rem;
}

/* Responsividade Básica */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .hero-metrics {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }

    .upsell-container {
        flex-direction: column;
        gap: 2rem;
    }

    .upsell-card-body {
        flex-direction: column;
    }

    .upsell-title {
        font-size: 2rem;
    }

    .faq-title {
        font-size: 2.5rem;
    }

    .faq-accordion {
        padding: 1rem;
    }

    .faq-question {
        font-size: 1rem;
    }
}

/* LOGO NAVBAR */
.navbar-brand img,
.logo img,
header img,
img[src*="logo-netmund-removebg-preview"] {
    width: auto !important;
    height: 250px !important;
    max-height: 200px !important;
    object-fit: contain !important;
    display: block !important;
}

/* CONTAINER DA LOGO */
.navbar-brand,
.logo {
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
}

<title>Net Mund</title><link rel="icon" type="image/png" href="favicon.png">