/* ==== Tipografia e Cores Base - BUNKER HRC² ==== */
:root {
    --bg-dark: #0D0D0D;
    --bg-card: #121212;
    --text-main: #E0E0E0;
    --text-muted: #888888;
    --neon-green: #00FF85;
    --alert-red: #FF2E63;
    --electric-blue: #1E90FF;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --font-tactical: 'Black Ops One', cursive; /* Usando no lugar de Stencil */
}

body {
    font-family: var(--font-body);
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-main);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
}

.tactical-font {
    font-family: var(--font-tactical);
    letter-spacing: 2px;
    color: var(--electric-blue);
    text-transform: uppercase;
}

/* ==== Navegação Tática ==== */
.navbar {
    background-color: rgba(13, 13, 13, 0.95) !important;
    border-bottom: 1px solid var(--electric-blue);
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.nav-link {
    color: var(--text-main) !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-left: 15px;
    transition: color 0.3s, text-shadow 0.3s;
    font-family: var(--font-heading);
}

.nav-link:hover {
    color: var(--neon-green) !important;
    text-shadow: 0 0 8px rgba(0, 255, 133, 0.6);
}

.navbar-toggler {
    background-color: transparent;
    font-size: 1.25rem;
    transition: all 0.3s ease-in-out;
}

/* ==== Botões e CTAs ==== */
.btn-neon {
    background-color: transparent;
    color: var(--neon-green);
    border: 2px solid var(--neon-green);
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0; /* Bordas retas táticas */
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-neon:hover {
    background-color: var(--neon-green);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--neon-green), 0 0 30px rgba(0, 255, 133, 0.4);
}

.btn-danger-tactical {
    background-color: transparent;
    color: var(--alert-red);
    border: 2px solid var(--alert-red);
    border-radius: 0;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.btn-danger-tactical:hover {
    background-color: var(--alert-red);
    color: white;
    box-shadow: 0 0 15px var(--alert-red);
}

/* ==== Estrutura de Seções ==== */
section {
    padding: 100px 0;
    position: relative;
    z-index: 2; /* Sobrepor o grid base */
}

.section-darker {
    background-color: #080808;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 3px;
    background-color: var(--electric-blue);
    bottom: -15px;
    left: 30%;
}

/* ==== Cards estilo HUD ==== */
.hud-card {
    background: var(--bg-card);
    border: 1px solid #222;
    border-left: 4px solid var(--electric-blue);
    padding: 30px;
    height: 100%;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.hud-card:hover {
    transform: translateY(-5px);
    border-left-color: var(--neon-green);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
}

.hud-icon {
    font-size: 2.5rem;
    color: var(--electric-blue);
    margin-bottom: 20px;
}

/* ==== Variantes HUD Card para o Detalhamento do Ciclo ==== */
.hud-card-master {
    background: var(--bg-card);
    border: 1px solid #222;
    border-left: 4px solid var(--alert-red);
    padding: 40px;
    height: 100%;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.hud-card-master:hover {
    box-shadow: 0 10px 25px rgba(255, 0, 51, 0.2);
}

.hud-card-master h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 800;
}

.hud-card-master h5 {
    color: var(--alert-red);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.hud-card-detalhe {
    background: var(--bg-card);
    border: 1px solid #222;
    padding: 30px;
    margin-bottom: 20px;
    height: calc(50% - 10px); /* Para dividir a altura perfeitamente com o gap */
    min-height: 250px;
}

.hud-card-detalhe:last-child {
    margin-bottom: 0;
}

.hud-card-detalhe.border-blue {
    border-left: 4px solid var(--electric-blue);
}

.hud-card-detalhe.border-green {
    border-left: 4px solid var(--neon-green);
}

.hud-card-detalhe h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hud-card-detalhe p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ==== Ciclo Tático HRC (Moedas) ==== */
#metodo {
    background: linear-gradient(rgba(13, 13, 13, 0.85), rgba(13, 13, 13, 0.452)), url('../assets/img/Painel.png') center/cover no-repeat;
}

.ciclo-tatico-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 600px;
    margin: 0 auto;
}

.moeda {
    position: absolute;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-card);
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../assets/img/hrc_coin.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
    padding: 20px;
}

.moeda h4 {
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
    font-weight: bold;
}

.moeda:hover {
    transform: scale(1.05);
}

.moeda-central {
    width: 240px;
    height: 240px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--electric-blue);
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.3);
}

.moeda-central:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 0 35px rgba(0, 204, 255, 0.5);
}

