/* ===== FONTES ===== */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-400.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-500.woff2') format('woff2');
    font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-600.woff2') format('woff2');
    font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-700.woff2') format('woff2');
    font-weight: 700; font-style: normal; font-display: swap;
}

/* ===== RESET ===== */
*, body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== PALETA ===== */
:root {
    --cor-primaria:   #111111;
    --cor-secundaria: #c8956a;
    --cor-destaque:   #c8956a;
    --cor-fundo:      #f5f5f5;
    --cor-texto:      #111111;
    --cor-navbar:     rgba(0, 0, 0, 0.92);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--cor-texto);
    background: var(--cor-fundo);
}

/* ===== NAVBAR ===== */
.navbar {
    background: var(--cor-navbar) !important;
    overflow: visible !important;
    padding: 0 !important;
    height: 58px;
}
.navbar > .container {
    overflow: visible !important;
    height: 54px;
    align-items: center;
}
.navbar .navbar-collapse,
.navbar-brand {
    overflow: visible !important;
}
.navbar-brand {
    overflow: visible !important;
    padding: 0;
    margin: 0;
}
.navbar-brand {
    font-size: 1.3rem;
    letter-spacing: 1px;
    color: #ffffff !important;
    padding: 2px 0;
}
.navbar-logo {
    height: 110px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: -48px;
    margin-top: -38px;
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.6));
    position: relative;
    z-index: 200;
}
.navbar .nav-link {
    color: #cccccc !important;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: color 0.2s;
}
.navbar .nav-link:hover {
    color: #ffffff !important;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed !important;
        top: 58px;
        left: 0;
        right: 0;
        height: auto !important;
        max-height: calc(100vh - 58px);
        margin: 0;
        background: #080808;
        padding: 6px 28px 22px;
        overflow-y: auto;
        z-index: 1040;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    }
    .navbar-collapse:not(.show) {
        display: none !important;
    }
    .navbar-nav {
        margin-top: 6px;
    }
    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .navbar-nav .nav-link {
        padding: 16px 4px !important;
        font-size: 0.95rem !important;
    }
}


/* ===== HERO ===== */
#hero {
    height: 100vh;
    background:
        radial-gradient(circle at 50% 28%, rgba(200,149,106,.18) 0%, rgba(0,0,0,0) 45%),
        radial-gradient(circle at 50% 100%, #1a1108 0%, #050505 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.hero-inner {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}
.hero-logo {
    width: 160px;
    max-width: 60vw;
    margin: 0 auto 22px;
    display: block;
    filter: drop-shadow(0 0 24px rgba(200,149,106,.35));
}
.hero-title {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    color: var(--cor-destaque);
}
.hero-subtitle {
    font-size: 1.15rem;
    font-style: italic;
    color: #ddd;
    opacity: 0.9;
    margin-top: 10px;
}
.hero-mensagens {
    margin-top: 22px;
}
.hero-mensagem-card {
    background: #15100b;
    border: 1px solid rgba(200,149,106,.4);
    border-radius: 14px;
    padding: 22px 26px;
    box-shadow: 0 10px 30px rgba(0,0,0,.5);
}
.hero-mensagem-icon {
    color: var(--cor-destaque);
    opacity: .85;
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: block;
    text-align: center;
}
.hero-mensagem-texto {
    font-size: .73rem;
    font-style: italic;
    line-height: 1.55;
    color: #f1ede6;
    margin-bottom: 10px;
    text-align: left;
}
.hero-mensagem-autor {
    font-size: .72rem;
    color: var(--cor-destaque);
    font-weight: 700;
    margin-bottom: 0;
    text-align: left;
}
.hero-scroll-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(200,149,106,.5);
    border-radius: 50%;
    color: var(--cor-destaque);
    margin-top: 48px;
    animation: hero-bounce 2.2s infinite;
    text-decoration: none;
}
.hero-scroll-cta:hover { color: #fff; border-color: #fff; }
@keyframes hero-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}
@media (max-width: 768px) {
    .hero-title { font-size: 1.9rem; }
    .hero-subtitle { font-size: 1rem; }
}

/* ===== SEÇÕES ===== */
section[id] {
    scroll-margin-top: 58px;
}
.section {
    padding: 56px 0;
    background: #fff;
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.section > .container { width: 100%; }

#livro.section {
    position: relative;
    overflow: hidden;
    background: transparent;
    align-items: flex-start;
    padding: 24px 0 32px;
}
#livro.section::before {
    content: '';
    position: absolute;
    inset: -30px;
    background: url('../images/capadounocomlogodaplataforma.jpg') no-repeat center center / cover;
    filter: blur(80px);
    z-index: 0;
}
#livro.section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.40);
    z-index: 0;
}
#livro.section .container {
    position: relative;
    z-index: 1;
}
.section.bg-light {
    background: var(--cor-fundo) !important;
}

