:root {
    --bg-dark: #070b14;
    --bg-dark-2: #0b1120;
    --bg-card: #111827;
    --bg-card-soft: #172033;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --accent-soft: rgba(37, 99, 235, 0.14);
    --success: #10b981;
    --danger: #ef4444;
    --border: rgba(148, 163, 184, 0.18);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Montserrat', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.site-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 11, 20, 0.82);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-navbar.scrolled {
    background: rgba(7, 11, 20, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 86px;
    gap: 20px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-nav {
    height: 62px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-links a,
.nav-link-button {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    background: transparent;
    border: none;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-link-button:hover {
    color: var(--text-light);
}

.btn-login-nav {
    border: 1px solid var(--accent);
    color: #fff;
    background: var(--accent);
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-login-nav:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.nav-mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-size: 24px;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 90px;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 10%, rgba(37, 99, 235, 0.18), transparent 32%),
        linear-gradient(135deg, #070b14 0%, #0b1120 48%, #0f172a 100%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.7;
    pointer-events: none;
}

.hero-glow-one {
    width: 420px;
    height: 420px;
    background: rgba(37, 99, 235, 0.22);
    top: 12%;
    right: -120px;
}

.hero-glow-two {
    width: 260px;
    height: 260px;
    background: rgba(16, 185, 129, 0.11);
    left: -120px;
    bottom: 8%;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.eyebrow,
.section-title span,
.checkout-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #93c5fd;
    background: var(--accent-soft);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.055em;
    margin: 24px 0;
    font-weight: 900;
}

.hero-copy p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 34px 0 24px;
}

.btn-primary-site,
.btn-secondary-site {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 22px;
    border-radius: 10px;
    border: none;
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary-site {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.32);
}

.btn-primary-site:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.42);
}

.btn-secondary-site {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid var(--border);
}

.btn-secondary-site:hover {
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

.pulse-btn {
    animation: pulse 2.2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.52); }
    70% { box-shadow: 0 0 0 14px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-trust span {
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.platform-preview {
    perspective: 900px;
}

.preview-window {
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.26);
    border-radius: 24px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transform: rotateY(-4deg) rotateX(3deg);
}

.preview-topbar {
    height: 52px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid var(--border);
}

.preview-topbar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #64748b;
}

.preview-topbar span:first-child { background: #ef4444; }
.preview-topbar span:nth-child(2) { background: #f59e0b; }
.preview-topbar span:nth-child(3) { background: #10b981; }
.preview-topbar strong {
    margin-left: 10px;
    color: #dbeafe;
    font-size: 13px;
}

.preview-body {
    padding: 24px;
}

.preview-main-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.24), rgba(16, 185, 129, 0.08));
    border: 1px solid rgba(37, 99, 235, 0.28);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 18px;
}

.preview-main-card small {
    color: #93c5fd;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 11px;
}

.preview-main-card h3 {
    margin: 6px 0 16px;
    font-size: 23px;
}

.progress-line {
    height: 11px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-line span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent), var(--success));
}

.preview-main-card p {
    color: #dbeafe;
    font-size: 13px;
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.preview-card {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
}

.preview-card strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.preview-card span {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
}

.trust-strip {
    background: rgba(17, 24, 39, 0.72);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
}

.trust-content {
    text-align: center;
}

.trust-content p {
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.12em;
    font-size: 11px;
    margin-bottom: 10px;
}

.trust-content div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    color: #cbd5e1;
    font-weight: 900;
}

.features-section,
.courses-section,
.radar-section,
.faq-section,
.cargos-section {
    padding: 92px 0;
}

.courses-section,
.faq-section {
    background: #080d1a;
}

.section-title {
    max-width: 760px;
    margin: 0 auto 54px;
    text-align: center;
}

.section-title.compact {
    margin-bottom: 32px;
}

.section-title h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin: 16px 0;
    font-weight: 900;
}

.section-title p {
    color: var(--text-muted);
    font-size: 17px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.feature-card,
.price-card,
.radar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.feature-card:hover,
.radar-card:hover,
.price-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.55);
    background: var(--bg-card-soft);
}

.feature-card h3 {
    font-size: 18px;
    margin: 18px 0 10px;
}

.feature-card p,
.radar-card p {
    color: var(--text-muted);
    font-size: 14px;
}

.css-icon {
    width: 46px;
    height: 46px;
    position: relative;
    display: inline-block;
}

.icon-calendar {
    border: 3px solid var(--accent);
    border-top-width: 10px;
    border-radius: 8px;
}
.icon-calendar::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 7px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 2px;
    box-shadow: 12px 0 0 var(--accent), 24px 0 0 var(--accent), 0 12px 0 var(--accent), 12px 12px 0 var(--accent);
}

.icon-target {
    border: 3px solid var(--accent);
    border-radius: 50%;
}
.icon-target::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 3px solid var(--accent);
    border-radius: 50%;
}
.icon-target::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.icon-chat {
    border: 3px solid var(--accent);
    border-radius: 9px;
}
.icon-chat::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 9px;
    width: 13px;
    height: 13px;
    border-right: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
    background: var(--bg-card);
    transform: rotate(45deg);
}

