
/* =========================================================
   🎨 VARIÁVEIS (tema)
========================================================= */
:root {
    --laranja: #ff9c00;
    --roxo: #c300ff;
    --roxo-escuro: #9d04cc;
    --laranja-escuro: #ff8902;
    --azul: #2F96BA;
    --preto: #111111;
    --cinza: #f5f7fb;
    --branco: #ffffff;
    --texto: #2a2a2a;
    --bg1: #0B1629;
    --bg2: #2D445E;

    /* extras usados no CSS */
    --whatsapp: #25D366;
    --whatsapp-hover: #20c057;
    --verde: #00BB9C;
}

/* =========================================================
   🧱 BASE
========================================================= */
body {
    color: var(--texto);
    background: linear-gradient(90deg, var(--bg1) 0%, var(--bg2) 100%);
    font-size: .825rem;
}

/* =========================================================
   🔝 TOPBAR / NAV
========================================================= */
.topbar {
    background: var(--preto);
    color: var(--branco);
    font-size: .925rem;
}

.topbar a {
    color: var(--branco);
    text-decoration: none;
    opacity: .9;
}

.topbar a:hover {
    opacity: 1;
    text-decoration: underline;
}

.navbar {
    box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
}

.navbar .nav-link {
    font-weight: 600;
    font-size: .825rem;
}

/* Navbar com degradê (classe extra) */
.navbar-gradient {
    background: linear-gradient(90deg, #0c180c, #9C27B0, #2196F3);
}

.navbar.navbar-gradient .nav-link,
.navbar.navbar-gradient .navbar-brand,
.navbar.navbar-gradient .navbar-brand img {
    color: #fff !important;
}

.navbar.navbar-gradient .nav-link:hover,
.navbar.navbar-gradient .nav-link:focus {
    color: #fff !important;
    background: rgba(255, 255, 255, .12);
    border-radius: .5rem;
}

.navbar.navbar-gradient .nav-link.active {
    position: relative;
}

.navbar.navbar-gradient .nav-link.active::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -6px;
    height: 3px;
    border-radius: 999px;
    background: #fff;
    opacity: .9;
}

.navbar.navbar-gradient .navbar-toggler {
    border-color: rgba(255, 255, 255, .55);
}

.navbar.navbar-gradient .navbar-toggler .navbar-toggler-icon {
    filter: invert(1) brightness(2);
}

/* Dropdown (geral) */
.navbar .dropdown-menu {
    border-radius: .75rem;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}
/* ===================== */
/* CORES GERAIS DO TEMA  */
/* ===================== */
body {
    background-color: #21344c !important;
    color: #ffffff !important;
}

/* ===================== */
/* TÍTULOS / CABEÇALHOS */
/* ===================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ff9c00 !important;
}

/* Texto secundário */
p,
label,
span,
small {
    color: #ffffff !important;
}

/* ===================== */
/* BOTÕES DO WHATSAPP   */
/* ===================== */
.whatsapp-button {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid #ff9c00 !important;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
}

.whatsapp-button span {
    color: #ffffff !important;
    font-weight: 600;
}

.whatsapp-button:hover {
    background: rgba(255, 156, 0, 0.2) !important;
    transform: translateX(4px);
}

/* ===================== */
/* MODAL DE CONTATO      */
/* ===================== */
.modal-content {
    background-color: #21344c !important;
    border: 1px solid #ff9c00;
    color: #ffffff !important;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 156, 0, 0.4);
}

.modal-title {
    color: #ff9c00 !important;
}

.btn-close {
    filter: invert(1) !important;
}

/* ===================== */
/* FORMULÁRIO DE CONTATO */
/* ===================== */
.form-floating>label {
    color: #ffffff !important;
    opacity: 0.7;
}

.form-floating .form-control,
.form-floating .form-control:focus {
    background-color: transparent !important;
    border: 1px solid #ff9c00 !important;
    color: #ffffff !important;
}

.form-control::placeholder {
    color: #ffffff !important;
    opacity: 0.5;
}

/* ===================== */
/* BOTÃO DE ENVIO        */
/* ===================== */
#btContato {
    background-color: #ff9c00;
    border: none;
    font-weight: 600;
    color: #21344c !important;
}

#btContato:hover {
    background-color: #ffaa22;
}

/* Spinner */
.spinner-border {
    border-color: #ffffff !important;
}

/* ===================== */
/* ALERTAS (SUCESSO/ERRO) */
/* ===================== */
.alert-success {
    background-color: rgba(0, 255, 150, 0.15);
    color: #00ff96 !important;
    border: 1px solid #00ff96 !important;
}

.alert-danger {
    background-color: rgba(255, 0, 0, 0.15);
    color: #ff6b6b !important;
    border: 1px solid #ff6b6b !important;
}

/* Modal escuro */
#modalContato .modal-content {
    background-color: #21344c;
    border: 1px solid #ff9c00;
    color: #ffffff;
}

#modalContato .modal-header {
    border-bottom: 1px solid rgba(255, 156, 0, 0.4);
}

#modalContato .modal-title {
    color: #ff9c00;
}

#modalContato .btn-close {
    filter: invert(1);
}

/* Labels do form */
#modalContato .form-label {
    color: #ffffff;
}

/* Inputs e textarea */
#modalContato .form-control {
    background-color: transparent;
    border: 1px solid #ff9c00;
    color: #ffffff;
    border-radius: 6px;
}

#modalContato .form-control:focus {
    background-color: transparent;
    border-color: #ff9c00;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(255, 156, 0, 0.25);
}

/* Placeholder mais suave */
#modalContato .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Botão enviar */
#btContato {
    background-color: #ff9c00;
    border: none;
    font-weight: 600;
    color: #21344c;
}

#btContato:hover {
    background-color: #ffb133;
}

/* Alertas dentro do modal */
#modalContato .alert-success {
    background-color: rgba(0, 255, 150, 0.1);
    color: #00ff96;
    border-color: #00ff96;
}

#modalContato .alert-danger {
    background-color: rgba(255, 0, 0, 0.1);
    color: #ff6b6b;
    border-color: #ff6b6b;
}

a {
    color: #ff9c00;
}



/* Caixa de cada campo (bloco inteiro) */
#modalContato .campo-box {
    background-color: #1b2a38;
    /* um pouco mais claro que o body */
    border: 1px solid #2c3f57;
    border-radius: 6px;
    padding: 6px 12px 10px;
}

/* Label dentro do bloco */
#modalContato .campo-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
    /* texto branco */
    margin-bottom: 2px;
}

/* Input/textarea “fundido” no bloco, sem borda separada */
#modalContato .campo-input {
    background-color: transparent;
    border: 0;
    padding: 0;
    color: #ffffff;
    box-shadow: none;
}

/* Foco suave, sem “quadro” extra */
#modalContato .campo-input:focus {
    background-color: transparent;
    border: 0;
    box-shadow: none;
    outline: none;
}

/* Placeholder clarinho */
#modalContato .campo-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Modal em si no padrão da página */
#modalContato .modal-content {
    background-color: #21344c;
    border: 1px solid #ff9c00;
    color: #ffffff;
}

#modalContato .modal-header {
    border-bottom: 1px solid rgba(255, 156, 0, 0.4);
}

#modalContato .modal-title {
    color: #ff9c00;
}

#modalContato .btn-close {
    filter: invert(1);
}

/* Botão enviar */
#btContato {
    background-color: #ff9c00;
    border: none;
    font-weight: 600;
    color: #21344c;
}

#btContato:hover {
    background-color: #ffb133;
}

