body {
  margin: 0;
  padding: 0;
  font-family: 'Georgia', serif;
  background-color: #120c1e;
  color: #e0d4f7;
}

/* garante que o header englobe tudo */
.cabecalho {
    background: #1e1830;
    color: #fff;
    box-shadow: 0 2px 8px rgba(145, 98, 255, 0.3);
    padding-bottom: 0; /* 🔹 antes estava 10px, pode atrapalhar */
    position: relative;
    z-index: 10;
}

.topo-barra {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  flex-wrap: wrap;
}

.logo-area img.logo {
  width: 80px;
  height: auto;
}

.titulo-area {
  text-align: center;
  flex: 1;
}

.titulo-area h1 {
  margin: 0;
  font-size: 28px;
  color: #d6b2ff;
  font-family: Georgia, serif;
}

.frase {
  font-size: 14px;
  color: #ccc;
}

.login-area {
  text-align: right;
  min-width: 160px;
}

.login-area a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.login-area .btn-login {
  background: #5f2b8a;
  padding: 6px 14px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(100, 60, 160, 0.4);
}

.menu-horizontal {
    background: #141025;
    padding: 10px 0;
    margin-bottom: 0; /* 🔹 remove qualquer espaço forçado */
}

.menu-horizontal ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  gap: 30px;
  flex-wrap: wrap;
}

.menu-horizontal ul li a {
  color: #d2afff;
  text-decoration: none;
  font-weight: bold;
  font-family: Georgia, serif;
  transition: 0.3s;
}

