/* ==========================================================================
   CSS Variables (Design System)
   ========================================================================== */
:root {
    /* Cores Primárias */
    --bg-dark: #0D1117;
    --bg-card: #131A24;
    --border-dark: #1E2A3A;

    /* Cores de Destaque */
    --cyan: #00C8D7;
    --cyan-glow: #00E5F5;

    /* Cores de Texto */
    --text-pure: #FFFFFF;
    --text-medium: #A0AEC0;
    --text-muted: #718096;

    /* Tipografia */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-pure);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   Header
   ========================================================================== */
.arquem-header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: header-fade-in-down 0.6s ease-out;
}

.arquem-header-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.arquem-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 1001;
}

.arquem-logo img {
    width: auto;
    height: 50px;
    display: block;
}

.arquem-nav-menu {
    display: flex;
    align-items: center;
    gap: 48px;
    list-style: none;
}

.arquem-nav-menu li a {
    position: relative;
    display: inline-flex;
    padding: 8px 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.arquem-nav-menu li a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #03e3b6;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.arquem-nav-menu li a:hover {
    color: #03e3b6;
}

.arquem-nav-menu li a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.arquem-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 28px;
    border: 2px solid #03e3b6;
    border-radius: 8px;
    background: rgba(22, 22, 22, 0.6);
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(3, 227, 182, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.arquem-header-cta:hover {
    background: #03e3b6;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(3, 227, 182, 0.3);
}

.arquem-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 1001;
}

.arquem-mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    border-radius: 2px;
    background: #ffffff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.arquem-mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.arquem-mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.arquem-mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.arquem-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: opacity 0.3s ease;
}

.arquem-mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.arquem-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 999;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    padding: 96px 32px 32px;
    overflow-y: auto;
    background: rgba(10, 10, 10, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.arquem-mobile-nav.active {
    right: 0;
}

.arquem-mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 32px;
    list-style: none;
}

.arquem-mobile-nav-menu li a {
    display: block;
    padding: 8px 0;
    color: #ffffff;
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.arquem-mobile-nav-menu li a:hover {
    color: #03e3b6;
    transform: translateX(10px);
}

.arquem-mobile-cta {
    margin-top: 48px;
}

@keyframes header-fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@media (max-width: 968px) {
    .arquem-nav-menu,
    .arquem-header > .arquem-header-container > .arquem-header-cta {
        display: none;
    }

    .arquem-mobile-menu-toggle {
        display: flex;
    }

    .arquem-mobile-overlay,
    .arquem-mobile-nav {
        display: block;
    }

    .arquem-mobile-nav .arquem-header-cta {
        display: inline-flex;
    }

    .arquem-header-container {
        padding: 16px 24px;
    }
}

@media (max-width: 480px) {
    .arquem-logo img {
        height: 35px;
    }

    .arquem-mobile-nav {
        width: 85%;
    }

    .arquem-header-container {
        padding: 16px;
    }
}

/* ==========================================================================
   Hero Section Layout
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* Imagem de fundo completa, alinhada à direita, preenchendo o espaço */
    background: url('scr/Project/01%20-%20Hero/Background-Hero.png') center right / cover no-repeat;
}

/* Camada de escurecimento no mobile para manter leitura */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13, 17, 23, 0.95) 0%, rgba(13, 17, 23, 0.8) 40%, rgba(13, 17, 23, 0.2) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
}

/* ==========================================================================
   Hero Content (Left Column)
   ========================================================================== */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 600px; /* 40-45% width restriction */
}

/* Badge Superior */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    margin-bottom: 24px;
    border: 1px solid var(--cyan);
    border-radius: 9999px; /* Cápsula */
    background-color: rgba(13, 17, 23, 0.6);
    backdrop-filter: blur(4px);
    
    color: var(--cyan);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--cyan);
}

/* Título Principal */
.hero-title {
    font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-pure);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: var(--cyan);
    display: inline-block;
}

/* Texto de Apoio */
.hero-text {
    font-size: clamp(16px, 1.2vw, 18px);
    font-weight: 400;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
}

/* ==========================================================================
   CTA Button (Outline Style)
   ========================================================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    
    border: 2px solid var(--cyan);
    border-radius: 9999px; /* Pílula */
    background-color: transparent;
    
    color: var(--cyan);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1.5px;
    
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background-color: rgba(0, 200, 215, 0.1);
    color: var(--cyan-glow);
    border-color: var(--cyan-glow);
    box-shadow: 0 0 20px rgba(0, 200, 215, 0.2);
}

