﻿:root {
    --bg-dark: #050505;
    --bg-card: #0e0e0e;
    --bg-gray: #111111;

    /* Cores */
    --gold: #C6A87C;
    --gold-light: #F2D096;
    --gold-dark: #8E7348;

    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* --- NAVBAR --- */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 1000;
    transition: all 0.4s ease;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.9), transparent);
}

.main-navbar.scrolled {
    padding: 15px 0;
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(198, 168, 124, 0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-nav {
    display: inline-block;
    background-color: var(--gold);
    color: #050505;
    padding: 10px 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198, 168, 124, 0.2);
}

/* --- BUTTONS GLOBAL --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-gold {
    background-color: var(--gold);
    color: #050505;
}

.btn-gold:hover {
    background-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(198, 168, 124, 0.15);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(198, 168, 124, 0.05);
}

.full-btn {
    width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Compensa o menu fixo */
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- TIPOGRAFIA --- */
h1,
h2,
h3,
.logo {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo {
    font-size: 1.5rem;
    letter-spacing: 3px;
    font-weight: bold;
    color: #fff;
}

.logo span {
    color: var(--gold);
}

/* Gradiente Dourado */
.gold-gradient-text {
    background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.title-gold {
    color: var(--gold);
    font-size: 2.2rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
    line-height: 1.3;
}

.text-white {
    color: #fff;
}

.subtitle {
    font-size: 1.2rem;
    max-width: 650px;
    margin-bottom: 35px;
    color: #d0d0d0;
    font-weight: 300;
}

.text-center {
    text-align: center;
}

/* Respiros de texto */
p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.lead-text {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 500;
}

.impact-text {
    margin-top: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold);
}

.divider-small {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 30px 0;
}

/* --- ÃCONES GLOW --- */
i[class^="ri-"] {
    vertical-align: middle;
    text-shadow: 0 0 10px rgba(198, 168, 124, 0.3);
}

/* --- LAYOUT GERAL --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

.narrow {
    max-width: 700px;
}

.section-dark {
    padding: 120px 0;
    background-color: var(--bg-dark);
}

.section-gray {
    padding: 120px 0;
    background-color: var(--bg-gray);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

html {
    scroll-behavior: smooth;
}

/* GLOBAL SECTIONS */
section,
header.hero {
    scroll-margin-top: 0;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-dark) 5%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
}

/* --- NAVBAR --- */
.main-navbar {
    position: fixed;
    /* Alterado de absolute para fixed */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Aumentado z-index para garantir que fique sobre tudo */
    padding: 20px 0;
    /* Padding inicial */
    transition: all 0.4s ease;
    /* Animação suave na transição */
}

/* Estado da Navbar quando rola a página (adicionado via JS) */
.main-navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    /* Fundo escuro quase sólido */
    padding: 15px 0;
    /* Reduz levemente o tamanho */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* Sombra para destacar do conteúdo */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: capitalize;
    /* Apenas primeira letra maiúscula, se quiser tudo use uppercase */
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.btn-nav {
    background: var(--gold-dark);
    /* Tom mais fechado inicial */
    background: linear-gradient(135deg, #e5c488, #b09163);
    color: #000;
    padding: 10px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198, 168, 124, 0.3);
}

/* --- HERO SECTION REFORMULADA --- */
.hero-content {
    z-index: 1;
    margin-top: 80px;
    /* Compensa navbar */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-eyebrow {
    font-family: var(--font-heading);
    color: #665030;
    /* Dourado bem escuro/fechado conforme print */
    color: var(--gold);
    /* Ou use var(--gold) se quiser mais brilho, mas print parece mais cobre */
    font-size: 0.8rem;
    /* Reduzido de 0.9rem */
    letter-spacing: 4px;
    /* Reduzido de 6px */
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    /* Reduzido agressivamente de 4.5rem */
    line-height: 1.1;
    color: var(--gold);
    /* Alterado para Dourado conforme pedido */
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 400;
    /* Cinzel normal */
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    /* Tentar manter em uma linha se couber */
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    /* Reduzido de 2.5rem */
    line-height: 1.3;
    color: #c0c0c0;
    /* Branco levemente cinza */
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 400;
    opacity: 0.9;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1rem;
    /* Reduzido de 1.1rem */
    color: #888;
    line-height: 1.6;
    max-width: 650px;
    margin-bottom: 40px;
    font-weight: 300;
}

.features-list span {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.features-list i {
    font-size: 1.2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.8;
}

.scroll-indicator .line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

/* --- BOTÃ•ES --- */
.cta-group {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn {
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 500;
    /* Mais leve para ser elegante */
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.5s ease;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: var(--font-body);
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 2px;
    /* Canto levemente arredondado, quase quadrado (premium) */
}

.btn-gold {
    background: linear-gradient(90deg, #b08d55, #dcb983, #b08d55);
    /* Gradiente metÃ¡lico mais suave */
    background-size: 200% auto;
    color: #000;
    border: none;
    font-weight: 600;
}

.btn-gold:hover {
    background-position: right center;
    /* AnimaÃ§Ã£o suave do brilho */
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(176, 141, 85, 0.4);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.02);
    /* Vidro sutil */
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background-color: rgba(198, 168, 124, 0.1);
}

/* --- VISUAL DE AUTORIDADE (IMAGENS) --- */
.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(198, 168, 124, 0.3);
    pointer-events: none;
}

.image-block img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(10%) contrast(1.1);
    transition: transform 1s ease;
}

.image-block:hover img {
    transform: scale(1.05);
}

blockquote.gold-quote {
    border-left: 4px solid var(--gold);
    padding-left: 30px;
    margin-top: 40px;
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--gold-light);
    font-family: var(--font-heading);
}

/* COMPARISON */
.comparison-section {
    padding: 100px 0;
    border-top: 1px solid #111;
}

.for-who h3,
.not-for-who h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
    /* Centraliza TÃ­tulos */
}

