/*
 * [FIX] @import de fontes externas REMOVIDOS daqui.
 * Typekit (agn7mvf) e Inter agora são carregados via <link> no HTML com preconnect,
 * o que evita que o CSS bloqueie o render enquanto espera por esses recursos.
 *
 * [FIX] @import da fonte local OTF (Wosker-Demo) substituído por @font-face com
 * font-display: swap para evitar bloqueio de renderização de texto (FOIT).
 */

@font-face {
    font-family: 'Wosker Demo';
    src: url('../assets/Fonts/Wosker-Demo.otf') format('opentype');
    font-display: swap;
    font-weight: normal;
    font-style: normal;
}


/* ============================================== */

.sobreposicao {
    position: fixed;
    /* Fixa sobre toda a tela */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* Garante que fique acima de tudo, inclusive do header e WhatsApp */

    /* Flexbox para centralizar o card na tela */
    display: flex;
    align-items: center;
    justify-content: center;

    /* O "segredo" do Glassmorphism Opaco */
    background: rgba(30, 43, 56, 0.4);
    /* Cor base escura semi-transparente */
    backdrop-filter: blur(25px) saturate(180%);
    /* Desfoque intenso para esconder o fundo */
    -webkit-backdrop-filter: blur(25px) saturate(180%);
}

.container-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.embreve-card {
    width: 90%;
    /* Mobile-first: quase toda a largura */
    max-width: 450px;
    /* Limite para tablets e desktops futuros */
    padding: 40px 20px;
    border-radius: 30px;
    text-align: center;

    /* Glassmorphism no Card */
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.embreve-card h1 {
    font-family: var(--font-title);
    color: var(--white);
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.status-text {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.4;
    opacity: 0.9;
}

/* ==========================================================================
   REDES SOCIAIS (FLEXBOX)
   ========================================================================== */
.redes-sociais {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.social-label {
    color: var(--accent);
    font-family: var(--font-alt);
    font-size: 1.1rem;
}

.social-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    /* Mobile: empilha badge e link */
    align-items: center;
    gap: 10px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.social-card:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.1);
}

.badge {
    background: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
    flex-shrink: 0;
}

.link-instagram a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.link-instagram a:hover {
    color: var(--accent);
}







/* ============================================== */

:root {
    --fire-orange: #ff4d00;
    --fire-glow: rgba(255, 77, 0, 0.4);
    --fire-glow-intense: rgba(255, 77, 0, 0.7);
    --glass-bg: rgba(10, 10, 10, 0.6);
    --black: #0a0a0a;
    --white: #ffffff;

    /* [FIX] --color1 tinha 6 declarações duplicadas; mantida apenas a final usada */
    --color1: #000;

    --font-1: 'latino-gothic-variable';
    --font-2: 'antarctican-mono';
    --font-3: 'tt-commons-pro';
    --font-4: 'Wosker Demo';
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: rgba(0, 0, 0, 1);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.4;
}

header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: rgba(0, 0, 0, 0.233);
    position: fixed;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.official-logo {
    height: 100px;
    width: auto;
}

.footer-registration {
    width: 100%;
    padding: 30px 5%;
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    background: #000;
    text-transform: uppercase;
}

.logo {
    font-weight: 900;
    font-size: clamp(0.9rem, 4vw, 1.2rem);
    letter-spacing: -1px;
    text-transform: uppercase;
}

.logo span {
    color: var(--fire-orange);
}

.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 5% 180px 5%;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle at center, var(--fire-glow) 0%, rgb(0, 0, 0) 85%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/DSC_2375.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 1100px;
    width: 100%;
}

.badge {
    background: rgba(255, 77, 0, 0.15);
    border: 1px solid var(--fire-orange);
    color: var(--fire-orange);
    padding: 6px 14px;
    font-size: clamp(0.6rem, 2.5vw, 0.7rem);
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    display: inline-block;
    text-transform: uppercase;
}

h1 {
    font-size: 2.3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--fire-orange);
    text-shadow:
        0 0 5px #ff4d00,
        0 0 5px #ff4d00,
        0 0 80px #ff4d00,
        0 0 60px #ff4b00,
        0 0 5px #ff0000;
}

h1 span {
    color: var(--fire-orange);
}