.cta-button:active {
    transform: translateY(1px);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg.lucide-arrow-right {
    transform: translateX(4px);
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 1023px) {
    .hero-content {
        max-width: 55%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        background-position: 70% center; /* Ajuste sutil do background em telas menores */
    }
    
    /* Escurecimento mais forte no mobile para texto legível em cima da imagem */
    .hero-section::before {
        background: linear-gradient(to bottom, rgba(13, 17, 23, 0.95) 0%, rgba(13, 17, 23, 0.8) 60%, rgba(13, 17, 23, 0.5) 100%);
    }

    .hero-container {
        padding: 0 6%;
    }

    .hero-content {
        max-width: 100%;
        padding-top: 80px; /* Compensa o header se existir */
        padding-bottom: 80px;
    }
    
    .hero-title br {
        display: none; /* Deixa o texto quebrar naturalmente no mobile */
    }
    
    .hero-text br {
        display: none;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
    }
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-section {
    padding: 80px 5%;
    background: radial-gradient(circle at bottom, #082526 0%, #020607 55%, #000000 100%);
    position: relative;
    color: var(--text-pure);
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-header .badge {
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
}

/* Grid layout */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
}

/* Pricing Card Base */
.pricing-card {
    background: rgba(5, 16, 18, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

/* Card Destaque (Crescimento) */
.pricing-card.featured {
    border: 1.5px solid var(--cyan);
    box-shadow: 0 0 28px rgba(0, 216, 210, 0.16);
    background: rgba(5, 20, 24, 0.95);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cyan);
    color: var(--bg-dark);
    font-size: 12px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Header do Card */
.card-header-layout {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.card-title-wrapper {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
}

.card-name {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-subtitle {
    font-size: 14px;
    color: #8d9699;
    min-height: 42px;
}

/* Lista de Features */
.card-features-shell {
    position: relative;
    flex-grow: 1;
    margin-bottom: 24px;
}

.card-features {
    list-style: none;
    max-height: 300px;
    margin-bottom: 12px;
    overflow: hidden;
    padding-right: 4px;
    transition: max-height 0.3s ease;
}

.card-features-shell::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 42px;
    height: 52px;
    background: linear-gradient(to bottom, rgba(5, 16, 18, 0), rgba(5, 16, 18, 0.96));
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.pricing-card.featured .card-features-shell::after {
    background: linear-gradient(to bottom, rgba(5, 20, 24, 0), rgba(5, 20, 24, 0.98));
}

.card-features-shell.is-expanded::after {
    opacity: 0;
}

.card-features-shell.is-expanded .card-features {
    max-height: 360px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--cyan) rgba(255, 255, 255, 0.08);
}

.card-features-shell.is-expanded .card-features::-webkit-scrollbar {
    width: 6px;
}

.card-features-shell.is-expanded .card-features::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.card-features-shell.is-expanded .card-features::-webkit-scrollbar-thumb {
    background: var(--cyan);
    border-radius: 999px;
}

.card-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 10px;
    line-height: 1.4;
}

.card-features li svg {
    flex-shrink: 0;
    color: var(--cyan);
    margin-top: 2px;
}

.card-features li.feature-intro {
    display: block;
    margin-bottom: 14px;
    color: var(--text-pure);
    font-size: 13px;
}

.card-features li.feature-group-title {
    display: block;
    margin: 16px 0 8px;
    color: var(--cyan);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.2;
    text-transform: uppercase;
}

.card-features li.feature-group-title:first-child,
.card-features li.feature-intro + .feature-group-title {
    margin-top: 0;
}

.features-toggle {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--cyan);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}

.features-toggle:hover {
    color: var(--cyan-glow);
}

.card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: 24px;
}

/* Preço */
.card-old-price {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.card-price-container {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.card-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-pure);
    line-height: 1;
}

.card-period {
    font-size: 16px;
    color: var(--text-medium);
}

.card-savings {
    font-size: 14px;
    color: var(--cyan);
    font-weight: 600;
    margin-bottom: 22px;
}

/* Botões do Card */
.card-btn {
    width: 100%;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    letter-spacing: 1.5px;
    line-height: 1.2;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

/* Solid CTA (Primary) for Featured */
.card-btn.primary {
    background-color: var(--cyan);
    color: var(--bg-dark);
}
.card-btn.primary:hover {
    background-color: var(--cyan-glow);
    box-shadow: 0 0 15px rgba(0, 200, 215, 0.4);
}

/* Outline CTA (Secondary) for Others */
.card-btn.secondary {
    background-color: transparent;
    border: 2px solid var(--cyan);
    color: var(--cyan);
    border-radius: 9999px;
}
.card-btn.secondary:hover {
    background-color: rgba(0, 200, 215, 0.1);
    color: var(--cyan-glow);
    border-color: var(--cyan-glow);
}

/* Responsivo */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
        margin: 0 auto;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
}

/* Pricing compact viewport layout */
.pricing-section {
    min-height: calc(100vh + 96px);
    padding: 42px 4% 96px;
    box-sizing: border-box;
    overflow: visible;
    background: radial-gradient(ellipse at 50% 52%, #082526 0%, #020607 46%, #000000 100%);
}

.pricing-container {
    max-width: 1360px;
    height: calc(100vh - 82px);
    min-height: 620px;
    display: flex;
    flex-direction: column;
}

.pricing-header {
    flex: 0 0 auto;
    margin-bottom: 32px;
}

.pricing-header .badge {
    margin-bottom: 0;
}

.pricing-grid {
    flex: 1 1 auto;
    min-height: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.pricing-card {
    min-height: 0;
    overflow: visible;
    padding: 22px 24px 20px;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured,
.pricing-card.featured:hover {
    transform: none;
}

.card-badge {
    top: -12px;
    padding: 5px 15px;
    font-size: 11px;
}

.card-header-layout {
    gap: 12px;
    margin-bottom: 16px;
}

.card-icon {
    width: 48px;
    height: 48px;
}

.card-icon img {
    width: 58px;
    height: 58px;
}

.card-name {
    font-size: 18px;
    line-height: 1.15;
}

.card-subtitle {
    min-height: 0;
    font-size: 13px;
    line-height: 1.45;
}

.card-features-shell {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    margin-bottom: 14px;
    overflow: hidden;
}

.card-features {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    margin-bottom: 8px;
    overflow: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--cyan) rgba(255, 255, 255, 0.08);
}

.card-features-shell::after {
    bottom: 30px;
    height: 42px;
}

.card-features li {
    gap: 8px;
    margin-bottom: 7px;
    font-size: 11.5px;
    line-height: 1.3;
}

.card-features li.feature-intro {
    margin-bottom: 10px;
    font-size: 11.5px;
}

.card-features li.feature-group-title {
    margin: 11px 0 6px;
    font-size: 10px;
}

.features-toggle {
    flex: 0 0 auto;
    font-size: 10.5px;
}

.card-features-shell.is-expanded .card-features {
    max-height: none;
    overflow-y: auto;
}

.card-features::-webkit-scrollbar {
    width: 6px;
}

.card-features::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.card-features::-webkit-scrollbar-thumb {
    background: var(--cyan);
    border-radius: 999px;
}

.card-divider {
    margin-bottom: 13px;
}

.card-old-price {
    font-size: 11.5px;
    margin-bottom: 3px;
}

.card-price-container {
    margin-bottom: 5px;
}

.card-price-container > span:first-child {
    font-size: 18px !important;
}

.card-price {
    font-size: 27px;
}

.card-period {
    font-size: 13px;
}

.card-savings {
    margin-bottom: 12px;
    font-size: 11.5px;
}

.card-btn {
    flex: 0 0 auto;
    padding: 10px 14px;
    font-size: 10.5px;
}

@media (min-width: 1025px) and (max-height: 760px) {
    .pricing-section {
        padding-top: 36px;
        padding-bottom: 90px;
    }

    .pricing-container {
        height: calc(100vh - 72px);
        min-height: 0;
    }

    .pricing-card {
        padding: 19px 22px;
    }

    .card-header-layout {
        margin-bottom: 12px;
    }

    .card-features li {
        margin-bottom: 6px;
    }

    .card-price {
        font-size: 25px;
    }
}

@media (max-width: 1024px) {
    .pricing-section {
        height: auto;
        min-height: auto;
        padding: 56px 5%;
        box-sizing: border-box;
        overflow: visible;
    }

    .pricing-container {
        height: auto;
        min-height: auto;
        display: block;
    }

    .pricing-header {
        margin-bottom: 36px;
    }

    .pricing-grid {
        flex: none;
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card {
        overflow: visible;
        padding: 32px 28px;
        display: flex;
    }

    .card-features-shell {
        overflow: visible;
    }

    .card-features {
        max-height: 300px;
        overflow: hidden;
    }
}

/* ==========================================================================
   Optionals Section
   ========================================================================== */
.optionals-section {
    padding: 80px 5%;
    position: relative;
    color: var(--text-pure);
    background: url("scr/Project/03 - Opcionais/Background - Seção - opcionais.png") center top / cover no-repeat;
    background-color: var(--bg-dark); /* Fallback */
}

/* Layer de escurecimento caso a imagem seja muito clara em alguma área */
.optionals-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 17, 23, 0.4);
    z-index: 1;
}

.optionals-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.optionals-header {
    text-align: center;
    margin-bottom: 48px;
}

.optionals-header .badge {
    margin-bottom: 16px;
}

.optionals-header .highlight {
    color: var(--cyan);
}

.optionals-text {
    font-size: clamp(16px, 1.2vw, 18px);
    font-weight: 400;
    color: var(--text-medium);
    line-height: 1.7;
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}

/* Grid layout Opcionais */
.optionals-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

/* Opt Card Base */
.opt-card {
    background: rgba(19, 26, 36, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.opt-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 32px rgba(0, 229, 240, 0.15);
    border-color: rgba(0, 229, 240, 0.3);
}

/* Card Destaque (CLINICA+) */
.opt-card.featured {
    border: 1.5px solid var(--cyan);
    background: rgba(19, 26, 36, 0.85);
}

.opt-card.featured:hover {
    box-shadow: 0 0 40px rgba(0, 216, 210, 0.25);
}

.opt-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.opt-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    flex-shrink: 0;
}

.opt-card-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
}

.opt-card-name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 0;
    color: var(--text-pure);
}

.opt-card-subtitle {
    font-size: 14px;
    color: var(--cyan);
    margin-bottom: 24px;
    font-weight: 600;
}

.opt-card-desc {
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 18px;
    line-height: 1.5;
}

/* Lista de Features Opt */
.opt-card-features-shell {
    position: relative;
    flex-grow: 1;
    margin-bottom: 20px;
}

.opt-card-features {
    list-style: none;
    max-height: 220px;
    margin-bottom: 12px;
    overflow: hidden;
    padding-right: 4px;
    transition: max-height 0.3s ease;
}

.opt-card-features-shell::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 42px;
    height: 46px;
    background: linear-gradient(to bottom, rgba(19, 26, 36, 0), rgba(19, 26, 36, 0.96));
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.opt-card.featured .opt-card-features-shell::after {
    background: linear-gradient(to bottom, rgba(19, 26, 36, 0), rgba(19, 26, 36, 0.98));
}

.opt-card-features-shell.is-expanded::after {
    opacity: 0;
}

.opt-card-features-shell.is-expanded .opt-card-features {
    max-height: 280px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--cyan) rgba(255, 255, 255, 0.08);
}

.opt-card-features-shell.is-expanded .opt-card-features::-webkit-scrollbar {
    width: 6px;
}

.opt-card-features-shell.is-expanded .opt-card-features::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.opt-card-features-shell.is-expanded .opt-card-features::-webkit-scrollbar-thumb {
    background: var(--cyan);
    border-radius: 999px;
}

.opt-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 10px;
    line-height: 1.4;
}

