/* ============================================
   UNIVERSIDADE MAESTRIA EM VENDAS
   Visual: Dominante / Brutalista / Elite Ops
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;600;800&family=Share+Tech+Mono&display=swap');

:root {
    --bg-dark: #030508;
    --bg-panel: #0C0E14;
    --bg-pureblack: #000000;

    --red-war: #D8000C;
    --red-hover: #FF1111;
    --gold-signal: #FFC107;
    --gold-dark: #b8860b;

    --text-main: #F3F4F6;
    --text-muted: #b9c1d1;
    --text-dark: #05050A;

    --border-strong: #333333;
    --border-subtle: #1C1E26;

    --font-hero: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-sys: 'Share Tech Mono', monospace;

    --pad-sec: 120px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ---------- URGENCY ALERT ---------- */
.urgency-bar {
    background: var(--red-war);
    color: #fff;
    font-family: var(--font-sys);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 20px;
    border-bottom: 2px solid #000;
    position: relative;
    z-index: 100;
}

/* ---------- HERO (SALA DE COMANDO) ---------- */
.hero {
    position: relative;
    height: calc(100vh - 42px);
    max-height: calc(100vh - 42px);
    display: flex;
    align-items: center;
    padding: 20px 0;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.badge-sys {
    display: inline-block;
    background: var(--bg-pureblack);
    border-left: 4px solid var(--gold-signal);
    color: var(--gold-signal);
    font-family: var(--font-sys);
    font-size: 0.75rem;
    padding: 5px 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    animation: fadeIn 1s ease both;
}

.hero h1 {
    font-family: var(--font-hero);
    font-size: clamp(1.8rem, 3.8vw, 3.2rem);
    line-height: 1.05;
    text-transform: uppercase;
    color: #fff;
    max-width: 800px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    animation: slideRight 0.8s 0.2s ease both;
}

.hero h1 .highlight {
    color: var(--red-war);
    display: block;
}

.hero__sub {
    font-size: clamp(0.85rem, 1.3vw, 1rem);
    font-weight: 400;
    color: var(--text-muted);
    max-width: 580px;
    margin-bottom: 16px;
    line-height: 1.5;
    border-left: 2px solid var(--border-strong);
    padding-left: 14px;
    animation: slideRight 0.8s 0.4s ease both;
}

.hero__sub strong {
    color: var(--text-main);
    font-weight: 800;
}

.cta-wrap {
    animation: slideRight 0.8s 0.6s ease both;
}

/* ---------- BTN OPERACIONAL ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-signal);
    color: var(--text-dark);
    font-family: var(--font-hero);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 16px 36px;
    border: none;
    border-right: 5px solid var(--gold-dark);
    border-bottom: 5px solid var(--gold-dark);
    cursor: pointer;
    transition: all 0.1s ease;
    position: relative;
    overflow: hidden;
    animation: pulseGlow 2.5s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }

    50% {
        box-shadow: 0 0 30px 8px rgba(255, 193, 7, 0.35);
    }
}

.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-25deg);
    animation: btnShine 3.5s ease infinite;
}

@keyframes btnShine {
    0% {
        left: -60%;
    }

    30% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

.btn:hover {
    background: var(--red-war);
    color: #fff;
    border-right-color: #8B0000;
    border-bottom-color: #8B0000;
    box-shadow: 0 0 40px 10px rgba(216, 0, 12, 0.3);
}

.btn:active {
    transform: translate(3px, 3px);
    border-width: 3px;
}

.btn--full {
    width: 100%;
    max-width: 600px;
}

/* ---------- METRICS HERO ---------- */
.hero-metrics {
    display: flex;
    gap: 28px;
    margin-top: 20px;
    font-family: var(--font-sys);
    animation: fadeIn 1s 0.8s ease both;
}

.h-metric {
    border-top: 1px solid var(--border-strong);
    padding-top: 10px;
}

.h-metric span {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-signal);
    line-height: 1;
    margin-bottom: 3px;
}