.for-who ul,
.not-for-who ul {
    list-style: none;
    padding: 0;
    text-align: left;
    /* MantÃ©m bullet Ã  esquerda do texto */
    display: inline-block;
    /* Permite centralizar o bloco da lista */
}

/* Wrapper para centralizar a lista como um bloco */
.for-who,
.not-for-who {
    text-align: center;
}

.for-who li,
.not-for-who li {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    /* Alinha Ã­cone e texto Ã  esquerda dentro do item */
}

.for-who i {
    color: #fff;
    font-size: 1.1rem;
}

.not-for-who i {
    color: #fff;
    font-size: 1.1rem;
}

/* --- LISTAS --- */
.check-list,
.gold-bullets {
    list-style: none;
    margin-top: 30px;
}

.check-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.check-list .icon {
    color: var(--gold);
    font-size: 1.3rem;
}

.gold-bullets li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    color: #ccc;
    align-items: flex-start;
}

.gold-bullets li i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 5px;
    flex-shrink: 0;
}

/* --- MTO CARDS --- */
.card-mto {
    background: #0a0a0a;
    padding: 60px 40px;
    border: 1px solid #1f1f1f;
    transition: all 0.5s ease;
    text-align: center;
}

.card-mto:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.card-mto.gold-border {
    border-color: rgba(198, 168, 124, 0.2);
}

.card-icon-wrapper {
    font-size: 3rem;
    color: var(--gold-dark);
    margin-bottom: 25px;
    transition: 0.3s;
}

.card-mto:hover .card-icon-wrapper {
    color: var(--gold);
    transform: scale(1.1);
}

.card-mto h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.card-line {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 25px;
}

.card-mto p {
    font-size: 1rem;
    color: #888;
    line-height: 1.6;
}

/* --- BIG STATEMENT --- */
.big-statement {
    font-size: 3rem;
    margin: 40px 0;
    line-height: 1.2;
}

/* ==========================================================================
   QUIZ DE LUXO (RESPONSIVO)
   ========================================================================== */

.quiz-section {
    background-color: #080808;
    padding: 120px 0;
    border-top: 1px solid #1a1a1a;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.quiz-header {
    margin-bottom: 60px;
    width: 100%;
}

.progress-bar-container {
    width: 100%;
    height: 3px;
    background: #222;
    margin-top: 40px;
}

.progress-bar {
    width: 5%;
    height: 100%;
    background: var(--gold);
    transition: width 0.5s ease;
    box-shadow: 0 0 15px rgba(198, 168, 124, 0.5);
}