.moeda-central h4 {
    font-size: 1.3rem;
    color: var(--electric-blue);
}

.moeda-satelite {
    width: 180px;
    height: 180px;
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 133, 0.2);
}

.moeda-satelite:hover {
    box-shadow: 0 0 25px rgba(0, 255, 133, 0.4);
}

.moeda-satelite h4 {
    color: white;
}

/* Posições das Satélites */
.moeda-tl { top: 0; left: 0; }
.moeda-tr { top: 0; right: 0; }
.moeda-bl { bottom: 0; left: 0; }
.moeda-br { bottom: 0; right: 0; }

/* SVG das Setas */
.ciclo-setas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none; /* Para não bloquear cliques nas moedas */
}

/* Responsividade do Ciclo */
@media (max-width: 991px) {
    .ciclo-tatico-wrapper {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .moeda, .moeda-central {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
    }
    .ciclo-setas {
        display: none; /* Oculta as linhas vetoriais no mobile para focar no empilhamento */
    }
}

/* ==== Hero Section (Bunker Entry) ==== */
.hero-bunker {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(13, 13, 13, 0.85), rgba(13, 13, 13, 0.452)), url('../assets/img/Bunker.png') center/cover no-repeat;
    border-bottom: 2px solid var(--alert-red);
    padding: 150px 0 100px 0; /* Padding superior para não grudar na nav */
    position: relative;
}

.hero-bunker h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    position: relative;
    z-index: 2;
}

.hero-bunker p {
    font-size: 1.25rem;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-weight: 400;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.hero-bunker .tactical-font, .hero-bunker .btn-neon {
    position: relative;
    z-index: 2;
}

/* ==== Seção A Verdade ==== */
.hero-verdade {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(5, 5, 5, 0.85), rgba(5, 5, 5, 0.85)), url('../assets/logo/HRC² - Logo Colorida Escrita Branca.png') center/contain no-repeat;
    background-color: #050505;
    border-top: 1px solid var(--alert-red);
    border-bottom: 1px solid var(--alert-red);
    padding: 100px 0;
    position: relative;
}

.hero-verdade h3, .hero-verdade p {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
}

/* ==== Tabela de Preços ==== */
.pricing-card {
    background: var(--bg-card);
    border: 1px solid #222;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card.popular {
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 133, 0.15);
    transform: scale(1.05);
    background: #0a0a0a;
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-green);
    color: var(--bg-dark);
    padding: 6px 20px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: #FFF;
    margin: 20px 0;
    font-family: var(--font-heading);
}

.price span {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 15px;
    color: var(--text-main);
    display: flex;
    align-items: center;
}

.pricing-features li i {
    color: var(--electric-blue);
    margin-right: 15px;
    font-size: 1.1rem;
}

.pricing-card.popular .pricing-features li i {
    color: var(--neon-green);
}

/* ==== Accordion FAQ ==== */
.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: #333;
}
.accordion-item {
    background-color: var(--bg-card);
    border: 1px solid #333;
    margin-bottom: 15px;
    border-radius: 0;
}
.accordion-button {
    background-color: var(--bg-card);
    color: #FFF;
    font-weight: bold;
    font-family: var(--font-heading);
    border-radius: 0 !important;
}
.accordion-button:not(.collapsed) {
    background-color: #1a1a1a;
    color: var(--neon-green);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}
.accordion-button::after {
    filter: invert(1);
}
.accordion-button:not(.collapsed)::after {
    filter: invert(70%) sepia(80%) saturate(1000%) hue-rotate(90deg); /* Aproximação do verde neon */
}
.accordion-body {
    background-color: #050505;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==== Floating CTA ==== */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}
.floating-cta .btn-neon {
    border-radius: 5px; /* Levemente arredondado para não ser tão pontudo no floating */
    padding: 15px 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.8);
    background-color: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(5px);
}

/* ==== Prova de Autoridade / Dinossauros ==== */
.veterano-card {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 30px;
    text-align: center;
}

.veterano-img-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #333;
    margin: 0 auto 20px auto;
    background: #1f1f1f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 3rem;
}

/* ==== Responsividade ==== */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        padding: 10px 0;
        text-align: center;
    }
    .hero-bunker h1 {
        font-size: 2.5rem;
    }
    .pricing-card.popular {
        transform: scale(1);
        margin-top: 40px;
    }
    section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .hero-bunker h1 {
        font-size: 2rem;
    }
    .floating-cta {
        bottom: 15px;
        right: 15px;
    }
    .floating-cta .btn-neon {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    .section-title h2 {
        font-size: 2rem;
    }
}