.opt-card-features li svg {
    flex-shrink: 0;
    color: var(--cyan);
    margin-top: 2px;
    width: 16px;
    height: 16px;
}

.opt-card-features li.feature-group-title {
    display: block;
    margin: 16px 0 8px;
    color: var(--cyan);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.2;
    text-transform: uppercase;
}

.opt-card-features li.feature-group-title:first-child {
    margin-top: 0;
}

.opt-card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: 18px;
}

/* Preço Opt */
.opt-price-block {
    margin-bottom: 18px;
}

.opt-old-price {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.opt-price-container {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.opt-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-pure);
    line-height: 1;
}

.opt-period {
    font-size: 14px;
    color: var(--text-medium);
}

.opt-savings {
    font-size: 13px;
    color: var(--cyan);
    font-weight: 600;
}

/* Botões do Opt Card */
.opt-card-btn {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    letter-spacing: 1px;
    line-height: 1.2;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background-color: var(--cyan);
    color: var(--bg-dark);
    margin-top: auto; /* Garante que fique na base se não houver preço */
}

.opt-card-btn:hover {
    filter: brightness(1.08);
    box-shadow: 0 0 18px rgba(0, 229, 240, 0.35);
}

/* Faixa Inferior de Benefícios */
.benefits-strip {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px;
    background: rgba(13, 17, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    flex: 1;
    padding: 0 12px;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    color: var(--cyan);
}

.benefit-text {
    font-size: 13px;
    color: var(--text-medium);
    line-height: 1.4;
    max-width: 160px;
}

/* Responsivo Opcionais */
@media (max-width: 1024px) {
    .optionals-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .benefits-strip {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }
    
    .benefit-item {
        flex: 0 0 calc(33.333% - 24px);
    }
}

@media (max-width: 768px) {
    .optionals-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .benefit-item {
        flex: 0 0 100%;
        flex-direction: row;
        text-align: left;
    }
    
    .benefit-text {
        max-width: none;
    }
}

/* ==========================================================================
   Finalização Section
   ========================================================================== */
/* Bento Grid Opcionais */
.optionals-section {
    height: 100vh;
    min-height: 640px;
    padding: 14px 3.2%;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.24)),
        url("scr/Project/03 - opcionais novo/Background-grid-bento.png") center center / cover no-repeat;
}