.subtext {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    color: #ccc;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

h4 {
    font-size: clamp(1.2rem, 8vw, 1.5rem);
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
    margin: 1rem 0;
}

.video-apresentacao {
    width: 100% !important;
}

.video-apresentacao iframe {
    width: 1100px !important;
    height: 450px !important;
    border-radius: 10px !important;
    margin: 0 0 2rem 0;
}

.btn-main {
    margin: 1.5rem 0 0 0;
    background: var(--fire-orange);
    color: white;
    padding: clamp(16px, 4vw, 22px) clamp(30px, 8vw, 55px);
    font-size: 1rem;
    font-weight: 900;
    border-radius: 7px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    box-shadow: 0 15px 50px var(--fire-glow-intense);
}

.btn-main:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 80px var(--fire-orange);
}

.ticker-container {
    position: absolute;
    bottom: 80px;
    width: 100%;
    overflow: hidden;
    transform: rotate(-3deg);
    z-index: 1;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 77, 0, 0.5);
    border-bottom: 1px solid rgba(255, 77, 0, 0.5);
    box-shadow: 0 0 25px rgba(255, 77, 0, 0.2);
}

.ticker-wrap {
    padding: clamp(12px, 3vw, 20px) 0;
    display: flex;
    white-space: nowrap;
}

.ticker-move {
    display: inline-block;
    white-space: nowrap;
    animation: tickerPingPong 90s ease-in-out infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 2rem;
    font-size: clamp(1.1rem, 5vw, 1.8rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.ticker-item span {
    color: var(--fire-orange);
    text-shadow: 0 0 15px var(--fire-glow);
}

.ticker-container.reverse {
    bottom: 15px;
    transform: rotate(2deg);
    z-index: 1;
}

.ticker-container.reverse .ticker-move {
    animation: tickerPingPongReverse 90s ease-in-out infinite;
}

@keyframes tickerPingPong {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-40%);
    }
}

@keyframes tickerPingPongReverse {

    0%,
    100% {
        transform: translateX(-40%);
    }

    50% {
        transform: translateX(0);
    }
}

.numeros-convencimento {
    background-color: rgba(0, 0, 0, 1);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.header-numeros h2 {
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 2.3rem;
    text-transform: uppercase;
}

.header-numeros h2 cite {
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #ff4d00;
    text-shadow:
        0 0 5px #ff4d00,
        0 0 5px #ff4d00,
        0 0 80px #ff4d00,
        0 0 60px #ff4b00,
        0 0 5px #ff0000;
}

.header-numeros p {
    color: #e2d8d8;
    max-width: 650px;
    margin: 0 auto 60px;
    font-size: 1.5rem;
}

.numeros-convencimento .cards {
    display: flex;
    align-items: center;
    justify-content: center;
}

.numeros-convencimento .cards .card {
    background-color: #141414 !important;
    border: 1px solid #222 !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    transition: all 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 20px;
    color: white !important;
    box-shadow: 0px 0px 15px 7px rgba(255, 77, 0, 0.80) !important;
    margin: 0 1rem;
    padding: 3rem 0 3rem 0 !important;
}

.numeros-convencimento .cards .card:hover {
    transform: translateY(-12px);
}

.numeros-convencimento .cards .card i {
    font-size: 2.5rem;
    color: #ff4d00;
    margin-bottom: 20px;
}

.title-card {
    color: #ff4d00;
    font-size: 2.4rem !important;
    font-weight: 900 !important;
    margin: 1px 1px !important;
}

.subtitle-card {
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 !important;
    padding: 0 !important;
}

.subtitle-card cite {
    color: #888 !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
    padding: 0 !important;
    text-transform: lowercase;
}

.text-card {
    color: #888 !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

.convencimento-2 {
    margin-top: 100px !important;
    display: flex;
    align-items: center;
}

/* [FIX] Estilos do <video> de preletores (substitui .img-preletor img para GIFs) */
.img-convencimento video,
.img-preletor video {
    width: 100%;
    height: auto;
    display: block;
}

.img-convencimento video {
    border-radius: 20px;
    border: 1px solid #333;
    filter: brightness(0.8) contrast(1.1);
}

.img-preletor video {
    height: 420px;
    object-fit: cover;
    filter: brightness(0.8);
    transition: 0.4s;
}

.card-preletor:hover .img-preletor video {
    filter: brightness(1);
}

/* Mantido para fallback de browsers que não suportam video */
.img-convencimento img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid #333;
    filter: brightness(0.8) contrast(1.1);
}

.texto-convencimento {
    padding-left: 50px !important;
}

.texto-convencimento span:first-child {
    color: #ff4d00;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.texto-convencimento span:first-child::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #ff4d00;
    border-radius: 50%;
    display: inline-block;
}

.texto-convencimento p cite {
    color: #ff4d00;
}

.head-dilema {
    font-size: 3rem !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    margin: 25px 0 !important;
    text-transform: uppercase;
}

.head-dilema cite {
    color: #ff4d00;
    text-shadow:
        0 0 5px #ff4d00,
        0 0 5px #ff4d00,
        0 0 80px #ff4d00,
        0 0 60px #ff4b00,
        0 0 5px #ff0000;
}

.texto-convencimento p {
    color: #b0b0b0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.texto-convencimento .btn-cta {
    margin: 2rem 0 0 0;
}

.momento-decisivo {
    padding: 8rem 0 5rem 0;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 20%, rgba(255, 77, 0, 1) 35%, rgba(255, 119, 0, 1) 100%);
}