.icon-shield {
    width: 42px;
    height: 48px;
    border: 3px solid var(--accent);
    border-radius: 16px 16px 22px 22px;
    clip-path: polygon(50% 0%, 92% 16%, 84% 76%, 50% 100%, 16% 76%, 8% 16%);
}
.icon-shield::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 48%;
    width: 10px;
    height: 20px;
    border-right: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
    transform: translate(-50%, -50%) rotate(40deg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    max-width: 920px;
    margin: 0 auto;
}

.price-card {
    position: relative;
    padding: 36px;
    display: flex;
    flex-direction: column;
}

.price-card-featured {
    border-color: rgba(37, 99, 235, 0.68);
    background: linear-gradient(180deg, #121c31, #080d1a);
}

.price-badge {
    position: absolute;
    top: -14px;
    left: 34px;
    background: var(--accent);
    color: #fff;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.price-badge.muted {
    background: #334155;
}

.price-card h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 6px;
}

.price-subtitle {
    color: #93c5fd;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 26px;
}

.price-box {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 28px;
}

.currency {
    color: var(--text-muted);
    font-size: 20px;
    font-weight: 800;
}

.amount {
    font-size: 54px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.06em;
}

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

.muted-price {
    opacity: 0.72;
}

.features-list {
    list-style: none;
    margin: 0 0 30px;
    flex: 1;
}

.features-list li {
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 13px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.features-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: 900;
}

.cargos-section {
    padding-top: 70px;
}

.cargos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.cargos-grid span {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.045);
    color: #dbeafe;
    border-radius: 999px;
    padding: 11px 16px;
    font-size: 13px;
    font-weight: 800;
}

.radar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.radar-card small {
    color: #93c5fd;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.08em;
    font-size: 11px;
}

.radar-card h3 {
    margin: 12px 0 8px;
    font-size: 22px;
}

.faq-container {
    max-width: 820px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 900;
}

.faq-question::after {
    content: '+';
    color: var(--accent);
    font-size: 24px;
    transition: transform 0.2s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.faq-answer p {
    color: var(--text-muted);
    padding: 0 20px 20px;
}

.site-footer {
    background: #050812;
    border-top: 1px solid var(--border);
    padding: 58px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr;
    gap: 40px;
}

.footer-logo {
    height: 56px;
    filter: brightness(0) invert(1);
    margin-bottom: 18px;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 420px;
}

.footer-links h4 {
    margin-bottom: 16px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.08em;
}

.footer-links a,
.footer-links button,
.footer-bottom a {
    display: block;
    background: transparent;
    border: none;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
    text-align: left;
}

.footer-links a:hover,
.footer-links button:hover,
.footer-bottom a:hover {
    color: var(--text-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: #64748b;
    border-top: 1px solid var(--border);
    padding-top: 22px;
    margin-top: 42px;
    font-size: 13px;
}

.footer-bottom div {
    display: flex;
    gap: 18px;
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: #25d366;
    color: #fff;
    font-weight: 900;
    border-radius: 999px;
    padding: 12px 18px;
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.28);
}

.wpp-dot {
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-radius: 50% 50% 50% 4px;
    display: inline-block;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 18, 0.82);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 24px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: min(100%, 480px);
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    color: var(--text-dark);
    border-radius: 22px;
    padding: 34px;
    box-shadow: var(--shadow);
}

.checkout-modal-content {
    background: #0f172a;
    color: var(--text-light);
    border: 1px solid rgba(37, 99, 235, 0.45);
}

.login-modal-content,
.small-modal-content {
    text-align: left;
}

.login-modal-content h2,
.small-modal-content h2,
.checkout-modal-content h2,
.terms-modal-content h2 {
    font-size: 26px;
    margin-bottom: 8px;
    font-weight: 900;
}

.login-modal-content p,
.small-modal-content p,
.checkout-modal-content p {
    color: #64748b;
    margin-bottom: 20px;
}

.checkout-modal-content p {
    color: var(--text-muted);
}

.logo-login-modal {
    height: 68px;
    display: block;
    margin: 0 auto 18px;
}

.close-modal {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(15, 23, 42, 0.08);
    color: inherit;
    font-size: 24px;
    line-height: 1;
}

.checkout-modal-content .close-modal {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.input-group {
    margin-bottom: 16px;
}

.input-group label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 900;
    color: inherit;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 13px 14px;
    outline: none;
    font-size: 14px;
    color: var(--text-dark);
    background: #fff;
}

