/* ===== LOGO RESPONSIVA E DELICADA ===== */
.logo-img {
  width: 100%;     /* usa toda a largura do brand */
  height: auto;    /* mantém proporção do SVG */
  max-height: none;/* garante que a altura não limite o crescimento */
  object-fit: contain;
  opacity: 1;      /* deixo 100% nítido */
}

/* Efeito elegante ao passar o mouse */
.navbar .navbar-brand {
  display: block;
  width: clamp(160px, 24vw, 360px); /* min, preferida (vw), máx */
}

/* Ajuste automático para telas pequenas */
@media (max-width: 768px) {
  .logo-img {
    height: 36px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 30px;
  }
}
/* ===== WHATSAPP BAR ===== */
.whatsapp-bar {
  background-color: #25D366; /* verde WhatsApp */
  padding: 8px 0;
  text-align: center;
}

.whatsapp-bar p {
  color: #fff;                /* texto branco */
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}

.whatsapp-bar i.bi-whatsapp {
  font-size: 1.3rem;
  color: #fff;                /* ícone branco */
}

/* Efeito sutil no hover */
.whatsapp-bar:hover {
  background-color: #1ebe5b;
  transition: background-color 0.3s ease;
}
/* ===== BOTÃO WHATSAPP ===== */
.whatsapp-btn {
  background-color: #25D366;        /* Verde oficial WhatsApp */
  color: #fff !important;
  font-weight: 600;
  border-radius: 50px;
  padding: 8px 18px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: none;
}

.whatsapp-btn i {
  font-size: 1.2rem;
}

.whatsapp-btn:hover {
  background-color: #1ebe5b;
  color: #fff;
  transform: scale(1.05);
  text-decoration: none;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.6);
}

/* Responsividade - reduz o tamanho no mobile */
@media (max-width: 576px) {
  .whatsapp-btn {
    padding: 6px 14px;
    font-size: 0.9rem;
  }
  .whatsapp-btn i {
    font-size: 1rem;
  }
}
/* ===== Botão flutuante WhatsApp (aparece quando a barra topo não está visível) ===== */
.wa-float-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
  z-index: 1100;                   /* acima do conteúdo/nav */
  text-decoration: none;
  transition: transform .25s ease, opacity .25s ease, box-shadow .25s ease;
  opacity: 0;
  pointer-events: none;            /* não clicável quando oculto */
}

.wa-float-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.wa-float-btn:not(.show) {
  transform: translateY(12px);
}

.wa-float-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
}

/* Mobile: um pouco menor e com margem segura */
@media (max-width: 576px) {
  .wa-float-btn {
    width: 52px;
    height: 52px;
    font-size: 26px;
    right: 14px;
    bottom: 14px;
  }
}

/* Evita conflito com banners/fixed bars no rodapé, se houver */
@supports (padding: max(0px)) {
  .wa-float-btn {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
  }
}

/* =========================
   BLACK FRIDAY COUPON (Blink)
   ========================= */
.bf-coupon {
  --bf-bg: #111;
  --bf-text: #ffffff;
  --bf-accent: #ffd166; /* dourado suave */
  --bf-accent-2: #ff7b00; /* brilho */
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border: 1px solid var(--bf-accent);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.06)) ,
    var(--bf-bg);
  color: var(--bf-text);
  padding: .35rem .8rem;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1;
  box-shadow:
    0 0 0 1px rgba(255,209,102,.15) inset,
    0 6px 18px rgba(0,0,0,.25);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
}

.bf-coupon:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(255,209,102,.22) inset,
    0 10px 22px rgba(0,0,0,.32);
  border-color: #ffe08a;
}

.bf-badge {
  background: var(--bf-accent);
  color: #1a1a1a;
  padding: .28rem .55rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  box-shadow: 0 0 0 2px rgba(0,0,0,.2) inset, 0 0 18px rgba(255,209,102,.45);
}

.bf-code {
  font-size: .95rem;
  letter-spacing: .3px;
}

