/* =========================================
   1. RESET MASTER DO ASTRA (O Segredo)
   ========================================= */
/* Força os containers principais a ocuparem 100% */
.ast-container, 
.site-content,
.entry-content,
.ast-page-builder-template .entry-content {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

/* Remove margens laterais automáticas do body */
html, body {
    overflow-x: hidden; /* Evita rolagem horizontal acidental */
    margin: 0;
    padding: 0;
}

/* Garante que imagens não estourem */
img {
    max-width: 100%;
    height: auto;
}

/* =========================================
   2. VARIÁVEIS GLOBAIS (CORES)
   ========================================= */
:root {
    --mapea-merlot: #4F0713;
    --mapea-rosa:   #E499B6;
    --mapea-gold:   #FDC762;
    --mapea-rubi:   #AD0919;
    --mapea-bg:     #ffffff;
    --mapea-gray:   #f4f4f4;
}

/* =========================================
   3. TIPOGRAFIA BASE
   ========================================= */
body {
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* =========================================
   4. COMPONENTES REUTILIZÁVEIS
   ========================================= */

/* Botão Padrão Mapea (Se quiser usar em vários lugares) */
.btn-mapea-global {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--mapea-merlot);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-mapea-global:hover {
    background-color: var(--mapea-rubi);
    transform: translateY(-3px);
    color: white;
}