/* ===== QUEM SOMOS ===== */
#quem-somos.section {
    min-height: 100vh;
    padding: 36px 0;
}
.quem-somos-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 44px;
    box-shadow: 0 4px 30px rgba(0,0,0,.06);
    position: relative;
}
.quem-somos-quote-icon {
    display: block;
    text-align: center;
    font-size: 1.3rem;
    color: #c8956a;
    opacity: .6;
    margin-bottom: 8px;
}
.quem-somos-texto {
    font-size: .82rem;
    line-height: 1.55;
    color: #333;
    text-align: justify;
    column-count: 3;
    column-gap: 36px;
    column-rule: 2px solid #eee0d0;
}
.quem-somos-texto p {
    margin-bottom: .7rem;
}

@media (max-width: 992px) {
    .quem-somos-texto { column-count: 2; font-size: .82rem; }
}
@media (max-width: 768px) {
    #quem-somos.section { min-height: auto; }
    .quem-somos-card { padding: 24px 20px; }
    .quem-somos-texto { column-count: 1; font-size: .88rem; line-height: 1.7; }
    .quem-somos-dropcap::first-letter { font-size: 2.6rem; }
}
.section-title {
    font-size: 1.9rem;
    color: #111111;
    position: relative;
    margin-bottom: 1.5rem;
}
.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #111111;
    margin-top: 8px;
}
.section-title.mx-auto::after {
    margin: 8px auto 0;
}

/* ===== BAND INFO ===== */
.section-band {
    padding: 60px 0;
    background: url('../images/bg-band.jpg') no-repeat center center / cover;
    position: relative;
    z-index: 0;
}
.section-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 15, 5, 0.82);
    z-index: -1;
}
.section-band .container {
    position: relative;
    z-index: 1;
}
.section-band i {
    font-size: 2.5rem;
    color: var(--cor-destaque);
    display: block;
    margin-bottom: 12px;
}
.section-band h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
}

/* ===== BOOK SHOWCASE ===== */
.book-showcase {
    display: inline-block;
    position: relative;
    perspective: 900px;
}
.book-3d {
    display: inline-block;
    transform: rotateY(-12deg);
    transition: transform 0.4s ease;
}
.book-3d:hover {
    transform: rotateY(0deg);
}
.book-cover-hero {
    max-width: 100%;
    max-height: 48vh;
    width: auto;
    border-radius: 3px 12px 12px 3px;
    display: block;
    margin: 0 auto;
    box-shadow:
        -6px  0px 0 #8a6040,
        -12px 0px 0 #6b4828,
        -16px 0px 0 #4e3218,
        -18px 6px 28px rgba(0,0,0,0.45),
          0px 8px 24px rgba(0,0,0,0.25);
}
.livro-uno-box {
    background: #fff;
    border-left: 3px solid #c8956a;
    border-radius: 8px;
    padding: 12px 18px;
    margin-top: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.livro-uno-titulo {
    font-size: .72rem;
    font-weight: 700;
    color: #c8956a;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: 5px;
}
.livro-uno-texto {
    font-size: .68rem;
    line-height: 1.45;
    color: #444;
    text-align: justify;
    font-style: italic;
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .livro-uno-box { margin-top: 18px; padding: 14px 18px; }
}

/* ===== LIVRO PDF GRATUITO ===== */
.livro-pdf-box {
    max-width: 460px;
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px;
    box-shadow: 0 4px 30px rgba(0,0,0,.08);
}
.livro-pdf-icon {
    font-size: 2.6rem;
    color: #c8956a;
}
.btn-livro-pdf {
    display: inline-block;
    background: #c8956a;
    color: #111;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background .2s;
}
.btn-livro-pdf:hover {
    background: #b07f53;
    color: #111;
}

.book-cta-btn {
    padding: 23px 56px;
    font-size: 1.25rem;
    letter-spacing: 1px;
    border-radius: 50px;
    width: 100%;
    max-width: 470px;
    background: #111111 !important;
    border: none !important;
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.book-cta-btn:hover {
    background: #333333;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.55);
}

/* ===== FORMULÁRIO PEDIDO (inline na seção livro) ===== */
#form-pedido .form-label {
    font-size: .74rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 2px;
}
#form-pedido .form-control {
    font-size: .82rem;
    padding: 8px 10px;
    height: auto;
}
#form-pedido .row { --bs-gutter-y: 0.3rem; }