.optionals-section::before {
    display: none;
}

.optionals-container {
    width: 100%;
    max-width: 1620px;
    height: 100%;
}

.optionals-grid {
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: 10px;
    margin: 0;
}

.bento-row {
    display: grid;
    min-height: 0;
    gap: 10px;
}

.bento-row-1 {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr) minmax(0, 1.35fr);
}

.bento-row-2 {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
}

.bento-side-stack {
    display: grid;
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 0;
    gap: 10px;
}

.opt-card {
    min-height: 0;
    height: 100%;
    overflow: hidden;
    padding: 18px 22px;
    border-radius: 18px;
    border: 1px solid rgba(0, 229, 255, 0.28);
    background:
        linear-gradient(145deg, rgba(7, 16, 29, 0.88), rgba(6, 14, 24, 0.72)),
        rgba(10, 15, 30, 0.74);
    box-shadow: inset 0 0 48px rgba(0, 229, 255, 0.035);
    isolation: isolate;
}

.opt-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 78% 45%, rgba(0, 229, 255, 0.16), transparent 38%);
    opacity: 0.72;
    pointer-events: none;
}

.opt-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 229, 255, 0.55);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.16), inset 0 0 48px rgba(0, 229, 255, 0.05);
}

.opt-card.featured {
    border-color: rgba(0, 229, 255, 0.88);
    background:
        linear-gradient(145deg, rgba(8, 21, 35, 0.92), rgba(8, 17, 29, 0.76)),
        rgba(10, 15, 30, 0.82);
}

