/*
Theme Name: MB Tactical Defense
Theme URI: https://mikeiasbezerra.com.br
Author: Fernanda
Description: Tema customizado para Mikeias Bezerra Tactical Defense - treinamento tático e defesa pessoal.
Version: 1.0
Text Domain: mb-tactical
*/

/* ==========================================================================
   RESET BÁSICO
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--mb-white);
    background: var(--mb-white);
    line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

/* ==========================================================================
   VARIÁVEIS DE COR (baseadas na seção "Cores que nos definem")
   ========================================================================== */
:root {
    --mb-black: #0d0d0d;
    --mb-black-soft: #161616;
    --mb-red: #d81f26;
    --mb-red-dark: #b3181f;
    --mb-gray: #8a8a8a;
    --mb-gray-light: #f2f2f2;
    --mb-white: #ffffff;

    --mb-font-display: 'Anton', 'Oswald', 'Bebas Neue', sans-serif;
    --mb-container: 1200px;
}

/* ==========================================================================
   TIPOGRAFIA / TÍTULOS ESTILO "MILITAR"
   ========================================================================== */
h1, h2, h3, h4,
.mb-heading {
    font-family: var(--mb-font-display);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
    margin: 0;
}

.mb-eyebrow {
    color: var(--mb-red);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* ==========================================================================
   LAYOUT / CONTAINER
   ========================================================================== */
.mb-container {
    max-width: var(--mb-container);
    margin: 0 auto;
    padding: 0 24px;
}

#sobre, #cursos, #filosofia, #contato {
    scroll-margin-top: 90px;
}

.mb-section {
    padding: 80px 0;
}

.mb-section--dark {
    background: var(--mb-black);
    color: var(--mb-white);
}

.mb-section--light {
    background: var(--mb-white);
    color: var(--mb-black);
}

.mb-section--gray {
    background: var(--mb-gray-light);
}

/* ==========================================================================
   BOTÕES
   ========================================================================== */
.mb-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: 2px solid transparent;
    transition: all 0.25s ease;
}

.mb-btn--primary {
    background: var(--mb-red);
    color: var(--mb-white);
}
.mb-btn--primary:hover {
    background: var(--mb-red-dark);
}

.mb-btn--outline {
    background: transparent;
    border-color: var(--mb-black);
    color: var(--mb-black);
}
.mb-btn--outline:hover {
    background: var(--mb-black);
    color: var(--mb-white);
}

.mb-btn--outline-light {
    background: transparent;
    border-color: var(--mb-white);
    color: var(--mb-white);
}
.mb-btn--outline-light:hover {
    background: var(--mb-white);
    color: var(--mb-black);
}

/* Utilitário de acessibilidade */
.screen-reader-text {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(1px,1px,1px,1px);
}
