:root {
    /* Primary (base) */
    --color-primary: #1a4bb0;
    --color-primary-50: #dce7ff;
    --color-primary-100: #a9c0ff;
    --color-primary-200: #6c8df0;
    --color-primary-300: #4c73df;
    --color-primary-400: #2f57c6;
    --color-primary-500: #1d3fad; /* main */
    --color-primary-600: #183692;
    --color-primary-700: #122c78;
    --color-primary-800: #0c225e;
    --color-primary-900: #071845;

    /* Complementary / Secondary */
    --color-secondary: #ad8b1d;

    /* Analogous */
    --color-analog-1: #4a1dad;
    --color-analog-2: #1d85ad;

    /* Semantic */
    --color-success: #2ecc71;
    --color-warning: #f1c40f;
    --color-danger: #e74c3c;
    --color-info: #3498db;

    /* Neutrals / background / text */
    --bg-dark: #111111;
    --bg-medium: #2d2d2d;
    --bg-light: #f5f7fb;
    --text: #ffffff;
    --muted: #cbd5e1;

    /* Elevation / shadows (example) */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 6px 18px rgba(13, 18, 38, 0.45);
}

/* Example usage */
.header {
    background: var(--bg-dark);
    color: var(--text);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--color-primary);
    color: var(--text);
}

.btn-primary:hover {
    background: var(--color-primary-400);
}

.badge-success {
    background: var(--color-success);
    color: #fff;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;

    background: #0d52c0;
    position: relative;
    overflow: hidden;
}

/* SUNBURST (Raios maiores + centralizados) */
body::before {
    content: "";
    position: fixed;
    inset: 0;

    background: repeating-conic-gradient(
        from -6deg,
        /* Centraliza o raio principal no topo */ rgba(255, 255, 255, 0.12) 0deg,
        rgba(255, 255, 255, 0.12) 10deg,
        /* Raio maior */ transparent 10deg,
        transparent 25deg /* Espaço proporcional */
    );

    opacity: 0.55;
    mix-blend-mode: soft-light;

    pointer-events: none;
}

/* Radial escurecendo a borda */
body::after {
    content: "";
    position: fixed;
    inset: 0;

    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(0, 0, 0, 0.28) 85%
    );

    pointer-events: none;
}
/* Top text */
.top-info {
    position: fixed;
    top: 10px;
    width: 100%;
    text-align: center;
    font-size: 18px;
}

.cancel {
    position: fixed;
    top: 10px;
    right: 20px;
    color: white;
    text-decoration: underline;
    cursor: pointer;
}

/* Horizontal bar container */
.progress-container {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: 6px;
    background: #2d2d2d;
    overflow: hidden;
}

/* Full bar that shrinks from right → left */
.progress-bar {
    height: 6px;
    width: 100%;
    background: white;
    transform-origin: left;
}

/* HEADER FADE-OUT + SLIDE UP ANIMATION */
#header.fade-out {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* CENTRAL CONTENT */
.center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

/* TITLE – estilo inspirado na logo */
.main-title {
    font-size: 42px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
    letter-spacing: 1px;
    margin-bottom: 50px;
}

.main-text {
    font-size: 28px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
    letter-spacing: 1px;
    margin-bottom: 60px;
}
/* WhatsApp Icon */
.wpp-icon {
    width: 28px; /* tamanho ideal */
    height: 28px; /* mantém proporcional */
    object-fit: contain; /* evita distorção */
    margin-right: 10px; /* espaço do texto */
}

/* WhatsApp Button */
.btn-wpp {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #25d366;
    color: #fff;

    padding: 18px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;

    box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);

    animation: pulse 1.3s infinite ease-in-out;
}

/* Pulsing animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 0 30px rgba(37, 211, 102, 0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    }
}

.megaphone {
    width: 280px; /* aumente para o tamanho que quiser */
    display: block;
    margin: 0 auto 5px auto;
}

.sub-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.landing-wrapper {
    min-height: calc(100vh - 90px); /* desconta navbar */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding-bottom: 60px; /* ⬅️ espaço pro footer */
}

/* ========================= */
/* MOBILE AJUSTES REAIS */
/* ========================= */
@media (max-width: 768px) {
    /* Título principal maior */
    .main-text {
        font-size: 20px;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    /* Logo bem maior */
    .megaphone {
        width: 200px;
        margin-bottom: 28px;
    }

    /* Texto secundário mais legível */
    .sub-text {
        font-size: 20px;
        max-width: 360px;
        margin-bottom: 48px;
    }

    #header > div.mx-auto {
        margin-left: 12px !important;
        margin-right: auto !important;
        text-align: left;
        font-size: 14px;
    }
}

.landing-footer {
    position: fixed;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);

    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    white-space: nowrap;

    z-index: 10;
}

.landing-footer a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.landing-footer a:hover {
    text-decoration: underline;
}