.quiz-step {
    display: none;
    text-align: center;
    animation: fadeSlideUp 0.6s ease forwards;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.quiz-step.active {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quiz-question {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.quiz-desc {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Inputs minimalistas gigantes */
.quiz-input-lg {
    width: 100%;
    padding: 10px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid #333;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 1.8rem;
    outline: none;
    text-align: center;
    transition: 0.3s;
    margin-bottom: 30px;
}

.quiz-input-lg:focus {
    border-bottom-color: var(--gold);
}

.quiz-input-lg::placeholder {
    color: #333;
}

/* Grupo de Input com Ãcone (Novidade) */
.input-icon-group {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.input-icon-group i {
    position: absolute;
    left: 0;
    top: 20px;
    font-size: 1.5rem;
    color: #444;
}

.input-icon-group .quiz-input-lg {
    padding-left: 40px;
    /* EspaÃ§o para o Ã­cone */
}

select.quiz-input-lg {
    cursor: pointer;
    color: #fff;
}

select.quiz-input-lg option {
    background: #000;
    color: #fff;
    padding: 15px;
}

/* BotÃµes do Quiz */
.btn-single-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.full-width {
    width: 100%;
}

/* Sucesso */
.success-card {
    background: #0f0f0f;
    padding: 60px 40px;
    border: 1px solid var(--gold);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(198, 168, 124, 0.1);
}

.success-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 30px;
    border: 2px solid var(--gold);
    width: 80px;
    height: 80px;
    line-height: 75px;
    border-radius: 50%;
    display: inline-block;
}

/* ==========================================================================
   RESPONSIVIDADE & IMPACTO MOBILE (GARANTIA DE ORDEM)
   ========================================================================== */

@media (max-width: 768px) {

    /* Mais espaÃ§o, menos poluiÃ§Ã£o */
    .section-dark,
    .section-gray,
    .quiz-section {
        padding: 80px 0;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    /* Hero mais impactante */
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .hero-content {
        margin-top: 20px;
    }

    .subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 40px;
    }

    .cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        padding: 18px;
    }

    /* TÃ­tulos grandes, Texto limpo */
    h2.title-gold {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .big-statement {
        font-size: 2.2rem;
    }

    p {
        font-size: 1.05rem;
        line-height: 1.8;
    }

    /* Quiz Otimizado para Dedo */
    .quiz-question {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .quiz-input-lg {
        font-size: 1.3rem;
        margin-bottom: 40px;
        padding: 15px 0;
    }

    /* SEGURANÃ‡A MOBILE: BotÃ£o Continuar sempre em cima */
    .btn-single-nav {
        flex-direction: column-reverse;
        gap: 15px;
    }

    .full-btn {
        width: 100%;
        padding: 20px;
        font-size: 1rem;
    }

    /* CartÃ£o de sucesso limpo */
    .success-card {
        padding: 40px 20px;
        border: none;
        background: transparent;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        line-height: 55px;
        font-size: 2.5rem;
    }
}

/* AnimaÃ§Ãµes */
.animate {
    opacity: 0;
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-up {
    transform: translateY(50px);
}

.fade-down {
    transform: translateY(-50px);
}

.fade-left {
    transform: translateX(50px);
}

.fade-right {
    transform: translateX(-50px);
}

.animate.active {
    opacity: 1;
    transform: translate(0, 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;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.8s;
}

/* --- NOVA SEÃ‡ÃƒO: COMO FUNCIONA (CARDS) --- */
.grid-4-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: #0e0e0e;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.step-card:hover {
    border-color: #AB8855;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(171, 136, 85, 0.1);
    /* Dourado bem suave no fundo */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #AB8855;
    /* Cor do Ã­cone dourado */
    font-size: 1.8rem;
    border: 1px solid rgba(171, 136, 85, 0.2);
    transition: 0.3s;
}

.step-card:hover .step-icon {
    background: #AB8855;
    color: #000;
}

.step-card h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: none;
    /* Manter case normal */
}

.step-card p {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- SEÃ‡ÃƒO ACCESS (ORBITAL) --- */
.access-grid-container {
    display: grid;
    grid-template-columns: 1fr 340px 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.access-col {
    display: flex;
    flex-direction: column;
    gap: 60px;
    /* EspaÃ§o vertical entre cards laterais */
}

/* Coluna Central */
.center-col {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.central-image-glow {
    width: 280px;
    height: 380px;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 0 60px rgba(171, 136, 85, 0.2);
    /* Glow Dourado */
    border: 1px solid rgba(171, 136, 85, 0.3);
}

/* Cards Orbitais */
.access-card {
    background: #0b0b0b;
    border: 1px solid #1f1f1f;
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 300px;
    transition: all 0.3s ease;
}

.access-card:hover {
    border-color: #AB8855;
    background: #111;
    transform: translateX(5px);
}

.right-col .access-card:hover {
    transform: translateX(-5px);
    /* Movimento oposto na direita */
}

.access-icon {
    font-size: 1.5rem;
    color: #AB8855;
    background: rgba(171, 136, 85, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.access-text {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
}

/* Card central inferior */
.bottom-card {
    max-width: 100%;
    justify-content: center;
    border-color: rgba(171, 136, 85, 0.3);
    background: rgba(171, 136, 85, 0.05);
}

.bottom-card:hover {
    transform: translateY(-5px);
}

/* Responsividade */
@media (max-width: 900px) {
    .access-grid-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .access-col {
        gap: 20px;
        align-items: center;
    }

    .central-image-glow {
        width: 100%;
        max-width: 300px;
        height: 350px;
    }

    .access-card {
        max-width: 100%;
    }
}

/* --- SEÇÃO PERFIL (BIO) --- */
.profile-grid {
    display: grid;
    grid-template-columns: 300px 340px 1fr;
    /* Colunas: Cards Esq, Foto Centro, Bio Dir */
    gap: 30px;
    align-items: start;
    /* Alinha ao topo para garantir altura igual manual */
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Coluna Stats (Esq) */
.profile-stats-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Distribui cards na altura total */
    height: 480px;
    /* Altura exata da imagem */
    padding-right: 0;
    border: none;
}

.profile-stats-col::after {
    display: none;
}

/* CARDS DE ESTATÍSTICA (Esq) */
.profile-stat-card {
    border: 1px solid #1f1f1f;
    border-radius: 6px;
    padding: 20px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    transition: all 0.3s ease;
    height: 30%;
    /* 3 cards ocupando ~30% cada + espaços */
}

.profile-stat-card:hover {
    border-color: #AB8855;
    background-color: #0c0c0c;
}

.stat-card-title {
    font-family: var(--font-heading);
    color: #AB8855;
    /* Dourado */
    font-size: 1.6rem;
    margin-bottom: 5px;
    line-height: 1;
    font-weight: 400;
}

.stat-card-desc {
    font-family: var(--font-body);
    color: #999;
    font-size: 0.8rem;
    line-height: 1.3;
    margin: 0;
    width: 100%;
}

/* Coluna Imagem (Centro) */
.profile-image-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    height: 480px;
    /* Altura fixa */
}

.profile-frame {
    width: 320px;
    height: 480px;
    position: relative;
    padding: 0;
    border: none;
    border-radius: 8px;
    overflow: hidden;
}

/* REMOVER CANTONEIRAS "Enfeites" */
.profile-frame::before,
.profile-frame::after {
    display: none;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.5s;
}

/* Coluna Bio (Direita) */
.profile-bio-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding-left: 0;
    border: none;
    height: 480px;
    /* Coluna mantem altura para alinhamento */
}

/* CARD BIO (Dir) */
.profile-bio-card {
    border: 1px solid #1f1f1f;
    border-radius: 6px;
    padding: 30px;
    background-color: transparent;
    height: auto;
    /* Altura automatica (wrap text) */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bio-title {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-weight: 400;
    margin-top: 0;
    letter-spacing: 1px;
}

.bio-content-wrapper {
    padding: 0;
    display: block;
}

.bio-content-wrapper::before,
.bio-content-wrapper::after {
    display: none;
}

.bio-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 100%;
    letter-spacing: 0.2px;
    font-weight: 300;
    text-align: justify;
    /* Justificado para ficar "quadradinho" */
}

/* Mobile Responsividade atualizada */
@media (max-width: 992px) {
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
        /* Limita largura no mobile */
        align-items: center;
    }

    .profile-stats-col,
    .profile-image-col,
    .profile-bio-col {
        height: auto;
        border: none;
        padding: 0;
    }

    .profile-stat-card {
        height: auto;
        width: 100%;
        margin-bottom: 15px;
    }

    .profile-bio-card {
        height: auto;
    }

    .profile-frame {
        width: 100%;
        height: auto;
        aspect-ratio: 2/3;
    }
}

/* =========================================
   SEÃ‡ÃƒO RESULTADOS (SLIDER)
   ========================================= */
.results-slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 30px auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.results-track-container {
    overflow: hidden;
    width: 100%;
    margin: 0 10px;
}

.results-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.result-slide {
    min-width: 33.333%;
    /* Mostra 3 slides por vez */
    padding: 0 10px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.result-slide img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    /* Limite de altura */
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.slider-nav {
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slider-nav:hover {
    border-color: #AB8855;
    color: #AB8855;
    background: rgba(171, 136, 85, 0.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #333;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #AB8855;
}

@media (max-width: 768px) {
    .results-slider-wrapper {
        gap: 5px;
    }

    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .result-slide {
        padding: 0 5px;
        min-width: 100%;
        /* Volta para 1 por vez no mobile */
    }
}

/* =========================================
   SEÃ‡ÃƒO MTO
   ========================================= */
.section-mto {
    background-color: #080808;
    padding: 100px 0;
    border-bottom: 1px solid #111;
}

.mto-header {
    text-align: center;
    margin-bottom: 80px;
}

.mto-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
}

.mto-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
}

.mto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    flex: 1;
    width: 100%;
}

.mto-card {
    background-color: transparent;
    text-align: left;
}

.mto-image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 30px;
}

.mto-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.mto-card:hover .mto-image-container img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(1.1);
}

.mto-letter {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #AB8855;
    line-height: 1;
    margin-bottom: 10px;
    opacity: 0.8;
}

.mto-card-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 400;
}

.mto-card-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #AB8855;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 600;
}

.mto-card-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #999;
    line-height: 1.6;
}

/* MTO Navigation wrapper */
.mto-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.mto-arrow {
    background-color: #111;
    border: 1px solid #333;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mto-arrow:hover {
    background-color: #AB8855;
    border-color: #AB8855;
    color: #000;
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .mto-arrow {
        display: none;
    }

    .mto-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        width: 100%;
    }
}

/* =========================================
   RESPONSIVIDADE (GLOBAL)
   ========================================= */
/* =========================================
   RESPONSIVIDADE ESTRATÃ‰GICA
   ========================================= */

img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Remove o espaÃ§o extra abaixo da imagem */
}