.h-metric p {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ---------- SECTIONS BASE ---------- */
section {
    padding: var(--pad-sec) 0;
    border-top: 1px solid var(--border-subtle);
}

.sec-title {
    font-family: var(--font-hero);
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 24px;
}

.sec-title .red {
    color: var(--red-war);
}

.sys-label {
    display: inline-block;
    font-family: var(--font-sys);
    font-size: 0.8rem;
    color: var(--text-muted);
    border: 1px solid var(--border-strong);
    padding: 6px 12px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* ---------- DORES (BRUTAL LIST) ---------- */
.pain-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
    border-top: 2px solid var(--border-strong);
}

.pain-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: start;
    gap: 24px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-strong);
    transition: background 0.3s;
}

.pain-item:hover {
    background: var(--bg-panel);
}

.pain-num {
    font-family: var(--font-hero);
    font-size: 3rem;
    color: var(--text-muted);
    line-height: 0.8;
    transition: color 0.3s;
}

.pain-item:hover .pain-num {
    color: var(--red-war);
}

.pain-text h3 {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.pain-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.pain-manifesto {
    margin-top: 60px;
    background: var(--bg-pureblack);
    border-left: 8px solid var(--red-war);
    padding: 40px;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.pain-manifesto strong {
    background: var(--red-war);
    color: #fff;
    padding: 0 4px;
}

/* ---------- VILÃƒO (ENEMY) ---------- */
.enemy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.enemy-copy p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.enemy-copy strong {
    color: #fff;
}

/* ---------- EPIPHANY (STORY) ---------- */
.dogma-box {
    background: var(--bg-panel);
    border: 1px solid var(--border-strong);
    padding: 48px;
    text-align: center;
    margin-top: 60px;
}

.dogma-box h3 {
    font-family: var(--font-hero);
    font-size: 2rem;
    color: var(--gold-signal);
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.dogma-box p {
    font-size: 1.25rem;
    color: #fff;
    font-weight: 600;
}

/* ---------- STACK (ARSENAL) ---------- */
.arsenal-container {
    max-width: 900px;
    border: 2px solid var(--border-strong);
    background: var(--bg-pureblack);
    margin-top: 40px;
}

.arsenal-header {
    background: var(--border-strong);
    padding: 16px 24px;
    font-family: var(--font-sys);
    font-size: 0.9rem;
    color: #fff;
    text-transform: uppercase;
}

.arsenal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.arsenal-info h4 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold-signal);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.arsenal-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.arsenal-val {
    font-family: var(--font-sys);
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.arsenal-total {
    padding: 32px 24px;
    text-align: right;
    font-family: var(--font-sys);
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* ---------- PROVA SOCIAL ---------- */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.proof-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-subtle);
    padding: 40px;
}

.proof-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 24px;
    border-left: 2px solid var(--border-strong);
    padding-left: 16px;
}

.proof-author {
    font-family: var(--font-sys);
    font-size: 0.9rem;
    color: var(--gold-signal);
    text-transform: uppercase;
}

.proof-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---------- OFFER ---------- */
.offer-box {
    background: var(--bg-pureblack);
    border: 4px solid var(--border-strong);
    padding: 80px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.offer-label {
    font-family: var(--font-sys);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.offer-price {
    font-family: var(--font-hero);
    font-size: clamp(4rem, 10vw, 8rem);
    color: var(--gold-signal);
    line-height: 1;
    margin-bottom: 8px;
}

.offer-sub {
    font-family: var(--font-sys);
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1.4rem;
    margin-bottom: 40px;
}

.guarantee {
    margin-top: 40px;
    background: var(--bg-panel);
    border-left: 4px solid #10B981;
    padding: 24px;
    text-align: left;
}

.guarantee h4 {
    color: #10B981;
    font-family: var(--font-body);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.guarantee p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ---------- FAQ ---------- */
.faq-grid {
    max-width: 800px;
    margin: 40px 0 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.1rem;
    text-align: left;
    padding: 24px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-q:hover {
    color: var(--gold-signal);
}

.faq-icon {
    font-family: var(--font-sys);
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: transform 0.2s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--gold-signal);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-a {
    max-height: 400px;
}

.faq-a p {
    padding-bottom: 24px;
    color: var(--text-muted);
}

/* ---------- FOOTER ---------- */
footer {
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid var(--border-subtle);
    font-family: var(--font-sys);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---------- ANIMATIONS ---------- */
@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ---------- MODAL DE ENTRADA ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-pureblack);
    border: 2px solid var(--border-strong);
    border-top: 4px solid var(--red-war);
    width: 100%;
    max-width: 500px;
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 0 50px rgba(216, 0, 12, 0.15);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 16px;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    font-family: var(--font-sys);
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--red-war);
}

.optin-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-sys);
    font-size: 0.85rem;
    color: var(--text-main);
    letter-spacing: 1px;
}

.form-group input {
    background: var(--bg-panel);
    border: 1px solid var(--border-strong);
    padding: 16px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: var(--gold-signal);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
    .enemy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .offer-box {
        padding: 40px 20px;
        border-width: 2px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 600px) {
    :root {
        --pad-sec: 60px;
    }

    /* === HERO MOBILE: sem sobreposiÃ§Ã£o === */
    .hero {
        height: auto;
        max-height: none;
        min-height: 0;
        padding: 24px 0 20px;
    }

    .hero__overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.75) 100%);
    }

    .badge-sys {
        font-size: 0.6rem;
        padding: 4px 8px;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }

    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.1;
        margin-bottom: 10px;
        max-width: 100%;
    }

    .hero__sub {
        font-size: 0.82rem;
        margin-bottom: 14px;
        line-height: 1.4;
        padding-left: 10px;
    }

    .btn {
        font-size: 0.95rem;
        padding: 14px 16px;
        letter-spacing: 1px;
        border-right-width: 4px;
        border-bottom-width: 4px;
    }

    .hero-metrics {
        flex-direction: column;
        gap: 12px;
        margin-top: 16px;
    }

    .h-metric {
        padding-top: 8px;
    }

    .h-metric span {
        font-size: 1.1rem;
    }

    .h-metric p {
        font-size: 0.65rem;
    }

    /* === DEMAIS SEÃ‡Ã•ES MOBILE === */
    .sec-title {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }

    .pain-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 32px 0;
    }

    .arsenal-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .offer-box {
        padding: 40px 16px;
        border-width: 2px;
    }

    .offer-price {
        font-size: 3.5rem;
    }

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

    .enemy-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}