.bf-deadline {
  font-size: .8rem;
  color: #f3f3f3;
  opacity: .85;
  border-left: 1px dashed rgba(255,255,255,.25);
  padding-left: .6rem;
  margin-left: .2rem;
}

/* Animação de piscar (acessível) */
@keyframes bf-blink {
  0%, 45% { opacity: 1; filter: drop-shadow(0 0 0 rgba(255,123,0,0)); }
  50%, 95% { opacity: .25; filter: drop-shadow(0 0 16px rgba(255,123,0,.65)); }
  100% { opacity: 1; filter: drop-shadow(0 0 0 rgba(255,123,0,0)); }
}

.bf-blink {
  animation: bf-blink 1.25s ease-in-out infinite;
}

/* Respeita usuários com redução de movimento */
@media (prefers-reduced-motion: reduce) {
  .bf-blink {
    animation: none;
  }
}

/* Toast de confirmação */
.bf-toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(16px);
  background: rgba(17,17,17,.94);
  color: #fff;
  padding: .65rem .9rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 1200;
}
.bf-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Integração visual com a barra do WhatsApp */
.whatsapp-bar {
  position: relative;
  z-index: 1020;
}
.whatsapp-bar .bi-whatsapp {
  font-size: 1.2rem;
}

/* Responsividade */
@media (max-width: 576px) {
  .bf-coupon {
    gap: .5rem;
    padding: .35rem .65rem;
  }
  .bf-badge { font-size: .8rem; }
  .bf-code { font-size: .9rem; }
  .bf-deadline { display: none; } /* simplifica no mobile */
}

/* ================================
   CONTRASTE FORTE — TABELA PROCESSO
   ================================ */

/* 1) CÉLULAS COM FOTO DE FUNDO: overlay mais forte para o texto branco */
.schedule-table .table-background-image-wrap {
  position: relative;
  color: #fff; /* default para imagem */
}
.schedule-table .table-background-image-wrap .section-overlay {
  position: absolute;
  inset: 0;
  /* escurece mais a foto e cria leve vinheta para o centro */
  background:
    radial-gradient(80% 70% at 50% 50%, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%),
    rgba(0,0,0,0.45);
  opacity: 1 !important;     /* garante força */
  pointer-events: none;
  z-index: 1;
}
/* conteúdo acima do overlay */
.schedule-table .table-background-image-wrap > *:not(.section-overlay) {
  position: relative;
  z-index: 2;
}
.schedule-table .table-background-image-wrap h3,
.schedule-table .table-background-image-wrap p {
  color: #fff !important;
  text-shadow: 0 2px 6px rgba(0,0,0,.75);
}

/* 2) CÉLULAS CLARAS (pastéis) — texto ESCURO, sem sombra */
.schedule-table td[style*="#F3DCD4"],
.schedule-table td[style*="#ECC9C7"],
.schedule-table td[style*="#D9E3DA"],
.schedule-table td[style*="#D1CFC0"],
.schedule-table td[style*="#E"],   /* fallback para qualquer #Exxxxx */
.schedule-table td[style*="#F"] {  /* fallback para qualquer #Fxxxxx */
  color: #111 !important;
}
.schedule-table td[style*="#F3DCD4"] h3,
.schedule-table td[style*="#ECC9C7"] h3,
.schedule-table td[style*="#D9E3DA"] h3,
.schedule-table td[style*="#D1CFC0"] h3,
.schedule-table td[style*="#E"] h3,
.schedule-table td[style*="#F"] h3 {
  color: #0b0b0b !important;
  text-shadow: none !important;
  font-weight: 800;
}
.schedule-table td[style*="#F3DCD4"] p,
.schedule-table td[style*="#ECC9C7"] p,
.schedule-table td[style*="#D9E3DA"] p,
.schedule-table td[style*="#D1CFC0"] p,
.schedule-table td[style*="#E"] p,
.schedule-table td[style*="#F"] p {
  color: #1a1a1a !important;
  text-shadow: none !important;
  font-weight: 600;
}