/* Tablet e Notebooks Pequenos (atÃ© 1024px) */
@media (max-width: 1024px) {
    .container {
        max-width: 95%;
        /* Aproveita mais a tela */
    }

    .hero h1 {
        font-size: 3rem;
    }
}

/* Tablets e Mobile (atÃ© 900px) - Ponto de quebra principal */
@media (max-width: 900px) {

    /* GERAL */
    .section-dark,
    .section-gray,
    .section-mto,
    .section-results,
    .section-profile,
    .quiz-section {
        padding: 60px 0;
        /* Menos padding vertical */
    }

    /* HERO ADJUSTMENT */
    .hero {
        height: auto !important;
        min-height: auto !important;
        padding-top: 150px;
        padding-bottom: 60px;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* ACCESS SECTION (Orbital) */
    .access-grid-container {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
        /* Limita largura no mobile para nÃ£o ficar esticado demais */
        margin: 0 auto;
    }

    .access-col {
        gap: 15px;
        width: 100%;
    }

    .access-card {
        max-width: 100%;
        /* Ocupa largura total disponÃ­vel */
        justify-content: flex-start;
        /* Alinha Ã­cone e texto Ã  esquerda */
    }

    /* PROFILE SECTION (Bio) */
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .profile-stats-col {
        height: auto;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(171, 136, 85, 0.3);
        padding-bottom: 30px;
        flex-direction: row;
        /* Stat items lado a lado no mobile? */
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .profile-stats-col::after {
        display: none;
        /* Remove linha vertical */
    }

    .stat-item {
        text-align: center;
        margin-bottom: 0;
    }

    .stat-item::after {
        display: none;
        /* Remove traÃ§o decorativo lateral */
    }

    .profile-image-col {
        margin: 0 auto;
    }

    .profile-bio-col {
        height: auto;
        padding-left: 0;
        border-left: none;
        align-items: center;
        text-align: center;
    }

    .bio-content-wrapper {
        text-align: center;
    }

    .bio-text {
        max-width: 100%;
    }

    /* MTO SECTION */
    .mto-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mto-arrow {
        display: none;
    }

    .mto-card {
        text-align: center;
        padding: 0 15px;
    }

    .mto-card-subtitle {
        justify-content: center;
    }
}

/* Mobile (Smartphones - atÃ© 600px) */
@media (max-width: 600px) {

    /* HERO */
    .hero h1 {
        font-size: 2.2rem;
        /* TÃ­tulo legÃ­vel */
        text-shadow: 0 5px 15px rgba(0, 0, 0, 0.9);
    }

    .subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .features-list {
        align-items: center;
        /* Centraliza itens */
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
        padding: 16px;
    }

    /* SECTION TITLES */
    .title-gold,
    h2 {
        font-size: 1.8rem !important;
        /* Force override of inline styles */
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }

    /* Specific overrides for the huge inline font sizes in Access/Bio sections */
    .access-section h2,
    .profile-header h2 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }

    .profile-header p {
        font-size: 0.9rem !important;
        margin-bottom: 10px !important;
    }

    /* PROFILE STATS - Stacking vertical novamente se muito estreito */
    .profile-stats-col {
        flex-direction: column;
        gap: 20px;
    }

    /* SLIDER */
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .result-slide {
        padding: 0;
    }
}

/* Pequenos Mobiles (iPhone SE, etc - atÃ© 380px) */
@media (max-width: 380px) {
    .hero h1 {
        font-size: 1.9rem;
    }

    .btn {
        font-size: 0.75rem;
        padding: 14px;
    }
}

/* --- REFORÃ‡O DE RESPONSIVIDADE (FIXES) --- */
@media (max-width: 768px) {

    /* Hero Correction */
    .hero h1 {
        font-size: 2rem !important;
        line-height: 1.2;
        padding: 0 10px;
        word-wrap: break-word;
    }

    .hero-content {
        padding: 0 20px;
    }

    /* Force Vertical Stacking for Grids */
    .access-grid-container,
    .profile-grid,
    .mto-grid,
    .grid-4-steps {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 50px !important;
    }

    /* Access Section - Image First */
    .access-col {
        width: 100% !important;
        align-items: center !important;
        gap: 20px !important;
    }

    .center-col {
        order: -1;
        /* Image appears at the top */
        margin-bottom: 20px;
    }

    .central-image-glow {
        max-width: 80% !important;
        height: auto !important;
        min-height: 300px;
    }

    .access-card {
        max-width: 100% !important;
        width: 100% !important;
        flex-direction: column !important;
        text-align: center !important;
        padding: 25px !important;
        justify-content: center !important;
    }

    .access-icon {
        margin-bottom: 10px;
    }

    .access-text {
        text-align: center !important;
    }

    /* Profile Section - Fix Overlaps */
    .profile-stats-col {
        flex-direction: column !important;
        height: auto !important;
        padding: 0 !important;
        border: none !important;
        gap: 30px !important;
    }

    .stat-item {
        text-align: center !important;
        width: 100% !important;
    }

    .stat-item::after {
        display: none !important;
    }

    .profile-stats-col::after {
        display: none !important;
    }

    .profile-bio-col {
        height: auto !important;
        padding: 0 !important;
        text-align: center !important;
        align-items: center !important;
    }

    .bio-text {
        max-width: 100% !important;
        padding: 0 10px;
    }

    .bio-content-wrapper {
        text-align: center !important;
        padding: 20px 10px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* MTO Section - Fix Widths */
    .mto-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        text-align: center !important;
    }

    .mto-image-container {
        height: 220px !important;
    }

    /* Quiz / Footer */
    .quiz-input-lg {
        font-size: 1.3rem !important;
        width: 100% !important;
    }

    .btn-single-nav {
        flex-direction: column-reverse;
    }

    .full-btn {
        width: 100% !important;
    }

    /* Navbar Mobile */
    .navbar-container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
        /* Hide standard links on mobile to avoid clutter */
    }

    .btn-nav {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    /* Typography Adjustments for new Hero */
    .hero-title {
        font-size: 1.8rem !important;
        /* Tamanho seguro para caber em screens pequenos */
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
        white-space: normal !important;
        /* Obriga a quebrar linha no mobile */
        word-wrap: break-word !important;
        padding: 0 10px;
        /* Garante margem interna */
        width: 100%;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 20px !important;
        line-height: 1.4 !important;
        white-space: normal !important;
    }

    .hero-eyebrow {
        font-size: 0.6rem !important;
        letter-spacing: 2px !important;
        white-space: normal !important;
        text-align: center;
    }

    .hero-description {
        font-size: 0.95rem !important;
        padding: 0 15px;
        /* Padding padrÃ£o */
        line-height: 1.6 !important;
        max-width: 100%;
        /* Remove limite forÃ§ado que causava quebra ruim */
        margin-left: auto;
        margin-right: auto;
        text-wrap: balance;
        /* A mÃ¡gica: Equilibra o tamanho das linhas automaticamente */
    }
}

@media (max-width: 380px) {
    .title-gold {
        font-size: 1.7rem !important;
    }

    .hero h1 {
        font-size: 1.6rem !important;
    }

    .access-card {
        padding: 20px !important;
    }
}

/* --- SECTION MERCADO --- */
.market-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 50% / 50% */
    gap: 80px;
    align-items: center;
}