.momento-decisivo span:first-child {
    color: #ff4d00;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.momento-decisivo span:first-child::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #ff4d00;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #ff4d00;
}

.head-decisao {
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    text-transform: uppercase;
    margin: 0 0 25px 0 !important;
}

.head-decisao span {
    color: #ff4d00;
}

.momento-decisao {
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 30px;
    max-width: 90%;
}

.momento-decisao strong {
    color: #ffffff;
    font-weight: 800;
}

.card-decisao {
    background-color: rgba(0, 0, 0, 1);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    box-shadow: 0 15px 35px rgba(255, 77, 0, 0.2);
}

.card-decisao ul {
    margin: 0;
}

.card-decisao ul li {
    list-style: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.card-decisao ul li:last-child {
    margin-bottom: 0;
}

.card-decisao ul li::before {
    content: '→';
    margin-right: 15px;
    font-size: 1.3rem;
    font-weight: 900;
}

.texto-explicativo {
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.8;
}

.texto-explicativo strong,
.texto-explicativo .highlight {
    color: #ff4d00;
    font-weight: 700;
}

.momento-decisivo div.btn-cta {
    margin: 5rem 0 0 0;
}

.momento-decisivo div.btn-cta a {
    background-color: rgb(0, 0, 0);
}

.momento-decisivo div.btn-cta a:hover {
    box-shadow: 0px 0px 21px 13px rgba(0, 0, 0, .5);
}

.faq {
    padding: 60px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq .btn-cta {
    margin: 3rem 0 3rem 0;
}

.faq span {
    color: #ff3131;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-shadow:
        0 0 5px #ff4d00,
        0 0 5px #ff4d00,
        0 0 80px #ff4d00,
        0 0 60px #ff4b00,
        0 0 5px #ff0000;
}

.faq-title {
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 2.2rem;
    letter-spacing: 1px;
}

.faq .collapsible {
    border: none !important;
    box-shadow: none !important;
    width: 100%;
    max-width: 800px;
}

.faq .collapsible li {
    background-color: #111 !important;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #222 !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq .collapsible-header {
    background-color: transparent !important;
    color: #fff;
    border-bottom: none !important;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    transition: 0.3s;
}

.faq .collapsible li.active {
    border: 1px solid #ff3131 !important;
}

.faq .collapsible li.active .collapsible-header {
    color: #ff3131;
}

.faq .collapsible-body {
    background-color: transparent !important;
    border-bottom: none !important;
    color: #aaa;
    padding: 0 20px 20px 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq .collapsible-header::after {
    content: '+';
    color: #fff;
    font-size: 1.5rem;
    font-weight: 300;
}

.faq li.active .collapsible-header::after {
    content: '−';
    color: #ff3131;
}

.expectativa {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8%;
    background-color: #000;
    gap: 40px;
    overflow: hidden;
}

.info-expectativa {
    flex: 1.2;
}

.head-expectativa .pergunta {
    color: #ff3131;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.head-expectativa .pergunta::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #ff3131;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #ff3131;
}

.title-expectativa {
    margin: 0 0 20px 0 !important;
    text-align: left;
    line-height: 1.1;
    font-size: 3rem !important;
}

.head-expectativa p {
    color: #ccc;
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 40px;
}

.pergunta-expectativa,
.resposta-expectativa {
    text-transform: uppercase;
    font-size: 1.2rem !important;
    font-weight: 800;
    margin-bottom: 25px !important;
}

.pergunta-expectativa {
    color: #ff3131;
}

.resposta-expectativa {
    color: #2ecc71;
    margin-top: 40px !important;
}

.body-expectativa ul {
    list-style: none;
    padding: 0;
}

.body-expectativa li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.body-expectativa img[src*="xmark"] {
    filter: drop-shadow(0 0 5px #ff0000) drop-shadow(0 0 10px #ff3131);
    transition: 0.3s ease;
}

.body-expectativa img[src*="right mark"] {
    filter: drop-shadow(0 0 5px #00ff00) drop-shadow(0 0 10px #2ecc71);
    transition: 0.3s ease;
}

.img-expectativa {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    align-items: start;
    position: relative;
}

.img-expectativa .btn-cta {
    margin: 2.5rem 0 0 0;
}

.img-expectativa img {
    max-width: 100%;
    height: auto;
    border: 2px solid rgba(255, 49, 49, 0.2);
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(255, 49, 49, 0.15);
    padding: 10px;
}


/* --- SEÇÃO INVESTIMENTO --- */
.secao-investimento {
    padding: 80px 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
}

.badge-topo {
    background: #ffea00;
    /* Amarelo da imagem de referência */
    color: #000;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.titulo-principal {
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    margin: 25px 0 50px;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* --- ESTILO DOS CARDS --- */
.card-investimento {
    background: #111;
    border: 1px solid #333;
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card-investimento:hover {
    transform: translateY(-10px);
    border-color: var(--fire-orange);
    box-shadow: 0 10px 30px rgba(255, 77, 0, 0.2);
}

.card-label {
    color: #666;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.card-investimento h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0 20px;
    font-weight: 700;
}

/* Card de Destaque (Preço) */
.card-destaque {
    border: 2px solid #ff4d00 !important;
    background: #000 !important;
    text-align: center;
}

.valor-container {
    margin: 20px 0;
}

.parcelas {
    color: #fff;
    font-size: 1.2rem;
}

.preco-neon {
    color: #ff4d00;
    font-size: 3.5rem !important;
    font-weight: 900;
    margin: 5px 0 !important;
    text-shadow: 0 0 20px rgba(255, 77, 0, 0.6);
}

.valor-total {
    color: #888;
    font-size: 0.9rem;
}

/* Lista de Benefícios */
.lista-beneficios {
    margin-top: 15px;
}

.lista-beneficios li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bbb;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.neon-green-text {
    color: #00ff88;
    text-shadow: 0 0 10px #00ff88;
}

.neon-red-text {
    color: #ff3131;
    text-shadow: 0 0 10px #ff3131;
}

/* Botão Estilizado */
.btn-investir {
    background: #ff4d00;
    color: #fff;
    padding: 18px;
    border-radius: 12px;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: auto;
    transition: 0.3s;
    letter-spacing: 1px;
}

.btn-investir:hover {
    background: #ff6a2d;
    box-shadow: 0 0 25px rgba(255, 77, 0, 0.5);
    color: #fff;
}


.secao-investimento {
    position: relative;
    padding: 100px 5% 120px 5%;
    background-color: #000;
    overflow: hidden;
}

/* Fundo sutil: radial laranja fire igual ao hero */
.investimento-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 77, 0, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255, 77, 0, 0.10) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Linha decorativa superior (igual border das seções vizinhas) */
.secao-investimento::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 77, 0, 0.6), transparent);
}

.secao-investimento::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 77, 0, 0.6), transparent);
}