.opt-card-rbvision {
    background:
        linear-gradient(90deg, rgba(7, 14, 25, 0.94) 0%, rgba(7, 14, 25, 0.76) 58%, rgba(7, 14, 25, 0.46) 100%),
        url("scr/Project/03 - opcionais novo/rbinvision-background.png") center right / cover no-repeat;
}

.opt-card-rbindlab {
    background:
        linear-gradient(90deg, rgba(7, 14, 25, 0.96) 0%, rgba(7, 14, 25, 0.82) 58%, rgba(7, 14, 25, 0.34) 100%),
        url("scr/Project/03 - opcionais novo/Rbinlab-background.png") center right / cover no-repeat;
}

.opt-card-header {
    position: relative;
    z-index: 1;
    gap: 14px;
    margin-bottom: 10px;
    min-height: 52px;
}

.opt-card-icon {
    width: 54px;
    height: 54px;
}

.opt-card-icon img {
    width: 54px;
    height: 54px;
}

.opt-card-name {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-right: 72px;
    font-size: 20px;
    line-height: 1.08;
    letter-spacing: 0;
}

.opt-card-name small {
    color: var(--text-pure);
    font-size: 0.72em;
    font-weight: 700;
}

.opt-card-name.single-line {
    padding-right: 0;
    text-transform: none;
}

.opt-badge {
    top: 16px;
    right: 18px;
    left: auto;
    z-index: 2;
    transform: none;
    padding: 5px 13px;
    border-radius: 999px;
    background: #00E5FF;
    color: #031015;
    font-size: 10px;
    letter-spacing: 0.8px;
}

.opt-card-desc {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin-bottom: 14px;
    color: rgba(224, 238, 247, 0.78);
    font-size: 12.5px;
    line-height: 1.45;
}

.opt-card-features-shell {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    flex-grow: 0;
    margin-bottom: 12px;
}

.opt-card-features-shell::after {
    display: none;
}

.opt-feature-group h4 {
    margin-bottom: 7px;
    color: #00E5FF;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.opt-card-features {
    max-height: none;
    margin: 0;
    padding: 0;
    overflow: visible;
}

.opt-card-features li {
    gap: 9px;
    margin-bottom: 7px;
    color: rgba(224, 238, 247, 0.82);
    font-size: 12px;
    line-height: 1.32;
}

.opt-card-features li:last-child {
    margin-bottom: 0;
}

.opt-card-features li svg {
    width: 14px;
    height: 14px;
    color: #00E5FF;
}

.has-split-features .opt-card-features-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 24px;
}

.opt-card-divider {
    position: relative;
    z-index: 1;
    margin: auto 0 12px;
    background: rgba(255, 255, 255, 0.16);
}

.opt-card-commerce {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    margin-top: auto;
}

.opt-price-block {
    margin: 0;
}

.opt-old-price {
    margin-bottom: 4px;
    color: rgba(176, 196, 216, 0.72);
    font-size: 12px;
}

.opt-price-container {
    margin-bottom: 4px;
}

.opt-currency {
    color: var(--text-pure);
    font-size: 17px;
    font-weight: 800;
}

.opt-price {
    font-size: 32px;
    letter-spacing: 0;
}

.opt-period {
    font-size: 13px;
}

.opt-savings {
    color: #00E5FF;
    font-size: 12px;
    line-height: 1.25;
}