.market-image-col {
    position: relative;
    width: 100%;
}

.market-frame {
    width: 100%;
    border-radius: 4px;
    /* Canto levemente arredondado como na ref */
    overflow: hidden;
    position: relative;
}

.market-img {
    width: 100%;
    height: auto;
    display: block;
    /* Efeito de brilho/sombra se neessÃ¡rio */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.market-content-col {
    padding-left: 20px;
}

.market-point h3 {
    text-transform: none;
    /* MantÃªm minÃºsculas onde deve ser */
    letter-spacing: 0;
}

/* Responsividade Mercado */
@media (max-width: 900px) {
    .market-grid {
        grid-template-columns: 1fr;
        /* Empilha verticamente */
        gap: 50px;
    }

    .market-content-col {
        padding-left: 0;
        text-align: left;
        /* MantÃ©m alinhamento Ã  esquerda ou muda para center se preferir */
    }

    /* Ajuste de tÃ­tulo no tablet/mobile */
    .section-title {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem !important;
    }

    .market-point {
        margin-bottom: 30px !important;
    }
}

/* --- ACCESS SECTION V2 --- */
.access-card-v2 {
    background: #080808;
    border: 1px solid #1f1f1f;
    border-radius: 4px;
    /* Mais quadrado */
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    position: relative;
    cursor: default;
}

.access-card-v2:hover {
    border-color: var(--gold);
    background: #080808;
    /* Efeito de brilho apenas na borda/box-shadow */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.access-card-v2.highlight {
    border: 1px solid var(--gold);
    box-shadow: 0 0 20px rgba(198, 168, 124, 0.15);
}

.card-icon {
    width: 48px;
    height: 48px;
    border: 1px solid #333;
    border-radius: 4px;
    /* Quadrado */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    background: #0a0a0a;
}

.access-card-v2:hover .card-icon,
.access-card-v2.highlight .card-icon {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(198, 168, 124, 0.1);
    box-shadow: 0 0 10px rgba(198, 168, 124, 0.1);
}

.access-card-v2 h3 {
    color: #fff;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    margin-bottom: 12px;
    line-height: 1.3;
    text-transform: none;
}

.access-card-v2 p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* --- MTO SECTION V2 --- */
.mto-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    /* Reduzido de 30px para dar mais largura aos cards */
}

.mto-card-v2 {
    position: relative;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #222;
    transition: all 0.4s ease;
}

.mto-card-v2:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.mto-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000 10%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.mto-content-v2 {
    position: relative;
    z-index: 2;
    padding: 30px 15px;
    /* Reduzido padding lateral de 30px para 15px */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.mto-big-letter {
    font-family: var(--font-heading);
    font-size: 8rem;
    /* Bem grande conforme ref 2 */
    color: var(--gold);
    line-height: 0.7;
    margin-left: -5px;
    /* Leve ajuste visual */
    margin-bottom: 5px;
    opacity: 1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.mto-card-v2 h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    /* TRANSFORMAR EM MAIÚSCULAS */
    letter-spacing: 1px;
}

.mto-card-v2 .highlight-p {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    text-transform: none;
    min-height: auto;
    white-space: nowrap;
    /* Forçar uma linha */
    width: 100%;
    letter-spacing: -0.5px;
    /* Espremer levemente o texto */
}

.mto-card-v2 .desc-p {
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    min-height: auto;
}

@media (max-width: 900px) {
    .mto-grid-v2 {
        grid-template-columns: 1fr;
    }

    .mto-card-v2 {
        height: 400px;
    }
}