.investimento-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* ── Badge topo ── */
.investimento-badge-wrap {
    margin-bottom: 20px;
}

.investimento-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 77, 0, 0.12);
    border: 1px solid rgba(255, 77, 0, 0.5);
    color: #ff4d00;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    /* Glow sutil igual ao badge do header */
    box-shadow: 0 0 18px rgba(255, 77, 0, 0.2);
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff4d00;
    box-shadow: 0 0 8px #ff4d00;
    flex-shrink: 0;
}

/* ── Título principal ── */
.investimento-titulo {
    font-size: clamp(2rem, 5vw, 3.4rem) !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 24px 0 !important;
    color: #fff;
    line-height: 1.1 !important;
    letter-spacing: -1px;
}

.titulo-destaque {
    color: #ff4d00;
    font-style: normal;
    text-shadow:
        0 0 8px #ff4d00,
        0 0 30px #ff4d00,
        0 0 70px rgba(255, 77, 0, 0.5);
}

/* ── Subtítulo público ── */
.investimento-publico {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 16px 32px;
    text-align: center;
    margin-bottom: 56px;
    backdrop-filter: blur(6px);
}

.publico-pergunta {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.publico-resposta {
    color: #ff4d00;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(255, 77, 0, 0.4);
}

/* ── Grid de cards ── */
.investimento-cards {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 24px;
    width: 100%;
    align-items: stretch;
}

/* ── Card base ── */
.inv-card {
    background: #111;
    height: 100%;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    /* Glow base suave */
    box-shadow: 0 0 30px rgba(255, 77, 0, 0.08);
}

.inv-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 77, 0, 0.45);
    box-shadow:
        0 0 30px rgba(255, 77, 0, 0.25),
        0 20px 60px rgba(0, 0, 0, 0.6);
}