/* Campo de arquivo com estilo do site */
.comprovante-btn {
    background: #c8956a;
    color: #fff;
    border: 1px solid #c8956a;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 14px;
    user-select: none;
    transition: background 0.2s;
}
.comprovante-btn:hover { background: #b07e54; border-color: #b07e54; }
.comprovante-input {
    font-size: .82rem;
    color: #555;
    cursor: pointer;
    padding: 8px 10px;
}
.comprovante-input::file-selector-button { display: none; }
#form-pedido input[type="file"].form-control::file-selector-button:hover {
    background: #b07e54;
}
#form-pedido .form-control.is-invalid,
#form-pedido .comprovante-input.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 2px rgba(220,53,69,.18);
}
.comprovante-btn.is-invalid {
    background: #dc3545 !important;
    border-color: #dc3545 !important;
}
.resumo-pedido {
    background: #f7f3fc;
    border-radius: 8px;
    padding: 10px 16px;
}
.resumo-linha {
    display: flex;
    justify-content: space-between;
    font-size: .82rem;
    padding: 3px 0;
    color: #555;
}
.resumo-linha.resumo-total {
    font-size: .95rem;
    font-weight: 700;
    color: #111;
    border-top: 1px solid #ddd;
    margin-top: 4px;
    padding-top: 7px;
}
.pix-info {
    background: #111;
    color: #fff;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: .80rem;
}
.btn-whatsapp-pedido {
    background: #c8956a !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px;
    padding: 11px;
    font-size: .92rem;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(200,149,106,0.35);
}
.btn-whatsapp-pedido:hover {
    background: #b07e54 !important;
    transform: translateY(-2px);
}

/* ===== LIVRO ===== */
.book-card {
    border: none;
    transition: transform 0.2s;
}
.book-card:hover {
    transform: translateY(-4px);
}
.btn-primary {
    background: #111111;
    border-color: #111111;
}
.btn-primary:hover {
    background: #333333;
    border-color: #333333;
}

/* ===== AGENDA ===== */
.agenda-card {
    border: 1px solid #e8d5b5;
    border-radius: 12px;
    transition: box-shadow 0.2s;
}
.agenda-card:hover {
    box-shadow: 0 6px 20px rgba(107, 79, 58, 0.15);
}
.agenda-icon {
    font-size: 2rem;
    color: var(--cor-secundaria);
}

/* ===== LOCALIZAÇÃO ===== */
address p {
    font-style: normal;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* ===== CONTATO ===== */
.form-control:focus {
    border-color: #888;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15);
}

/* ===== FOOTER ===== */
.footer {
    background: #111111;
    font-size: 0.9rem;
}

/* ===== AVISO DE COOKIES / PPD ===== */
#ppd-aviso {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    background: #111;
    color: #fff;
    padding: 16px 18px;
    box-shadow: 0 -3px 14px rgba(0, 0, 0, .35);
}
#ppd-aviso .ppd-aviso-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
#ppd-aviso p {
    margin: 0;
    color: #ddd;
    font-size: .82rem;
    line-height: 1.5;
    flex: 1;
    min-width: 240px;
}
#ppd-aviso a {
    color: #c8956a;
    font-weight: 700;
    text-decoration: none;
}
#ppd-aviso a:hover {
    text-decoration: underline;
}
#ppd-aviso button {
    background: #c8956a;
    color: #111;
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}
#ppd-aviso button:hover {
    background: #d9a87d;
}

/* ===== ATIVIDADES ===== */
.atividades-lista {
    list-style: none;
    padding: 0;
}
.atividades-lista li {
    padding: 12px 0 12px 28px;
    border-bottom: 1px solid #f0eaf8;
    position: relative;
    font-size: .94rem;
    color: #333;
    line-height: 1.5;
}
.atividades-lista li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 21px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cor-secundaria);
}

/* ===== ATIVIDADES BLOCOS (3 colunas) ===== */
.ativ-bloco {
    background: #fff;
    border: 1px solid #ede8e0;
    border-radius: 14px;
    padding: 30px 26px;
    height: 100%;
}
.ativ-titulo {
    font-size: .86rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #111;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0eaf8;
}
.ativ-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px solid #f9f7f4;
    font-size: .94rem;
    color: #333;
}
.ativ-item:last-of-type { border-bottom: none; }
.ativ-icon {
    color: #c8956a;
    font-size: 1rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}