.opt-card-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding: 10px 16px;
    border-radius: 8px;
    background: linear-gradient(180deg, #18E1F3 0%, #08BED2 100%);
    color: #061016;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.opt-card-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.32);
}

.opt-card-large {
    padding: 28px 30px 86px;
}

.opt-card-large .opt-card-header {
    min-height: 64px;
    margin-bottom: 18px;
}

.opt-card-large .opt-card-icon,
.opt-card-large .opt-card-icon img {
    width: 66px;
    height: 66px;
}

.opt-card-large .opt-card-name {
    font-size: 28px;
}

.opt-card-large .opt-card-desc {
    max-width: 500px;
    margin-bottom: 22px;
    font-size: 15px;
}

.opt-card-large .opt-card-features-shell {
    max-width: 430px;
    gap: 18px;
}

.opt-card-large .opt-card-features li {
    margin-bottom: 10px;
    font-size: 14px;
}

.opt-card-large .opt-card-divider {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 74px;
    margin: 0;
}

.opt-card-large .opt-card-commerce {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 14px;
}

.opt-card-medium {
    padding: 20px 24px 132px;
}

.opt-card-medium .opt-card-name {
    font-size: 24px;
}

.opt-card-medium .opt-card-desc {
    font-size: 14px;
}

.opt-card-medium .opt-card-divider {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 124px;
    margin: 0;
}

.opt-card-medium .opt-card-commerce {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 14px;
    gap: 9px;
}

.opt-card-stack {
    padding: 12px 18px;
}

.opt-card-stack .opt-card-header {
    min-height: 38px;
    margin-bottom: 6px;
}

.opt-card-stack .opt-card-icon,
.opt-card-stack .opt-card-icon img {
    width: 40px;
    height: 40px;
}

.opt-card-stack .opt-card-name {
    font-size: 19px;
}

.opt-card-stack .opt-card-desc {
    max-width: 360px;
    margin-bottom: 7px;
    font-size: 11px;
    line-height: 1.26;
}

.opt-card-stack .opt-card-features-shell {
    margin-bottom: 8px;
}

.opt-card-stack .opt-card-features li {
    margin-bottom: 4px;
    font-size: 11px;
    line-height: 1.22;
}

.opt-card-stack .opt-card-divider {
    display: none;
}

.opt-card-stack .opt-card-btn {
    min-height: 30px;
    padding: 7px 12px;
    font-size: 10.5px;
}

.opt-card-stack.opt-card-with-deco {
    padding-bottom: 48px;
}

.opt-card-stack.opt-card-with-deco .opt-card-commerce {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 10px;
}

.has-inline-commerce .opt-card-commerce {
    grid-template-columns: minmax(0, 1fr) minmax(130px, 0.86fr);
    align-items: end;
}

.opt-card-stack.has-inline-commerce .opt-card-features-shell {
    max-width: 58%;
}

.opt-card-stack.has-inline-commerce .opt-card-commerce {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 12px;
    width: auto;
    grid-template-columns: minmax(0, 1fr) 130px;
    gap: 6px;
}

.has-inline-commerce .opt-price-block {
    justify-self: end;
    min-width: 166px;
}

.has-inline-commerce .opt-old-price,
.has-inline-commerce .opt-savings {
    white-space: nowrap;
}

.has-inline-commerce .opt-price {
    font-size: 22px;
}

.has-inline-commerce .opt-savings,
.has-inline-commerce .opt-period,
.has-inline-commerce .opt-old-price {
    font-size: 11px;
}

.has-horizontal-bottom .opt-card-commerce {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
    align-items: end;
}

.has-horizontal-bottom .opt-card-commerce {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 14px;
}

.opt-card-wide {
    padding: 16px 28px 98px;
}

.opt-card-wide .opt-card-header {
    margin-bottom: 6px;
}

.opt-card-wide .opt-card-name {
    flex-direction: row;
    align-items: baseline;
    gap: 18px;
    font-size: 22px;
}

.opt-card-wide .opt-card-name small {
    font-size: 0.72em;
}

.opt-card-wide .opt-card-desc {
    margin-bottom: 12px;
    max-width: 720px;
    font-size: 12.5px;
}

.opt-card-rbindlab .opt-card-features-shell {
    margin-bottom: 0;
    padding-bottom: 20px;
}

.opt-card-rbindlab .opt-card-divider {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 62px;
    margin: 0;
}

.opt-card-rbindlab .opt-card-commerce {
    bottom: 10px;
}

.opt-card-rbindlab .opt-old-price {
    position: relative;
    z-index: 2;
    margin-bottom: 1px;
    font-size: 10.5px;
    line-height: 1;
}

.opt-card-rbindlab .opt-price-container {
    margin-bottom: 2px;
}

.opt-card-rbindlab .opt-currency {
    font-size: 15px;
}

.opt-card-rbindlab .opt-price {
    font-size: 27px;
}