/* GLOBAL HEADLINE SPACING FIX */
h1, h2, h3, .sec-title, .offer-headline, .pain-text h3 { letter-spacing: 3px !important; }


/* --- RESPONSIVO DO POPUP/MODAL --- */
@media (max-width: 600px) {
    .modal-content {
        padding: 24px 16px !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
    }
    .modal-overlay {
        padding: 10px !important;
        align-items: flex-start !important;
        padding-top: 5vh !important;
    }
    .modal-content .sec-title {
        font-size: 1.5rem !important;
        margin-top: 15px !important;
    }
    .modal-content p {
        font-size: 0.9rem !important;
        margin-bottom: 15px !important;
    }
    .form-group input {
        padding: 12px !important;
        font-size: 0.95rem !important;
    }
    .modal-close {
        font-size: 1.8rem !important;
    }
    .modal-content .btn,
    .modal-content .btn--full {
        font-size: 1rem !important;
        padding: 14px 20px !important;
    }
    .modal-header {
        padding-bottom: 12px !important;
    }
    .modal-header .sys-label {
        font-size: 0.65rem !important;
        padding: 3px 8px !important;
    }
}

@media (max-width: 380px) {
    .modal-content {
        padding: 18px 12px !important;
    }
    .modal-content .sec-title {
        font-size: 1.25rem !important;
    }
    .modal-content p {
        font-size: 0.85rem !important;
    }
    .form-group label {
        font-size: 0.75rem !important;
    }
    .form-group input {
        padding: 10px !important;
        font-size: 0.9rem !important;
    }
    .modal-content .btn,
    .modal-content .btn--full {
        font-size: 0.9rem !important;
        padding: 12px 16px !important;
    }
}

/* Landscape orientation fix */
@media (max-height: 500px) and (orientation: landscape) {
    .modal-overlay {
        align-items: flex-start !important;
        padding: 10px !important;
    }
    .modal-content {
        max-height: 90vh !important;
        overflow-y: auto !important;
        padding: 16px !important;
    }
    .modal-content .sec-title {
        font-size: 1.3rem !important;
        margin-top: 10px !important;
    }
    .form-group {
        gap: 4px !important;
    }
    .form-group input {
        padding: 8px 12px !important;
    }
}