/* ── Label dos cards ── */
.inv-card__label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #ff4d00;
    display: flex;
    align-items: center;
    gap: 6px;
}

.inv-card__label::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff4d00;
    box-shadow: 0 0 6px #ff4d00;
    flex-shrink: 0;
}

.inv-card__label--light {
    color: rgba(255, 255, 255, 0.9);
}

.inv-card__label--light::before {
    background: #fff;
    box-shadow: 0 0 6px #fff;
}

/* ── Título interno do card ── */
.inv-card__title {
    font-size: 1.8rem !important;
    font-weight: 900 !important;
    color: #fff;
    line-height: 1.1 !important;
    margin: 0 !important;
    text-transform: uppercase;
}

/* ── CARD 1 — Incluso ── */
.inv-card--incluso {
    /* Glow esverdeado sutil para a lista de "sim" */
    border-color: rgba(46, 204, 113, 0.15);
}

.inv-card--incluso:hover {
    border-color: rgba(46, 204, 113, 0.4);
    box-shadow:
        0 0 30px rgba(46, 204, 113, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.6);
}

/* ── Listas de benefícios ── */
.inv-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.inv-lista li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

/* ✅ Neon nos ícones de check — igual à seção body-expectativas */
.inv-lista li img[src*="right mark"] {
    filter:
        drop-shadow(0 0 5px #00ff00) drop-shadow(0 0 12px #2ecc71);
    flex-shrink: 0;
    transition: filter 0.3s;
}

/* ❌ Neon nos ícones de xmark */
.inv-lista li img[src*="xmark"] {
    filter:
        drop-shadow(0 0 5px #ff0000) drop-shadow(0 0 12px #ff3131);
    flex-shrink: 0;
    transition: filter 0.3s;
}

/* Bloco "não incluso" */
.inv-nao-incluso {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nao-incluso-label {
    font-size: 0.78rem;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nao-incluso-frase {
    font-size: 0.9rem;
    color: #aaa;
    font-style: italic;
    margin: 4px 0 0 0;
}

.nao-incluso-frase cite {
    color: #ff4d00;
    font-style: normal;
    font-weight: 700;
}

/* ── CARD 2 — Valor (destaque) ── */
.inv-card--valor {
    background: linear-gradient(160deg, #1a0800 0%, #0d0400 60%, #000 100%);
    border-color: rgba(255, 77, 0, 0.5);
    box-shadow:
        0 0 40px rgba(255, 77, 0, 0.25),
        inset 0 1px 0 rgba(255, 77, 0, 0.15);
    /* Card central ligeiramente maior */
    padding: 44px 36px;
    align-items: center;
    text-align: center;
    position: relative;
    justify-content: center;
}

.inv-card--valor:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 77, 0, 0.8);
    box-shadow:
        0 0 60px rgba(255, 77, 0, 0.4),
        0 25px 70px rgba(0, 0, 0, 0.7);
}

/* Coroa "destaque" no topo do card central */
.inv-card--valor::before {
    content: '🔥 MAIS ESCOLHIDO';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4d00;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 4px 14px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 0 16px rgba(255, 77, 0, 0.7);
}

.valor-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin: 8px 0;
}

.valor-parcelas {
    font-size: 0.85rem;
    color: #aaa;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.valor-preco {
    font-size: clamp(3rem, 7vw, 4.5rem) !important;
    font-weight: 900 !important;
    color: #ff4d00;
    line-height: 1 !important;
    margin: 0 !important;
    text-shadow:
        0 0 10px #ff4d00,
        0 0 40px rgba(255, 77, 0, 0.6),
        0 0 80px rgba(255, 77, 0, 0.3);
}

.valor-cents {
    font-size: 55%;
    vertical-align: super;
}

.valor-avista {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 4px;
}

.valor-avista strong {
    color: #fff;
    font-weight: 800;
}

.valor-validade {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #bbb;
    font-size: 0.88rem;
    font-weight: 500;
}

/* Botão principal do card central */
.inv-btn-comprar {
    display: block;
    width: 100%;
    background: #ff4d00;
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 24px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 30px rgba(255, 77, 0, 0.5);
    margin-top: 4px;
}

.inv-btn-comprar:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 50px rgba(255, 77, 0, 0.75);
    color: #fff;
}

.valor-seguro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-top: -4px;
}