.ativ-bullet {
    width: 7px;
    height: 7px;
    min-width: 7px;
    border-radius: 50%;
    background: #c8956a;
    flex-shrink: 0;
}
.tecnologia-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f7f3fc;
    border-radius: 12px;
    padding: 18px 20px;
    height: 100%;
}
.tecnologia-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8956a;
    font-size: 1rem;
}

/* ===== AGENDA GRADE ===== */
.agenda-grade {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.agenda-dia {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    border-radius: 10px;
    background: #f0f0f0;
    color: #999;
}
.agenda-dia.ativo {
    background: #111;
    color: #fff;
}
.agenda-dia-nome { font-family: 'Inter', sans-serif; font-size: 1.02rem; }
.agenda-atividade {
    flex: 1;
    text-align: center;
    font-size: .85rem;
    font-style: italic;
    opacity: .75;
    padding: 0 12px;
}
.agenda-horario  { font-size: 1.2rem; font-weight: 700; letter-spacing: 1px; }
.agenda-dia.ativo .agenda-horario { color: #c8956a; }

/* ===== CANALIZAÇÕES ===== */
.canal-filtro-btn {
    border: 1px solid #bbb;
    background: transparent;
    color: #555;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: .85rem;
    transition: all .2s;
}
.canal-filtro-btn.active,
.canal-filtro-btn:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* ===== PSICOGRAFIAS ===== */
.psico-categoria-card {
    background: #fff;
    border: 1px solid #e8d5b5;
    border-radius: 14px;
    padding: 28px;
    height: 100%;
    transition: box-shadow .2s;
}
.psico-categoria-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.10); }
.psico-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: #111;
    color: #c8956a;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 14px;
}
.psico-categoria-card h5 { font-family: 'Inter', sans-serif; margin-bottom: 12px; }
.psico-categoria-card p  { font-size: .9rem; color: #555; line-height: 1.7; }

/* ===== LOCALIZAÇÃO ===== */
.foto-casa {
    display: block;
    max-width: 100%;
    height: 320px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 8px;
}

/* ===== HISTÓRICO CANALIZAÇÕES / PSICOGRAFIAS ===== */
.historico-card {
    background: #fff;
    border: 1px solid #e8d5b5;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 70px;
}
.historico-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid #e8d5b5;
    font-weight: 600;
    font-size: .9rem;
    color: #c8956a;
    flex-shrink: 0;
}
.historico-lista {
    max-height: 420px;
    overflow-y: auto;
    flex: 1;
}
.historico-lista::-webkit-scrollbar { width: 4px; }
.historico-lista::-webkit-scrollbar-track { background: transparent; }
.historico-lista::-webkit-scrollbar-thumb { background: #e8d5b5; border-radius: 4px; }
.historico-item {
    padding: 12px 18px;
    border-bottom: 1px solid #f3ebe0;
}
.historico-item:last-child { border-bottom: none; }
.historico-data { font-size: .7rem; color: #c8956a; display: block; margin-bottom: 3px; }
.historico-titulo { font-size: .85rem; color: #222; margin: 0 0 4px; font-weight: 600; line-height: 1.3; }
.historico-trecho { font-size: .78rem; color: #888; margin: 0 0 4px; line-height: 1.5; }
.historico-completo { display: none; }
.historico-completo .historico-trecho { color: #555; }
.historico-ver-item {
    background: none;
    border: none;
    color: #c8956a;
    font-size: .72rem;
    font-weight: 600;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.historico-ver-item:hover { text-decoration: underline; }
.historico-vazio { text-align: center; color: #aaa; font-size: .85rem; padding: 28px 18px; margin: 0; }

/* ===== PSICOGRAFIA CARTAS (renderizadas do JSON) ===== */
.psico-carta {
    background: #fff;
    border: 1px solid #e8d5b5;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
}
.psico-carta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.psico-tipo-badge {
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}
.psico-tipo-humanos { background: #ede9fe; color: #5b21b6; }
.psico-tipo-outros  { background: #fef3c7; color: #92400e; }
.psico-tipo-egregora   { background: #dbeafe; color: #1e40af; }
.psico-tipo-seres-luz  { background: #fce7f3; color: #9d174d; }
.psico-tipo-visitantes { background: #d1fae5; color: #065f46; }
.psico-carta-data   { font-size: .75rem; color: #aaa; }
.psico-carta-titulo {
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    color: #111;
    margin-bottom: 10px;
}
.psico-carta-texto {
    font-size: .88rem;
    color: #444;
    line-height: 1.75;
}

#contato.section {
    min-height: 90vh;
    padding: 56px 0 40px;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .section { padding: 44px 0; min-height: auto; }
    .section-band { padding: 36px 0; }
    .book-cover-hero { max-height: 45vh; }
}