/* 3) CÉLULAS ESCURAS — texto BRANCO com leve sombra */
.schedule-table td[style*="#0"],
.schedule-table td[style*="#1"],
.schedule-table td[style*="#2"],
.schedule-table td[style*="#3"] {
  color: #fff !important;
}
.schedule-table td[style*="#0"] h3,
.schedule-table td[style*="#1"] h3,
.schedule-table td[style*="#2"] h3,
.schedule-table td[style*="#3"] h3,
.schedule-table td[style*="#0"] p,
.schedule-table td[style*="#1"] p,
.schedule-table td[style*="#2"] p,
.schedule-table td[style*="#3"] p {
  color: #fff !important;
  text-shadow: 0 2px 6px rgba(0,0,0,.7);
}

/* 4) COLUNA ESQUERDA (rótulos) — contraste máximo */
.schedule-table th[scope="row"] {
  background: #13191f !important; /* mais escuro */
  color: #ffffff !important;
  font-weight: 800;
}

/* 5) Cabeçalho da tabela já está bom; mantenho o branco bem nítido */
.schedule-table thead th {
  color: #fff !important;
  text-shadow: 0 2px 6px rgba(0,0,0,.6);
}

/* 6) Acessibilidade: se usuário prefere mais contraste, sobe ainda mais o overlay */
@media (prefers-contrast: more) {
  .schedule-table .table-background-image-wrap .section-overlay {
    background:
      radial-gradient(80% 70% at 50% 50%, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.75) 100%),
      rgba(0,0,0,0.6);
  }
}

/* =========================
   Portfólio — COR + CONTRASTE
   ========================= */

/* mude aqui a cor do overlay (RGB) */
:root {
  /* #D59E80 */
  --port-peach-rgb: 213, 158, 128;
  /* se quiser o tom #D6A07F: 214, 160, 127 */
}

/* aplica a nova cor mantendo o mesmo layout de antes */
.artists-thumb .artists-hover {
  background: rgba(var(--port-peach-rgb), .92) !important; /* cor pêssego com opacidade */
  border: 1px solid rgba(0,0,0,.12);                       /* borda sutil p/ definição */
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);       /* micro realce interno */
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

/* tipografia com alto contraste sobre o pêssego */
.artists-hover,
.artists-hover * {
  text-shadow: none !important;     /* sem sombra em fundo claro */
}

.artists-hover h5,
.artists-hover h6,
.artists-hover strong,
.artists-hover b {
  color: #111111 !important;        /* títulos/labels bem fortes */
  font-weight: 800;
}

.artists-hover p,
.artists-hover span,
.artists-hover .mb-0 {
  color: #2b2b2b !important;        /* corpo: cinza escuro (AA) */
  line-height: 1.45;
}

/* divisor combinando com o novo fundo*
/* Ajuste do selo "Sob consulta" */
.pricing-tag {
  width: 70px !important;          /* reduz o diâmetro da bolinha */
  height: 70px !important;
  border-radius: 50% !important;   /* garante formato circular */
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 !important;
  font-size: 0.85rem !important;   /* diminui o tamanho da fonte */
  line-height: 1.1 !important;     /* aproxima as linhas “Sob” e “consulta” */
  white-space: normal !important;  /* permite quebra de linha */
}

/* Portfólio – garante que o hover não estoure para fora da imagem */
.artists-thumb {
  position: relative;
  overflow: hidden; /* corta qualquer coisa que tente passar da borda */
}


/* Portfólio – overlay com rolagem e fonte um pouco menor */
.artists-thumb .artists-hover {
  height: 100%;
  max-height: 100%;
  box-sizing: border-box;
  overflow-y: auto;          /* ativa rolagem só quando o texto passa do limite */
  padding-right: 1rem;       /* espaço pro scroll não colar no texto */
  font-size: 0.65rem;        /* levemente menor pra caber melhor */
  line-height: 1.45;
}

/* Scrollbar discreta dentro do descritivo do portfólio (Chrome/Edge/Safari) */
.artists-thumb .artists-hover::-webkit-scrollbar {
  width: 6px;
}

.artists-thumb .artists-hover::-webkit-scrollbar-track {
  background: transparent;
}

.artists-thumb .artists-hover::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 999px;
}