/* ── CARD 3 — Urgência ── */
.inv-card--urgencia {
    border-color: rgba(255, 77, 0, 0.2);
}

.inv-card__title--urgencia {
    color: #ff4d00 !important;
    text-shadow:
        0 0 8px rgba(255, 77, 0, 0.5),
        0 0 30px rgba(255, 77, 0, 0.2);
}

.inv-urgencia-texto {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Lista de urgência com ícones verdes */
.inv-lista--urgencia li {
    color: #ddd;
}

/* Botão secundário (outline) */
.inv-btn-secundario {
    display: inline-block;
    margin-top: 4px;
    background: transparent;
    color: #ff4d00;
    border: 2px solid #ff4d00;
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 12px rgba(255, 77, 0, 0.15);
}

.inv-btn-secundario:hover {
    background: #ff4d00;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(255, 77, 0, 0.5);
}

.preletores {
    padding: 80px 0;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.span-destaque {
    color: #ff4d00;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.title-preletores {
    font-size: 3rem !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    margin: 10px 0 !important;
}

.title-preletores cite {
    color: #ff4d00;
    text-shadow:
        0 0 5px #ff4d00,
        0 0 5px #ff4d00,
        0 0 80px #ff4d00,
        0 0 60px #ff4b00,
        0 0 5px #ff0000;
}

.cards-preletores {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.card-preletor {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    padding: 0 !important;
    background: #000;
    border: 1px solid #333;
    transition: all 0.4s ease-in-out;
    width: 20% !important;
    cursor: pointer;
    margin: 2rem 0 0 0;
    box-shadow: 0 0 40px rgba(255, 77, 0, 0.2);
}

.card-preletor:hover {
    transform: translateY(-10px);
    border-color: #ff4d00;
    box-shadow: 0 0 20px rgba(255, 77, 0, 0.6),
        0 0 40px rgba(255, 77, 0, 0.2);
}

.img-preletor img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    filter: brightness(0.8);
    transition: 0.4s;
}

.card-preletor:hover .img-preletor img {
    filter: brightness(1);
}

.info-preletor {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.8) 45%,
            transparent 100%);
    padding: 50px 35px 25px 35px;
    text-align: left;
}

.nome-preletor {
    font-size: 1.5rem !important;
    font-weight: 900 !important;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 !important;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nome-preletor::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: #ff4d00;
    margin-top: 10px;
    box-shadow: 0 0 10px #ff4d00;
}

.banner-oficial {
    width: 100%;
    min-height: 900px;
    background-image: url('../assets/KV-INCENDIADOS-FINAL.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-top: 1px solid rgba(255, 77, 0, 0.3);
    border-bottom: 1px solid rgba(255, 77, 0, 0.3);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.info-evento {
    position: relative;
    padding: 100px 0;
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

.catedral-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.catedral-bg img.bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.catedral-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, transparent 50%, rgba(0, 0, 0, 1) 100%);
}

.head-evento {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 2rem;
}

.head-evento span {
    color: #ff4d00;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.detalhes-evento {
    font-size: 2rem !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    margin: 15px 0 !important;
}

.marca-evento {
    font-size: 4rem !important;
    font-weight: 900 !important;
    font-style: italic;
    margin: 0 !important;
    line-height: 1;
    color: #ff4d00;
    text-shadow:
        0 0 5px #ff4d00,
        0 0 5px #ff4d00,
        0 0 80px #ff4d00,
        0 0 60px #ff4b00,
        0 0 5px #ff0000;
}

.cidade-evento {
    font-size: 1.2rem !important;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 10px !important;
}

.cards-evento {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 10rem 0 0 0;
}

.head-evento .btn-cta {
    margin: 5rem 0 0 0;
}

.head-evento .btn-cta .btn-compra-final {
    margin: 1.5rem 0 0 0;
    background-color: #00ff00;
    color: white;
    padding: clamp(16px, 4vw, 22px) clamp(30px, 8vw, 55px);
    font-size: 1rem;
    font-weight: 900;
    border-radius: 7px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    box-shadow: 0 5px 50px #4ff54f;
}

.head-evento .btn-cta .btn-compra-final:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 80px #00ff00;
}