/* banner dentro do fluxo */
.banner-promo {
    background: linear-gradient(90deg, #2a003f, #5e3b8c);
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    border-top: 1px solid #5e3b8c;
    border-bottom: 2px solid #d7b0ff;
    text-shadow: 0 0 6px rgba(255,200,255,0.7);
    display: block; /* 🔹 força o banner ocupar a largura total */
}

.rodape {
  background: #1e1830;
  color: #ccc;
  text-align: center;
  padding: 30px 10px 10px 10px;
  box-shadow: 0 -2px 10px rgba(145, 98, 255, 0.2);
  margin-top: 60px;
}

.container-rodape {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.botao-rodape {
  background: #5f2b8a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 6px rgba(100, 60, 160, 0.4);
  transition: background 0.3s;
}

.botao-rodape:hover {
  background: #743ab5;
}

.assinatura {
  font-size: 13px;
  color: #999;
}

main.conteudo-principal {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px;
  color: #eee;
}

.secao {
  margin-bottom: 60px;
  padding: 20px;
  background: #211a33;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(145, 98, 255, 0.1);
}

.secao h2 {
  color: #d6b2ff;
  margin-bottom: 10px;
  font-size: 24px;
}

.secao p, .secao blockquote, .secao ul {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}



/* Painel do Membro */
.painel-membro {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background-color: #1e1e2f;
  border-radius: 12px;
  margin: 2rem auto;
  max-width: 800px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  color: #f2f2f2;
}

.painel-foto {
  text-align: center;
  margin-bottom: 2rem;
}

.foto-perfil {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #b47cff;
  box-shadow: 0 0 10px rgba(180, 124, 255, 0.6);
  margin-bottom: 1rem;
}

.saudacao {
  font-style: italic;
  font-size: 1rem;
  color: #ccc;
}

.painel-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.painel-botao {
  text-align: center;
  background-color: #322a44;
  color: #f0f0f0;
  padding: 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  box-shadow: 0 0 8px rgba(180, 124, 255, 0.3);
}

.painel-botao:hover {
  background-color: #472c63;
  color: #fff;
}
/* Portal Interno - Estilo dos Membros */
.membro-header {
    text-align: center;
    margin-top: 40px;
}

    .membro-header h2 {
        font-size: 24px;
        color: #E6E6FA;
    }

.membro-foto {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #E6E6FA;
    object-fit: cover;
    margin: 10px auto;
    display: block;
}

.membro-area {
    max-width: 700px;
    margin: 40px auto;
    padding: 20px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.membro-area h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

.membro-area ul {
    list-style: none;
    padding-left: 0;
}

.membro-area ul li {
    margin-bottom: 10px;
}

.membro-area ul li a {
    color: #E6E6FA;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.membro-area ul li a:hover {
    color: #FFD700;
}
.admin-button {
    display: inline-block;
    background: linear-gradient(to right, #6a0dad, #4b0082);
    color: #fff;
    padding: 12px 20px;
    margin: 10px 8px;
    border: 2px solid #a76eff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(106, 13, 173, 0.4);
}

    .admin-button:hover {
        background: #a76eff;
        color: #1c032b;
        border-color: #fff;
        box-shadow: 0 6px 14px rgba(255, 255, 255, 0.2);
    }

.painel-admin {
    text-align: center;
    margin-top: 30px;
}

.admin-button {
    display: inline-block;
    background: linear-gradient(145deg, #6a0dad, #3b0066);
    color: #fff;
    padding: 10px 18px;
    margin: 10px;
    border: none;
    border-radius: 14px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(106, 13, 173, 0.3);
    transition: 0.3s ease-in-out;
    min-width: 180px;
}

.admin-button:hover {
    background: linear-gradient(145deg, #a76eff, #4b0082);
    color: #1b0032;
    box-shadow: 0 6px 14px rgba(255, 255, 255, 0.25);
}
.mensagem-sucesso {
    background-color: #dff0d8;
    color: #3c763d;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
}

.mensagem-erro {
    background-color: #f2dede;
    color: #a94442;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
}
.botao-editar,
.botao-excluir {
    display: inline-block;
    padding: 6px 12px;
    margin: 2px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.botao-editar {
    background-color: #5c4db1;
    color: #fff;
}

    .botao-editar:hover {
        background-color: #4438a0;
    }

.botao-excluir {
    background-color: #d9534f;
    color: #fff;
}

.botao-excluir:hover {
    background-color: #c9302c;
}
.login-container {
    background: radial-gradient(circle at top, #2a1e3f, #1a1123);
    color: #f5ecff;
    padding: 40px;
    max-width: 420px;
    margin: 80px auto;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(160,130,255,0.3);
    font-family: 'Cormorant Garamond', serif;
}

    .login-container h2 {
        text-align: center;
        font-size: 1.8em;
        margin-bottom: 30px;
        color: #ffe473;
        text-shadow: 0 0 4px #a985f5;
    }

    .login-container label {
        display: block;
        margin-bottom: 8px;
        font-weight: bold;
        color: #ffe473;
    }

    .login-container input {
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
        border-radius: 8px;
        border: 1px solid #8a5f00;
        background-color: #2a1e3f;
        color: #fff;
    }

    .login-container button {
        background-color: #ffe473;
        color: #2a1e3f;
        border: none;
        padding: 12px 20px;
        border-radius: 8px;
        font-weight: bold;
        font-size: 1em;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .login-container button:hover {
            background-color: #f5c844;
        }

    .login-container a {
        text-decoration: none;
        color: #a985f5;
        font-weight: bold;
    }
.card-herbarium {
    background: rgba(245,255,240,0.95);
    border-left: 5px solid #6b8e23;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(80,120,60,0.3);
    margin-bottom: 30px;
    color: #2a1e3f;
    font-family: 'Cormorant Garamond', serif;
}

    .card-herbarium h3 {
        color: #3b5c2c;
        font-size: 1.5em;
    }

    .card-herbarium p {
        font-size: 1.05em;
        margin: 5px 0;
    }
.certificado-card {
    background: rgba(255, 248, 230, 0.95);
    border-left: 6px solid #dda85f;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(160,130,60,0.3);
    color: #2a1e3f;
    font-family: 'Cormorant Garamond', serif;
}

    .certificado-card h3 {
        color: #8a5f00;
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .certificado-card a {
        display: inline-block;
        margin-top: 10px;
        color: #8a5f00;
        text-decoration: none;
        font-weight: bold;
    }

        .certificado-card a:hover {
            text-decoration: underline;
        }
.botao-pagar {
    background-color: #ffe473;
    color: #2a1e3f;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

    .botao-pagar:hover {
        background-color: #f5c844;
    }

.botao-secundario {
    display: inline-block;
    margin-top: 20px;
    font-weight: bold;
    color: #a985f5;
    text-decoration: none;
}

    .botao-secundario:hover {
        text-decoration: underline;
    }
.tabela-lista th {
    background-color: #ffe473;
    color: #2a1e3f;
    padding: 10px;
}

.tabela-lista td {
    padding: 8px;
    text-align: center;
}

.botao-secundario {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 16px;
    background-color: #a985f5;
    color: #fff;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
}

    .botao-secundario:hover {
        background-color: #8a6bd3;
    }
.carta-do-dia {
    background: radial-gradient(circle, #1d1a29, #000);
    color: #f4eaff;
    padding: 40px 20px;
    text-align: center;
    font-family: 'Cinzel', serif;
    border-top: 2px solid #6943ff;
    border-bottom: 2px solid #6943ff;
}

.embaralhar {
    font-size: 1.4em;
    animation: pulse 1s infinite;
    color: #dbc9ff;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

.titulo-carta {
    font-size: 2em;
    margin-bottom: 10px;
    color: #e0bdff;
}

.nome-carta {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.container-imagem img {
    width: 240px;
    border-radius: 12px;
    box-shadow: 0 0 20px #6943ff;
    transition: transform 0.5s ease;
}

    .container-imagem img:hover {
        transform: scale(1.05);
    }

.significado-carta {
    font-size: 1.1em;
    margin-top: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid #ffffff25;
    border-radius: 10px;
    line-height: 1.6;
}
.carta-flip {
    perspective: 1000px;
    width: 260px;
    margin: 40px auto;
}

.carta-inner {
    position: relative;
    width: 100%;
    transform-style: preserve-3d;
    transition: transform 1.2s ease;
    cursor: pointer;
}

    .carta-inner.virada {
        transform: rotateY(180deg);
    }

.carta-frente, .carta-verso {
    position: absolute;
    width: 100%;
    backface-visibility: hidden;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: #1c1a2a;
    color: #f4eaff;
    box-shadow: 0 0 20px #6943ff;
}

.carta-frente {
    font-size: 1.2em;
}

.carta-verso {
    transform: rotateY(180deg);
}

    .carta-verso img {
        width: 180px;
        border-radius: 8px;
        margin-top: 10px;
    }
.grid-promocoes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.produto-box {
    background: #1c1a2a;
    border-radius: 12px;
    padding: 15px;
    width: 220px;
    text-align: center;
    box-shadow: 0 0 12px #6943ff;
    color: #f4eaff;
    transition: transform 0.3s ease;
}

    .produto-box img {
        width: 100%;
        border-radius: 8px;
    }

    .produto-box:hover {
        transform: scale(1.05);
    }
.grade-produtos {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.produto {
    width: 260px;
    background-color: rgba(34, 27, 58, 0.95);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(150, 120, 230, 0.2);
    text-align: center;
}

    .produto img {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .produto h3 a {
        text-decoration: none;
        color: #d5bfff;
        font-size: 18px;
    }

.preco-antigo {
    text-decoration: line-through;
    color: #ff9999;
}

.preco-promocional {
    color: #ffd67c;
    font-weight: bold;
}
.carrossel-produto {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto 30px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(150, 120, 230, 0.3);
}

.slide-container {
    display: flex;
    transition: transform 0.4s ease;
}

.slide {
    min-width: 100%;
    cursor: pointer;
}

.nav-left,
.nav-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(34,27,58,0.7);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px 16px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
}

.nav-left {
    left: 10px;
}

.nav-right {
    right: 10px;
}

    .nav-left:hover, .nav-right:hover {
        background-color: rgba(90, 60, 160, 0.9);
    }
.tabela-carrinho {
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
    border-collapse: collapse;
    background: rgba(34,27,58,0.95);
    color: #e8ddff;
}

    .tabela-carrinho th, .tabela-carrinho td {
        padding: 12px;
        border-bottom: 1px solid #704caf;
        text-align: center;
    }
.lista-pedido {
    list-style: none;
    padding-left: 0;
    font-size: 16px;
    margin-bottom: 10px;
}

.checkout h3 {
    margin-top: 30px;
}
.destaque-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.destaque-produto {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 800px;
    background-color: rgba(34,27,58,0.85);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 0 12px rgba(150, 120, 230, 0.3);
}

    .destaque-produto img {
        max-width: 300px;
        border-radius: 12px;
    }

.info-destaque {
    max-width: 400px;
    color: #f2ebff;
}

.preco-antigo {
    text-decoration: line-through;
    color: #ff9999;
}

.preco-promocional {
    font-weight: bold;
    color: #ffd67c;
}
.galeria-fotos img {
    width: 100px; /* ou experimente 80px se quiser ainda mais compacto */
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}


    .galeria-fotos img:hover {
        transform: scale(1.05);
    }

#ampliacaoFoto {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    flex-direction: column;
}

    #ampliacaoFoto img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 12px;
        box-shadow: 0 0 20px rgba(255,255,255,0.3);
        transition: transform 0.2s ease;
    }

#fecharBtn {
    color: #fff;
    background: none;
    border: none;
    font-size: 28px;
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
}

.seta-navegacao {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

.seta-esquerda {
    left: 30px;
}

.seta-direita {
    right: 30px;
}
.grade-cursos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.curso-card {
    background: #fdf9ff;
    border: 1px solid #d8c4ff;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 0 6px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

    .curso-card:hover {
        transform: scale(1.02);
    }

    .curso-card img {
        max-width: 100%;
        border-radius: 5px;
        margin-bottom: 10px;
    }

.status-curso.aberto {
    color: green;
    font-weight: bold;
}

.status-curso.fechado {
    color: darkred;
    font-weight: bold;
}
.tabela-admin {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

    .tabela-admin th, .tabela-admin td {
        border: 1px solid #ccc;
        padding: 8px;
        text-align: center;
    }

    .tabela-admin th {
        background-color: #3d2580;
    }

    .tabela-admin td img {
        border-radius: 4px;
    }

.moldura-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 692.07 / 773.55; /* mantém proporção da moldura */
    margin: 20px auto;
}

.area-imagem {
    position: absolute;
    inset: 0;
    overflow: hidden;
    touch-action: none;
}

.foto-ajustavel {
    position: absolute;
    width: 78%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center center;
    border-radius: 50%;
    user-select: none;
    transition: all 0.3s ease;
}

.moldura-fixa {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

@media (max-width: 400px) {
    .moldura-wrapper {
        max-width: 260px;
    }

    .foto-ajustavel {
        width: 80%;
    }
}

@keyframes entradaMoldura {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.botao-ajustar {
    display: inline-block;
    margin: 10px 8px;
    padding: 8px 16px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}


h1, h2, h3 {
    font-size: 20px;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* Botões adaptados para toque */
.botao-rodape {
    display: inline-block;
    font-size: 15px;
    padding: 12px 18px;
    border-radius: 8px;
    background: #42027d;
    color: #fff;
    text-align: center;
}

/* Cards de cursos ou produtos */
.curso-card, .produto-card {
    padding: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Menu responsivo lateral */
.menu-admin {
    position: relative;
    width: 100%;
    padding: 16px;
    background: #2d2d3a;
    color: #fff;
}

    .menu-admin a {
        font-size: 16px;
        padding: 8px;
        display: block;
        border-bottom: 1px solid #444;
    }

/* Painel principal com menos margem */
.painel-admin {
    padding: 20px;
}

/* Elementos com muito texto */
p, ul, li {
    font-size: 15px;
    line-height: 1.6;
}

/* Ajuste de grids para uma coluna */
.status-admin-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@keyframes brilho-mistico {
    0% {
        box-shadow: 0 0 0px rgba(255, 255, 255, 0);
    }

    50% {
        box-shadow: 0 0 20px rgba(153, 0, 255, 0.7);
    }

    100% {
        box-shadow: 0 0 0px rgba(255, 255, 255, 0);
    }
}

.foto-ajustavel.anima-brilho {
    animation: brilho-mistico 2.5s ease-in-out;
}

.card-nos {
    background: rgba(60, 45, 100, 0.85);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 10px rgba(153,0,255,0.2);
    margin: 20px 0;
}

.linha-nos {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 15px;
}

.no {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #2a1e3f;
    box-shadow: 0 0 6px #000;
    transition: background-color 0.3s ease;
}

.no-aceso {
    background-color: #ffe473;
    box-shadow: 0 0 12px #ffe473;
}

.no-apagado {
    background-color: #2a1e3f;
    opacity: 0.3;
}

.botao-magico {
    background: linear-gradient(135deg, #3e065f, #700d8c);
    color: #fff;
    border: none;
    padding: 10px 18px;
    margin: 10px 0;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 0 10px #700d8c;
    transition: all 0.3s ease;
}

    .botao-magico:hover {
        background: linear-gradient(135deg, #700d8c, #3e065f);
        box-shadow: 0 0 15px #ff9d00;
        transform: scale(1.05);
    }
.moldura-wrapper {
    position: relative;
    width: 692px;
    height: 774px;
    margin: auto;
}

.area-imagem {
    position: absolute;
    top: 0;
    left: 0;
    width: 692px;
    height: 774px;
    overflow: hidden;
}

.foto-ajustavel {
    position: absolute;
    width: 542px;
    height: 541px;
    border-radius: 50%;
    transition: box-shadow 0.3s ease;
}

    .foto-ajustavel.anima-brilho {
        box-shadow: 0 0 20px #ff9d00;
    }

.moldura-fixa {
    position: absolute;
    top: 0;
    left: 0;
    width: 692px;
    height: 774px;
    pointer-events: none;
}

/* Airbag p/ garantir que só um slide aparece no Promo */
#carouselPromocoes .carousel-item {
    display: none; /* esconde todos por padrão */
}

    #carouselPromocoes .carousel-item.active {
        display: block; /* mostra só o ativo */
    }

/* estética (opcional) */
#carouselPromocoes .carousel-inner {
    border-radius: 12px;
    overflow: hidden;
}

#carouselPromocoes img.promo-img {
    width: 100%;
    max-height: 420px;
    object-fit: contain; /* use 'cover' se quiser cortar */
    background: #1e1e2f;
    padding: 10px;
    border-radius: 12px;
}

header.cabecalho {
    display: flex;
    flex-direction: column; /* 🔹 garante que o banner venha logo após o menu */
    align-items: stretch; /* 🔹 cada parte ocupa toda a largura */
}

    header.cabecalho .banner-promo {
        
        width: 100%;
        background: linear-gradient(90deg, #2a003f, #5e3b8c);
        color: #fff;
        text-align: center;
        padding: 12px 20px;
        font-size: 1.2rem;
        font-weight: bold;
        border-top: 1px solid #5e3b8c;
        border-bottom: 2px solid #d7b0ff;
        text-shadow: 0 0 6px rgba(255,200,255,0.7);
    }

        header.cabecalho .banner-promo .btn-banner {
            display: inline-block;
            margin-left: 10px;
            background: #d7b0ff;
            color: #1e1e2f;
            padding: 6px 14px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
            transition: 0.3s;
        }

            header.cabecalho .banner-promo .btn-banner:hover {
                background: #fff;
                color: #5e3b8c;
            }
.menu-horizontal .banner-promo {
    margin-top: 10px; /* pequeno espaço do menu */
}

.banner-caldeirao {
    width: 100%;
    background: linear-gradient(90deg, #2a003f, #5e3b8c);
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0 0 6px rgba(255, 200, 255, 0.7);
    border-top: 1px solid #5e3b8c;
    border-bottom: 2px solid #d7b0ff;
}

    .banner-caldeirao .btn-caldeirao {
        display: inline-block;
        margin-left: 10px;
        background: #d7b0ff;
        color: #1e1e2f;
        padding: 6px 14px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: bold;
        transition: 0.3s;
    }

        .banner-caldeirao .btn-caldeirao:hover {
            background: #fff;
            color: #5e3b8c;
        }

@media (max-width: 768px) {
    .banner-caldeirao {
        font-size: 1rem;
        padding: 10px;
    }

        .banner-caldeirao .btn-caldeirao {
            display: block;
            margin: 8px auto 0;
            width: fit-content;
        }
}
.banner-caldeirao {
    width: 100%;
    background: linear-gradient(90deg, #5e3b8c, #2a003f, #5e3b8c); /* degrade místico */
    color: #fff;
    text-align: center;
    padding: 14px 25px;
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 1px;
    border-top: 2px solid #d7b0ff;
    border-bottom: 2px solid #d7b0ff;
    text-shadow: 0 0 8px rgba(255, 200, 255, 0.9), 0 0 12px rgba(90, 0, 120, 0.8);
    box-shadow: 0 0 15px rgba(215, 176, 255, 0.4); /* brilho ao redor */
}

    .banner-caldeirao .btn-caldeirao {
        display: inline-block;
        margin-left: 12px;
        background: #d7b0ff;
        color: #1e1e2f;
        padding: 8px 18px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        transition: 0.3s;
        box-shadow: 0 0 10px rgba(255, 200, 255, 0.7);
    }

        .banner-caldeirao .btn-caldeirao:hover {
            background: #fff;
            color: #5e3b8c;
            transform: scale(1.05); /* efeito de destaque */
            box-shadow: 0 0 18px rgba(215, 176, 255, 1);
        }

/* Novo estilo para o banner */
.caldeirao-banner {
    width: 100%;
    background: linear-gradient(90deg, #4b006e, #8c3bff);
    color: #fff;
    text-align: center;
    padding: 14px 20px;
    font-size: 1.3rem;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 200, 255, 0.9), 0 0 14px rgba(140, 60, 255, 0.7);
    border-top: 2px solid #8c3bff;
    border-bottom: 2px solid #d7b0ff;
    letter-spacing: 1px;
    font-family: 'Cinzel Decorative', serif;
}

    .caldeirao-banner .btn-banner {
        display: inline-block;
        margin-left: 12px;
        background: #fff;
        color: #4b006e;
        padding: 8px 18px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1rem;
        box-shadow: 0 0 10px rgba(215,176,255,0.6);
        transition: 0.3s;
    }

        .caldeirao-banner .btn-banner:hover {
            background: #d7b0ff;
            color: #1e1e2f;
            box-shadow: 0 0 16px rgba(255, 220, 255, 0.9);
        }
/* 🔮 Ajustes do banner no mobile */
@media (max-width: 768px) {
    .caldeirao-banner {
        font-size: 1rem; /* texto menor */
        line-height: 1.4;
        padding: 10px;
        text-align: center;
        display: flex;
        flex-direction: column; /* coloca o botão abaixo do texto */
        align-items: center;
    }

        .caldeirao-banner .btn-banner {
            margin: 8px 0 0 0; /* botão separado do texto */
            width: auto;
            font-size: 0.95rem;
            padding: 8px 16px;
        }
}