.opt-card-rbindlab .opt-period,
.opt-card-rbindlab .opt-savings {
    font-size: 11px;
}

.opt-card-wide-small {
    padding: 18px 26px;
}

.opt-card-wide-small .opt-card-name {
    font-size: 23px;
}

.opt-card-wide-small .opt-card-header {
    min-height: 42px;
    margin-bottom: 6px;
}

.opt-card-wide-small .opt-card-icon,
.opt-card-wide-small .opt-card-icon img {
    width: 48px;
    height: 48px;
}

.opt-card-wide-small .opt-card-desc {
    margin-bottom: 8px;
}

.opt-card-wide-small .opt-feature-group h4 {
    margin-bottom: 5px;
    font-size: 10px;
}

.opt-card-wide-small .opt-card-features li {
    margin-bottom: 4px;
    font-size: 11.2px;
    line-height: 1.2;
}

.opt-card-wide-small .opt-card-commerce {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 14px;
}

.opt-card-deco {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 0;
    color: rgba(0, 229, 255, 0.32);
    pointer-events: none;
}

.opt-card-with-deco .opt-card-desc,
.opt-card-with-deco .opt-card-features-shell {
    max-width: 360px;
}

@media (max-width: 1180px) {
    .optionals-section {
        height: auto;
        min-height: 100vh;
        padding: 32px 18px;
        overflow: visible;
    }

    .optionals-container,
    .optionals-grid {
        height: auto;
    }

    .optionals-grid,
    .bento-row,
    .bento-side-stack {
        display: flex;
        flex-direction: column;
    }

    .optionals-grid {
        max-width: 720px;
        gap: 14px;
        margin: 0 auto;
    }

    .bento-row,
    .bento-side-stack {
        gap: 14px;
    }

    .opt-card {
        height: auto;
        min-height: 0;
        overflow: visible;
    }

    .opt-card-large,
    .opt-card-medium,
    .opt-card-stack,
    .opt-card-wide,
    .opt-card-wide-small {
        padding: 22px;
    }

    .opt-card-name,
    .opt-card-large .opt-card-name,
    .opt-card-medium .opt-card-name,
    .opt-card-stack .opt-card-name,
    .opt-card-wide .opt-card-name,
    .opt-card-wide-small .opt-card-name {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        font-size: 22px;
    }

    .has-split-features .opt-card-features-shell,
    .has-inline-commerce .opt-card-commerce,
    .has-horizontal-bottom .opt-card-commerce {
        grid-template-columns: 1fr;
    }

    .opt-card-large .opt-card-commerce,
    .opt-card-medium .opt-card-commerce,
    .opt-card-stack.opt-card-with-deco .opt-card-commerce,
    .opt-card-rbindlab .opt-card-commerce,
    .opt-card-wide-small .opt-card-commerce {
        position: static;
        width: auto;
        margin-top: auto;
    }

    .opt-card-large .opt-card-divider,
    .opt-card-medium .opt-card-divider,
    .opt-card-rbindlab .opt-card-divider {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 8px;
    }

    .opt-card-divider {
        margin-top: 8px;
    }
}

@media (max-width: 520px) {
    .optionals-section {
        padding: 24px 12px;
    }

    .opt-card {
        padding: 18px 16px;
        border-radius: 14px;
    }

    .opt-card-header {
        align-items: flex-start;
        gap: 12px;
    }

    .opt-card-icon,
    .opt-card-icon img,
    .opt-card-large .opt-card-icon,
    .opt-card-large .opt-card-icon img {
        width: 46px;
        height: 46px;
    }

    .opt-card-name {
        padding-right: 0;
    }

    .opt-badge {
        position: static;
        width: fit-content;
        margin: 0 0 10px auto;
    }

    .opt-price {
        font-size: 28px;
    }

    .opt-card-deco {
        display: none;
    }
}

.final-section {
    padding: 24px 5% 56px;
    background-color: #020607;
    /* Se houver uma leve transição de cor do fundo da página, mantemos a coerência */
}

.final-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Container de Benefícios */
.final-benefits-card {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: rgba(19, 26, 36, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 48px 0;
    backdrop-filter: blur(8px);
}

.final-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 24px;
}

.final-benefit-item:last-child {
    border-right: none;
}