.checkout-modal-content .input-group input,
.checkout-modal-content .input-group select {
    color: var(--text-light);
    background: #0b1120;
    border-color: rgba(148, 163, 184, 0.22);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.input-uppercase {
    text-transform: uppercase;
}

.modal-link-row {
    text-align: center;
    margin: 14px 0 20px;
}

.modal-link-row a {
    color: #334155;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.first-access-box {
    border-top: 1px solid #e5e7eb;
    padding-top: 18px;
    text-align: center;
}

.first-access-box strong {
    display: block;
    color: #475569;
    font-size: 13px;
    margin-bottom: 10px;
}

.error-message {
    min-height: 20px;
    margin-top: 12px;
    color: var(--danger);
    font-size: 13px;
    font-weight: 800;
}

.error-message.centered {
    text-align: center;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.modal-actions .btn-primary-site,
.modal-actions .btn-secondary-site {
    min-width: 130px;
}

.terms-modal-content {
    width: min(100%, 720px);
}

.termos-texto {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px;
    max-height: 52vh;
    overflow-y: auto;
}

.termos-texto p {
    color: #334155;
    margin-bottom: 12px;
    font-size: 14px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@media (max-width: 980px) {
    .hero-grid,
    .features-grid,
    .pricing-grid,
    .radar-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 46px;
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, 1120px);
    }

    .nav-content {
        min-height: 74px;
    }

    .logo-nav {
        height: 52px;
    }

    .nav-mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        position: absolute;
        top: 74px;
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(7, 11, 20, 0.98);
        border: 1px solid var(--border);
        border-radius: 18px;
        overflow: hidden;
        padding: 10px;
    }

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

    .nav-links a,
    .nav-link-button,
    .btn-login-nav {
        width: 100%;
        text-align: left;
        justify-content: flex-start;
        padding: 14px;
        border-radius: 10px;
    }

    .btn-login-nav {
        margin-top: 8px;
        text-align: center;
        justify-content: center;
    }

    .hero-section {
        padding: 118px 0 70px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn-primary-site,
    .hero-actions .btn-secondary-site {
        width: 100%;
    }

    .preview-window {
        transform: none;
    }

    .features-grid,
    .preview-grid {
        grid-template-columns: 1fr;
    }

    .price-card,
    .feature-card,
    .radar-card,
    .modal-content {
        padding: 24px;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        font-size: 0;
        padding: 13px;
    }

    .wpp-dot {
        margin: 0;
    }

    .footer-bottom,
    .footer-bottom div,
    .modal-actions,
    .two-columns {
        flex-direction: column;
        display: flex;
        align-items: stretch;
    }

    .modal-actions .btn-primary-site,
    .modal-actions .btn-secondary-site {
        width: 100%;
    }
}

/* ==========================================================================
   AJUSTES V2 — RADAR, GARANTIA E CARRINHO
   ========================================================================== */
.radar-link {
    display: inline-flex;
    margin-top: 16px;
    color: #fff;
    background: var(--accent);
    text-decoration: none;
    font-weight: 900;
    font-size: 13px;
    border-radius: 999px;
    padding: 10px 14px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.radar-link:hover {
    transform: translateY(-2px);
    background: var(--accent-hover);
}

.cart-modal-content {
    background: #0f172a;
    color: var(--text-light);
    border: 1px solid rgba(37, 99, 235, 0.45);
}

.cart-modal-content h2 {
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 900;
}

.cart-resumo {
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 16px;
    padding: 18px;
    background: rgba(15, 23, 42, 0.65);
    color: var(--text-muted);
    margin: 18px 0 22px;
}

.cart-line {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.cart-line:last-of-type {
    border-bottom: none;
}

.cart-line span {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cart-line strong {
    color: var(--text-light);
    text-align: right;
    font-size: 13px;
}

.cart-note {
    margin: 14px 0 0;
    color: var(--text-muted);
    font-size: 13px;
}

.cart-actions {
    justify-content: flex-end;
}

.cart-actions a {
    text-decoration: none;
}

.footer-bottom span:last-child {
    text-align: right;
}

@media (max-width: 640px) {
    .cart-line {
        flex-direction: column;
        gap: 4px;
    }

    .cart-line strong,
    .footer-bottom span:last-child {
        text-align: left;
    }
}

/* ==========================================================================
   HOTFIX V2.1 — BOTÕES EM MODAIS CLAROS
   Corrige botões secundários que ficavam claros demais em fundo branco.
   ========================================================================== */
.login-modal-content .btn-secondary-site,
.small-modal-content .btn-secondary-site,
.terms-modal-content .btn-secondary-site {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #cbd5e1;
    box-shadow: none;
}

.login-modal-content .btn-secondary-site:hover,
.small-modal-content .btn-secondary-site:hover,
.terms-modal-content .btn-secondary-site:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #0f172a;
    transform: translateY(-1px);
}

.login-modal-content .btn-secondary-site:disabled,
.small-modal-content .btn-secondary-site:disabled,
.terms-modal-content .btn-secondary-site:disabled {
    opacity: 0.55;
    color: #334155;
    background: #f8fafc;
    border-color: #cbd5e1;
    cursor: not-allowed;
}

.login-modal-content .btn-primary-site:disabled,
.small-modal-content .btn-primary-site:disabled,
.terms-modal-content .btn-primary-site:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