.evento {
    background: rgba(25, 25, 25, 0.85);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    width: 280px;
    transition: 0.3s;
    text-align: left;
}

.evento:hover {
    border-color: #ff4d00;
    background: rgba(35, 35, 35, 0.95);
    transform: translateY(-5px);
}

.title-card-evento {
    color: #ff4d00;
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    margin-top: 0 !important;
}

.txt-evento {
    display: block;
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.desc-card-evento {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

.evento ul {
    margin: 10px 0 0 0;
    padding: 0;
}

.evento ul li {
    list-style: none;
    font-weight: 600;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.evento ul li::before {
    content: '•';
    color: #ff4d00;
    margin-right: 8px;
    font-weight: bold;
}

.localizacao-evento-mapa {
    position: relative;
    z-index: 2;
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.mapa {
    width: 100%;
}

.mapa iframe {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    height: 450px;
    width: 65%;
}

footer .texto-alt {
    color: #ff4b00;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

html {
    scroll-behavior: smooth;
}

/* MOBILE SCREEN */
@media (max-width: 480px) {
    .hero-bg {
        opacity: 0.1;
    }

    .hero {
        height: 100vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px 5% 180px 5%;
        overflow: hidden;
        position: relative;
        background: radial-gradient(circle at center, var(--fire-glow) 0%, rgb(0, 0, 0) 99%);
    }

    .hero-content {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .hero-content h1,
    h4 .data {
        text-align: center;
        font-size: 1.6rem;
        margin: 3rem 0 .5rem 0;
    }

    .video-apresentacao iframe {
        width: 100% !important;
        height: 190px !important;
    }

    .btn-main {
        margin: 1rem 0 0 0;
    }

    .numeros-convencimento .header-numeros h2 {
        font-size: 30px;
    }

    .cards {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 2.5rem 0 2.5rem !important;
    }

    .cards .card {
        padding: 0 20px 0 20px !important;
        margin: 1.5rem 1rem 1.5rem 1rem !important;
    }

    .numeros-convencimento .cards .card:hover {
        transform: translateY(0px);
    }

    .convencimento-2 .texto-convencimento {
        padding-left: 0 !important;
    }

    .title-card {
        font-size: 2rem !important;
    }

    .momento-decisao {
        font-size: 16px;
    }

    .momento-decisivo .card-decisao {
        margin: 0 0 2rem 0;
    }

    .momento-decisivo .btn-cta {
        margin: 1rem 0 0 0 !important;
    }

    .secao-investimento {
        padding: 70px 5% 80px 5%;
    }

    .investimento-badge {
        font-size: 0.65rem;
        padding: 5px 14px;
        letter-spacing: 1.5px;
    }

    .investimento-titulo {
        font-size: 1.9rem !important;
        letter-spacing: -0.5px;
        margin-bottom: 18px !important;
    }

    .investimento-publico {
        padding: 12px 16px;
        margin-bottom: 32px;
    }

    .publico-pergunta {
        font-size: 0.9rem;
    }

    .publico-resposta {
        font-size: 0.9rem;
    }

    .investimento-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Ordem visual: valor primeiro em mobile (mais importante) */
    .inv-card--valor {
        order: -1;
    }

    .inv-card--incluso {
        order: 0;
    }

    .inv-card--urgencia {
        order: 1;
    }

    .inv-card {
        padding: 28px 24px;
        border-radius: 16px;
    }

    .inv-card--valor {
        padding: 36px 24px;
    }

    /* Remove o hover de translateY em mobile (sem cursor) */
    .inv-card:hover {
        transform: none;
    }

    .inv-card__title {
        font-size: 1.5rem !important;
    }

    .valor-preco {
        font-size: 3.5rem !important;
    }

    .inv-btn-comprar {
        font-size: 0.95rem;
        padding: 16px 20px;
    }

    .inv-btn-secundario {
        font-size: 0.85rem;
        padding: 12px 22px;
    }

    .inv-lista li {
        font-size: 0.95rem;
    }

    .nao-incluso-frase {
        font-size: 0.85rem;
    }

    .banner-oficial {
        min-height: 250px;
        background-attachment: scroll;
    }

    .preletores .cards-preletores {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .cards-preletores .card-preletor {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        padding: 0 !important;
        background: #000;
        border: 1px solid #333;
        transition: all 0.4s ease-in-out;
        width: 80% !important;
        cursor: pointer;
        margin: 2rem 0 0 0;
        box-shadow: 0 0 40px rgba(255, 77, 0, 0.2);
    }

    .card-preletor:hover {
        transform: translateY(-10px);
        border-color: #ff4d00;
        box-shadow: 0 0 20px rgba(255, 77, 0, 0.6),
            0 0 40px rgba(255, 77, 0, 0.2);
    }

    .img-preletor img,
    .img-preletor video {
        width: 100%;
        height: 420px;
        object-fit: cover;
        display: block;
        filter: brightness(0.8);
        transition: 0.4s;
    }

    .card-preletor:hover .img-preletor img,
    .card-preletor:hover .img-preletor video {
        filter: brightness(1);
    }

    .info-preletor {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(to top,
                rgba(0, 0, 0, 1) 0%,
                rgba(0, 0, 0, 0.8) 45%,
                transparent 100%);
        padding: 50px 35px 25px 35px;
        text-align: left;
    }

    .nome-preletor {
        font-size: 1.5rem !important;
        font-weight: 900 !important;
        color: #ffffff;
        text-transform: uppercase;
        margin: 0 !important;
        letter-spacing: 1px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .nome-preletor::after {
        content: '';
        display: block;
        width: 50px;
        height: 4px;
        background-color: #ff4d00;
        margin-top: 10px;
        box-shadow: 0 0 10px #ff4d00;
    }

    .head-evento h2.marca-evento {
        font-size: 40px !important;
    }

    .head-evento h2.marca-evento>cite {
        font-size: 45px !important;
    }

    .cards-evento {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center;
        gap: 20px;
        margin: 3rem 0 0 0;
    }

    .localizacao-evento-mapa .mapa iframe {
        width: 90% !important;
    }

    .cards-evento .btn-cta a {
        color: #ff4b00;
    }

    .expectativa {
        display: flex;
        flex-direction: column;
    }

    .expectativa h2.title-expectativa {
        font-size: 1.2rem !important;
    }

    .faq .head-span {
        width: 100%;
    }

    footer .texto-alt {
        color: #ff4b00;
        margin: 0 0 1rem 0;
        font-size: .8rem;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .video-apresentacao {
        display: flex;
        align-items: center;
        margin-top: -15px;
    }

    .numeros-convencimento .convencimento-2 .span-header {
        justify-content: center;
        align-items: center;
    }

    .numeros-convencimento .convencimento-2 {
        text-align: center;
    }

    .convencimento-2 .texto-convencimento {
        padding-left: 0 !important;
    }

    .convencimento-2 .texto-convencimento .btn-cta {
        margin: 5rem 0 0 0 !important;
    }

    .momento-decisivo span {
        align-items: center;
        justify-content: center;
    }

    .momento-decisivo {
        text-align: center;
    }

    .cards-preletores {
        gap: 15px;
        padding: 0 10px;
    }

    .card-preletor {
        width: 80% !important;
    }

    .expectativa {
        flex-direction: column;
    }

    .expectativa .img-expectativa {
        align-items: center;
    }

    .expectativa .img-expectativa .btn-cta {
        margin: 5rem 0 0 0;
    }

    .expectativa .btn-cta {
        margin: 2rem 0 0 0;
    }

    .secao-investimento {
        padding: 80px 4% 100px 4%;
    }

    .investimento-cards {
        display: flex;
        flex-direction: column;
        width: 80%;
    }

    .inv-card--valor {
        width: 100%;
    }

    .investimento-titulo {
        font-size: 2.5rem !important;
    }

    .banner-oficial {
        min-height: 400px;
    }

    .faq .btn-cta {
        margin: 5rem 0 5rem 0;
    }

    .cards-evento {
        display: inline-flex;
        flex-wrap: wrap;
        gap: 0;
        margin: 3rem 0 0 0;
    }

    .cards-evento .evento {
        width: 340px;
        height: 230px;
        margin: .5rem .5rem;
    }

    .mapa iframe {
        width: 87%;
    }
}

/* Extra large devices */
@media only screen and (min-width: 1200px) {}