.final-benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 200, 215, 0.05);
    border: 1px dashed rgba(0, 200, 215, 0.3);
    color: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.final-benefit-title {
    color: var(--text-pure);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.final-benefit-desc {
    color: var(--text-medium);
    font-size: 13px;
    line-height: 1.5;
}

/* Container de CTA Final */
.final-action-card {
    min-height: 230px;
    background:
        linear-gradient(    to bottom,    rgba(0, 200, 215, 0.22) 0%,    rgba(0, 200, 215, 0.10) 28%,    rgba(0, 200, 215, 0) 58%  ) top center / 100% 70% no-repeat;
    border: 2px solid var(--cyan);
    border-radius: 18px;
    padding: 26px 28px;
    display: grid;
    align-items: center;
    grid-template-columns: 160px minmax(0, 1fr) 315px;
    gap: 28px;
    box-shadow: 0 0 36px rgba(0, 216, 210, 0.1), inset 0 0 44px rgba(0, 216, 210, 0.035);
}

.final-action-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.headset-glow-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    background: transparent;
    border-radius: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    /* Anéis de brilho em CSS */
    box-shadow: none;
}

.headset-glow-wrapper::before,
.headset-glow-wrapper::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.headset-glow-wrapper::before {
    inset: -10px;
    border: 1px solid rgba(0, 229, 255, 0.3);
    animation: glow-pulse 3s ease-in-out infinite;
}

.headset-glow-wrapper::after {
    inset: 10px;
    border: 1px solid rgba(0, 229, 255, 0.6);
}

.headset-glow-wrapper svg {
    width: 38px;
    height: 38px;
    color: #00E5FF;
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.5));
}

.headset-glow-wrapper::before,
.headset-glow-wrapper::after {
    display: none;
}

.headset-glow-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transform: scale(1.08);
}

.final-action-center {
    min-width: 0;
}

.final-action-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-pure);
    margin-bottom: 12px;
    text-shadow: 0 0 16px rgba(255, 255, 255, 0.12);
}

.final-action-title .highlight {
    color: var(--cyan);
}

.final-action-desc {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.55;
}

.final-action-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    min-width: 0;
}

.final-cta-btn {
    min-height: 72px;
    padding: 0 24px 0 30px;
    background: linear-gradient(180deg, #16DDF0 0%, #09C5D9 100%);
    color: var(--bg-dark);
    font-weight: 800;
    font-size: 16px;
    border-radius: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    text-transform: uppercase;
    letter-spacing: 0;
    transition: filter 0.2s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: inset 0 -12px 22px rgba(0, 87, 96, 0.12);
    width: 100%;
}

.final-cta-btn:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.final-cta-btn:active {
    filter: brightness(0.95);
    transform: scale(0.99);
}

.final-cta-btn:focus-visible {
    outline: 2px solid #00E5FF;
    outline-offset: 4px;
}

.final-cta-support {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.4;
}

.final-cta-support svg {
    width: 18px;
    height: 18px;
    color: var(--cyan);
    flex-shrink: 0;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@media (prefers-reduced-motion: reduce) {
    .headset-glow-wrapper::before {
        animation: none;
    }

    .final-cta-btn {
        transition: none;
    }
}

/* Responsividade Finalização */
@media (max-width: 1023px) {
    .final-benefits-card {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 0;
    }
    
    .final-benefit-item {
        border-right: none;
        padding: 0 16px;
    }
    
    .final-action-card {
        grid-template-columns: minmax(0, 1fr) 300px;
        padding: 26px 24px;
        gap: 24px;
    }
    
    .final-action-left {
        display: none;
    }
    
    .final-action-right {
        width: 100%;
    }

    .final-action-center {
        max-width: 100%;
    }

    .final-action-title,
    .final-action-desc {
        white-space: normal;
    }
}

@media (max-width: 767px) {
    .final-benefits-card {
        grid-template-columns: 1fr;
        gap: 32px 0;
        padding: 32px 0;
    }
    
    .final-benefit-item {
        padding: 0 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 32px;
    }
    
    .final-benefit-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .final-section {
        padding: 40px 16px 48px;
    }

    .final-action-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px;
        gap: 24px;
        background:
            linear-gradient(180deg, rgba(0, 200, 215, 0.18) 0%, rgba(0, 200, 215, 0.08) 36%, rgba(0, 200, 215, 0) 72%) left top / 100% 100% no-repeat,
            linear-gradient(100deg, rgba(6, 38, 40, 0.92) 0%, rgba(2, 10, 12, 0.98) 48%, rgba(2, 8, 10, 0.98) 100%);
    }

    .final-action-left {
        display: flex;
    }

    .headset-glow-wrapper {
        width: 120px;
        height: 120px;
    }

    .headset-glow-wrapper::before {
        inset: -10px;
    }

    .headset-glow-wrapper::after {
        inset: 10px;
    }

    .headset-glow-wrapper svg {
        width: 38px;
        height: 38px;
    }

    .final-action-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .final-action-right {
        width: 100%;
        align-items: center;
        gap: 18px;
    }
    
    .final-cta-btn {
        width: 100%;
        justify-content: center;
        min-height: 60px;
    }

    .final-cta-support {
        justify-content: center;
        text-align: center;
    }
}
