/* =============================================
   ORLEANS 113 ANOS — OrleFest 2026
   Cores oficiais da Bandeira de Orleans:
   Azul:   #1a3a6e
   Branco: #ffffff
   Vermelho: #c0392b
   ============================================= */

/* ===== VARIÁVEIS ===== */
:root {
  /* Cores de Orleans */
  --azul:       #1a3a6e;
  --azul-light: #2d5ca8;
  --azul-dark:  #0f2347;
  --vermelho:   #c0392b;
  --verm-light: #e74c3c;
  --verm-dark:  #922b21;
  --branco:     #ffffff;
  --ouro:       #f9c74f;
  --ouro-dark:  #e09c2b;
  --verde:      #2d6a4f;

  /* Neutros */
  --cream:      #f8f6f0;
  --cream-dark: #f0ede4;
  --text:       #1a1a2e;
  --text-mid:   #3d3d5c;
  --muted:      rgba(255,255,255,0.65);

  /* Sombras */
  --sh-sm: 0 2px 10px rgba(26,58,110,.12);
  --sh-md: 0 8px 32px rgba(26,58,110,.2);
  --sh-lg: 0 20px 60px rgba(26,58,110,.3);

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 40px;
  --tr: all .3s cubic-bezier(.4,0,.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; line-height: 1.7; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--azul-dark); }
::-webkit-scrollbar-thumb { background: var(--vermelho); border-radius: 3px; }

/* ===== LOADER ===== */
#loader {
  position: fixed; inset: 0;
  background: var(--azul-dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity .8s ease, visibility .8s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-content { text-align: center; }
.loader-flag {
  width: 120px; height: 80px;
  border-radius: var(--r-sm);
  box-shadow: var(--sh-lg);
  margin: 0 auto 24px;
  animation: flagPulse 2s ease-in-out infinite alternate;
  display: block;
}
@keyframes flagPulse {
  from { transform: translateY(0); box-shadow: 0 4px 14px rgba(0,0,0,0.3); }
  to   { transform: translateY(-4px); box-shadow: 0 16px 28px rgba(0,0,0,0.5); }
}
.loader-city {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 900;
  color: var(--branco);
  letter-spacing: 6px;
  margin-bottom: 4px;
}
.loader-years {
  color: var(--muted); font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 24px;
}
.loader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 3px; margin: 0 auto; overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--azul-light), var(--vermelho));
  animation: loadProg 2.5s ease-in-out forwards;
}
@keyframes loadProg { from { width: 0; } to { width: 100%; } }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--tr);
}
#navbar.scrolled {
  background: rgba(15,35,71,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(192,57,43,.3);
  box-shadow: var(--sh-md);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-flag-img {
  width: 28px; height: 18px;
  border-radius: 2px; overflow: hidden;
  margin-right: 10px; flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
  object-fit: cover;
}

.nav-logo { display: flex; align-items: center; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 900; color: var(--branco);
}
.logo-text em { font-style: normal; color: var(--ouro); margin-left: 4px; }

.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.85); text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: var(--r-sm);
  transition: var(--tr);
}
.nav-links a:hover { color: var(--ouro); background: rgba(249,199,79,.1); }
.nav-links .nav-cta {
  background: var(--vermelho); color: white;
  border-radius: 20px; padding: 8px 18px;
}
.nav-links .nav-cta:hover { background: var(--verm-light); color: white; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: white; border-radius: 2px; transition: var(--tr);
}

/* ===== HERO ===== */
.hero-section {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--azul-dark);
}

.hero-video-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0;
}
.hero-video-bg video {
  width: 100%; height: 100%; object-fit: cover;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

#three-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.95) 100%);
  z-index: 2; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 3;
  text-align: center; max-width: 920px; padding: 0 24px;
  animation: hFadeIn 1.4s ease forwards; animation-delay: 2.8s; opacity: 0;
}
@keyframes hFadeIn { to { opacity: 1; } }

/* Listras da bandeira no hero */
.hero-flag-stripe {
  display: flex; height: 6px; width: 120px;
  border-radius: 3px; overflow: hidden;
  margin: 0 auto 24px;
  box-shadow: 0 2px 12px rgba(192,57,43,.5);
}
.hs-blue  { flex: 1; background: var(--azul); }
.hs-white { flex: 1; background: var(--branco); }
.hs-red   { flex: 1; background: var(--vermelho); }

.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid rgba(192,57,43,.6);
  border-radius: 30px;
  color: rgba(255,255,255,.9); font-size: 12px;
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 24px;
  background: rgba(192,57,43,.12);
  backdrop-filter: blur(8px);
}

.hero-title { font-family: 'Playfair Display', serif; line-height: 1.1; margin-bottom: 24px; }
.ht-1 {
  display: block;
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 900; color: var(--branco);
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
  letter-spacing: -2px;
}
.ht-2 {
  display: block;
  font-size: clamp(38px, 7vw, 84px);
  font-weight: 700; color: var(--vermelho);
  text-shadow: 0 0 60px rgba(192,57,43,.6);
}
.ht-2 em { font-style: italic; color: var(--ouro); }

.hero-sub {
  color: rgba(255,255,255,.8); font-size: clamp(15px,2vw,18px);
  max-width: 680px; margin: 0 auto 36px; line-height: 1.8;
}

.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }

.btn-blue {
  display: inline-flex; align-items: center;
  padding: 14px 32px;
  background: var(--azul);
  border: 2px solid var(--azul-light);
  color: white; text-decoration: none;
  font-weight: 700; font-size: 15px;
  border-radius: 50px; transition: var(--tr);
  box-shadow: 0 8px 30px rgba(26,58,110,.5);
}
.btn-blue:hover { background: var(--azul-light); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(26,58,110,.7); }

.btn-outline {
  display: inline-flex; align-items: center;
  padding: 14px 32px;
  border: 2px solid rgba(192,57,43,.7);
  color: white; text-decoration: none;
  font-weight: 600; font-size: 15px;
  border-radius: 50px; transition: var(--tr);
  backdrop-filter: blur(8px);
  background: rgba(192,57,43,.12);
}
.btn-outline:hover { border-color: var(--vermelho); background: rgba(192,57,43,.25); transform: translateY(-3px); }

.hero-scroll {
  position: absolute; bottom: 30px; left: 0; right: 0; width: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: rgba(255,255,255,.45); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  animation: bob 2s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
  text-align: center;
}
.scroll-arr {
  width: 22px; height: 22px;
  border-right: 2px solid rgba(255,255,255,.35);
  border-bottom: 2px solid rgba(255,255,255,.35);
  transform: rotate(45deg);
}
@keyframes bob { 0%,100% { bottom: 30px; } 50% { bottom: 22px; } }

.scroll-arr {
  width: 22px; height: 22px;
  border-right: 2px solid rgba(255,255,255,.35);
  border-bottom: 2px solid rgba(255,255,255,.35);
  transform: rotate(45deg);
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ===== STATS ===== */
.stats-bar {
  background: linear-gradient(135deg, var(--azul-dark), var(--azul));
  border-top: 3px solid var(--vermelho);
  border-bottom: 1px solid rgba(192,57,43,.3);
  padding: 40px 0;
}
.stats-inner {
  max-width: 1000px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 24px;
}
.stat-item { text-align: center; flex: 1; min-width: 130px; }
.stat-n {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 900;
  color: var(--ouro); line-height: 1;
  text-shadow: 0 0 30px rgba(249,199,79,.4);
}
.stat-l {
  display: block; color: rgba(255,255,255,.6);
  font-size: 11px; letter-spacing: 1px;
  margin-top: 6px; text-transform: uppercase;
}
.stat-div { width: 1px; height: 60px; background: rgba(192,57,43,.3); }

/* ===== SECTION COMMONS ===== */
.sec-container { max-width: 1280px; margin: 0 auto; padding: 100px 24px; }

.sec-header { text-align: center; margin-bottom: 64px; }

.sec-tag {
  display: inline-block; padding: 4px 14px;
  background: rgba(26,58,110,.1); color: var(--azul);
  border-radius: 20px; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; margin-bottom: 16px;
}
.sec-tag-light { background: rgba(192,57,43,.2); color: var(--ouro); }

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 900; color: var(--text); line-height: 1.15;
  margin-bottom: 20px;
}
.sec-title-light { color: var(--branco); }
.text-gold { color: var(--ouro); font-style: italic; }

.sec-div {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--azul), var(--vermelho));
  border-radius: 2px; margin: 0 auto 20px;
}
.sec-div-red { background: linear-gradient(90deg, var(--vermelho), var(--ouro)); }

.sec-desc { color: var(--text-mid); font-size: 17px; max-width: 640px; margin: 0 auto; line-height: 1.8; }
.sec-desc-light { color: var(--muted); }
.sec-desc-light strong { color: var(--ouro); }

/* ===== HISTÓRIA ===== */
.historia-section {
  background: var(--cream);
  border-top: 4px solid var(--azul);
}
.historia-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.hist-img-box {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 3px solid var(--azul);
}
.hist-badge {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(15,35,71,.92); backdrop-filter: blur(12px);
  padding: 10px 16px; border-radius: var(--r-md);
  border: 1px solid rgba(192,57,43,.4);
  text-align: center; color: white;
}
.hist-badge span { font-size: 28px; display: block; }
.hist-badge p { font-size: 11px; letter-spacing: 1px; color: var(--ouro); margin-top: 4px; }

.timeline-mini { margin-top: 28px; display: flex; flex-direction: column; }
.tm-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 14px 0 14px 20px;
  border-left: 2px solid rgba(26,58,110,.2);
  position: relative;
}
.tm-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--vermelho);
  position: absolute; left: -7px; top: 20px;
  box-shadow: 0 0 10px rgba(192,57,43,.5);
}
.tm-item strong { display: block; color: var(--azul); font-size: 15px; font-weight: 700; }
.tm-item span { color: var(--text-mid); font-size: 13px; }

.historia-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700;
  color: var(--azul); margin: 28px 0 12px;
}
.historia-text p { color: var(--text-mid); font-size: 15.5px; line-height: 1.85; margin-bottom: 16px; }

.hist-quote {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 28px; padding: 24px;
  background: linear-gradient(135deg, rgba(26,58,110,.06), rgba(192,57,43,.04));
  border-radius: var(--r-md);
  border-left: 4px solid var(--azul);
}
.hq-icon { font-size: 28px; flex-shrink: 0; }
blockquote {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 16px; color: var(--text); line-height: 1.7;
}

.cult-badges { display: flex; gap: 12px; margin: 20px 0; }
.cult-badge {
  flex: 1; text-align: center; padding: 16px 12px;
  background: var(--cream-dark); border-radius: var(--r-md);
  border: 1px solid rgba(26,58,110,.1); transition: var(--tr);
}
.cult-badge:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--azul); }
.cult-badge span { font-size: 28px; display: block; margin-bottom: 8px; }
.cult-badge p { font-size: 13px; font-weight: 600; color: var(--azul); }

.btn-saibamais {
  display: flex; width: fit-content; align-items: center; gap: 10px;
  margin: 32px auto 0;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--azul), var(--azul-light));
  color: white; text-decoration: none;
  font-weight: 700; font-size: 14px;
  border-radius: 50px;
  border: 2px solid rgba(249,199,79,.4);
  box-shadow: 0 6px 24px rgba(26,58,110,.35);
  transition: var(--tr);
  letter-spacing: .3px;
}
.btn-saibamais:hover {
  background: linear-gradient(135deg, var(--ouro-dark), var(--ouro));
  color: #0a1f4a;
  border-color: var(--ouro);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(249,199,79,.35);
}

/* ===== HORIZONTAL TIMELINE ===== */
.htl-wrap {
  position: relative;
  padding: 60px 0 20px;
  overflow: visible;
}
.htl-line {
  position: absolute;
  top: 100px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--azul) 10%, var(--vermelho) 50%, var(--ouro) 90%, transparent);
  border-radius: 3px;
  z-index: 0;
}
.htl-nodes {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.htl-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1; min-width: 0;
}
.htl-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--azul);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 20px rgba(26,58,110,.25);
  transition: var(--tr);
  position: relative; z-index: 2;
  flex-shrink: 0;
}
.htl-node:hover .htl-dot { transform: scale(1.18) translateY(-4px); box-shadow: 0 10px 30px rgba(26,58,110,.4); }
.htl-node-gold .htl-dot { border-color: var(--ouro); background: linear-gradient(135deg,#fff8e1,#fff); box-shadow: 0 4px 20px rgba(249,199,79,.4); }
.htl-node-red  .htl-dot { border-color: var(--vermelho); background: linear-gradient(135deg,#fff0ef,#fff); box-shadow: 0 4px 20px rgba(192,57,43,.3); }

.htl-connector {
  width: 2px; height: 20px;
  background: linear-gradient(to bottom, var(--azul), rgba(26,58,110,.15));
  flex-shrink: 0;
}
.htl-node-gold .htl-connector { background: linear-gradient(to bottom, var(--ouro), rgba(249,199,79,.15)); }
.htl-node-red  .htl-connector { background: linear-gradient(to bottom, var(--vermelho), rgba(192,57,43,.15)); }

.htl-card {
  background: white;
  border-radius: var(--r-md);
  padding: 16px 14px;
  text-align: center;
  box-shadow: var(--sh-sm);
  border: 1px solid rgba(26,58,110,.1);
  border-top: 3px solid var(--azul);
  transition: var(--tr);
  width: 100%;
}
.htl-node:hover .htl-card { box-shadow: var(--sh-md); transform: translateY(-3px); }
.htl-card-gold { border-top-color: var(--ouro); background: linear-gradient(135deg,#fff8e1,#fff); }
.htl-card-red  { border-top-color: var(--vermelho); background: linear-gradient(135deg,#fff0ef,#fff); }

.htl-year {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 900;
  color: var(--azul);
  margin-bottom: 6px;
}
.htl-node-gold .htl-year { color: var(--ouro-dark); }
.htl-node-red  .htl-year { color: var(--vermelho); }
.htl-card p { font-size: 12.5px; color: var(--text-mid); line-height: 1.55; }

@media (max-width: 768px) {
  .htl-line { display: none; }
  .htl-nodes { flex-direction: column; align-items: stretch; gap: 16px; }
  .htl-node { flex-direction: row; align-items: flex-start; gap: 14px; }
  .htl-connector { display: none; }
  .htl-card { text-align: left; }
}

/* ===== PONTOS ===== */

.pontos-section { background: var(--cream-dark); }
.tour-layout { display: flex; flex-direction: column; gap: 24px; }
.tour-row-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.tour-row-1 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.tour-row-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tour-cta { display: flex; justify-content: center; margin-top: 48px; }

.ponto-card {
  border-radius: var(--r-lg); overflow: hidden;
  background: white; box-shadow: var(--sh-md);
  transition: var(--tr); border: 2px solid transparent;
}
.ponto-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: var(--azul); }
.ponto-featured:hover { border-color: var(--ouro); }
.ponto-featured { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
.ponto-img { overflow: hidden; aspect-ratio: 16/9; width: 100%; object-fit: cover; }
.ponto-featured .ponto-img { aspect-ratio: unset; }

.pv-dark   { background: #0d1b2a; }
.pv-green  { background: #87CEEB; }
.pv-night  { background: #0f1b2d; }
.pv-green2 { background: #1a3a6e; }

.ponto-body { padding: 28px; }
.ponto-icon { font-size: 32px; margin-bottom: 12px; }
.ponto-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: var(--azul); margin-bottom: 12px;
}
.ponto-body p { color: var(--text-mid); font-size: 14.5px; line-height: 1.75; margin-bottom: 16px; }

.ponto-title-link {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: inherit;
  margin-bottom: 12px;
}
.ponto-title-link:hover h3 { text-decoration: underline; color: var(--azul-light); }
.ponto-title-link .ponto-icon { margin-bottom: 0; display: flex; }
.ponto-title-link .ponto-icon svg { margin-bottom: 0; }
.ponto-title-link h3 { margin-bottom: 0; line-height: 1; }

.ponto-tag {
  display: inline-block; padding: 5px 14px;
  background: rgba(26,58,110,.1); color: var(--azul);
  border-radius: 20px; font-size: 12px; font-weight: 600;
}
.ponto-tag-gold {
  background: linear-gradient(135deg, rgba(249,199,79,.2), rgba(192,57,43,.15));
  color: var(--verm-dark);
}

/* ===== ORLEFEST ===== */
.orlefest-section { position: relative; background: var(--azul-dark); overflow: hidden; }
.orlefest-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(26,58,110,.4) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 30%, rgba(192,57,43,.25) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(249,199,79,.1) 0%, transparent 50%);
  animation: bgPulse 8s ease-in-out infinite alternate;
  /* Degradê para suavizar o final da seção e fundir com a próxima */
  -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}
@keyframes bgPulse { from { opacity: .7; } to { opacity: 1; } }

.orlefest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 72px; }

.of-card {
  position: relative; padding: 36px 28px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden; transition: var(--tr);
}
.of-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(192,57,43,.5);
  transform: translateY(-6px);
}
.of-icon { font-size: 44px; margin-bottom: 20px; display: block; }
.of-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: white; margin-bottom: 20px;
}
.of-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.of-card li {
  color: rgba(255,255,255,.75); font-size: 14.5px;
  display: flex; align-items: center; gap: 10px;
}
.of-card li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--vermelho); flex-shrink: 0;
}
.of-card li strong { color: white; }

/* Countdown */
.countdown-wrap { text-align: center; }
.cd-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px; color: white; margin-bottom: 36px; font-weight: 700;
}
.cd-grid { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.cd-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cd-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 76px); font-weight: 900;
  color: var(--ouro); line-height: 1;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(192,57,43,.3);
  border-radius: var(--r-md);
  padding: 18px 24px; min-width: 110px; text-align: center;
  display: block;
  text-shadow: 0 0 30px rgba(249,199,79,.4);
}
.cd-lbl { color: rgba(255,255,255,.5); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }

/* ===== GALERIA ===== */
.galeria-section { background: var(--cream); }
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gal-item { position: relative; border-radius: var(--r-md); overflow: hidden; cursor: pointer; }
.gal-wide { grid-column: span 2; }
.gal-item svg { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .6s ease; }
.gal-item:hover svg { transform: scale(1.05); }
.gal-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(15,35,71,.85), transparent);
  color: white; transform: translateY(30px); opacity: 0; transition: var(--tr);
}
.gal-item:hover .gal-cap { transform: translateY(0); opacity: 1; }
.gal-cap h4 { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.gal-cap p { font-size: 12px; opacity: .8; }

/* ===== MURAL ===== */
.mural-section { background: var(--cream-dark); }

/* Formulário */
.mural-form-wrap { max-width: 680px; margin: 0 auto 72px; }
.mural-form {
  background: white; border-radius: var(--r-xl);
  padding: 44px; box-shadow: var(--sh-lg);
  border: 2px solid var(--azul);
}

.mural-form-header {
  display: flex; align-items: center; gap: 20px; margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, var(--azul), var(--vermelho)) 1;
}
.orleans-flag {
  width: 80px; flex-shrink: 0;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(26,58,110,.3);
  border: 1px solid rgba(26,58,110,.2);
}
.mural-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--azul); margin-bottom: 4px;
}
.mural-form-sub { font-size: 12px; color: var(--text-mid); letter-spacing: 1px; }

.mural-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }

.mural-input {
  width: 100%; padding: 12px 16px;
  border: 2px solid rgba(26,58,110,.15);
  border-radius: var(--r-sm);
  font-size: 15px; font-family: 'Inter', sans-serif;
  color: var(--text); background: var(--cream);
  outline: none; transition: var(--tr);
}
.mural-input:focus { border-color: var(--azul); background: white; box-shadow: 0 0 0 4px rgba(26,58,110,.1); }

/* Estrelas */
.mural-stars-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.stars-label { font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; }
.star-picker { display: flex; gap: 4px; }
.star {
  font-size: 32px; color: #ddd; cursor: pointer;
  transition: var(--tr); line-height: 1;
  user-select: none;
}
.star.active, .star:hover { color: var(--ouro); transform: scale(1.15); }
.star-text {
  font-size: 13px; font-weight: 600;
  color: var(--vermelho); min-width: 80px;
}

/* Textarea */
.mural-msg-wrap { position: relative; margin-bottom: 24px; }
.mural-textarea {
  width: 100%; padding: 14px 16px;
  border: 2px solid rgba(26,58,110,.15);
  border-radius: var(--r-sm);
  font-size: 15px; font-family: 'Inter', sans-serif;
  color: var(--text); background: var(--cream);
  outline: none; resize: none; transition: var(--tr); line-height: 1.7;
}
.mural-textarea:focus { border-color: var(--azul); background: white; box-shadow: 0 0 0 4px rgba(26,58,110,.1); }
.mural-counter {
  position: absolute; bottom: 10px; right: 14px;
  font-size: 11px; color: var(--text-mid);
}

/* Botão submit */
.mural-submit {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--azul), var(--azul-light));
  color: white; border: none; border-radius: var(--r-md);
  font-size: 15px; font-weight: 700; font-family: 'Inter', sans-serif;
  cursor: pointer; transition: var(--tr);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  border-bottom: 3px solid var(--vermelho);
}
.mural-submit:hover {
  background: linear-gradient(135deg, var(--azul-light), var(--azul));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,58,110,.4);
}

/* ===== MURAL WALL ===== */
.mural-wall {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 10px 10px 40px 10px; /* Espaço para sombra e barra de rolagem */
  /* scroll-behavior removido para o JS resetar instantaneamente */
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.2) rgba(0,0,0,0.05);
}
.mural-wall::-webkit-scrollbar { height: 8px; }
.mural-wall::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); border-radius: 4px; }
.mural-wall::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.2); border-radius: 4px; }

.mural-card {
  flex: 0 0 260px; /* Largura fixa para manter todos no formato carrossel */
  background: white; border-radius: var(--r-lg);
  box-shadow: var(--sh-md); overflow: hidden;
  border: 1px solid rgba(26,58,110,.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mural-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); cursor: pointer; }

/* Topo do card: listras da bandeira */
.card-flag-stripe {
  height: 6px; display: flex;
}
.cfs-blue  { flex: 1; background: var(--azul); }
.cfs-white { flex: 1; background: #e0e0e0; }
.cfs-red   { flex: 1; background: var(--vermelho); }

.card-body { padding: 12px; }

.card-top {
  display: flex; align-items: center;
  gap: 10px; margin-bottom: 8px;
}
.card-flag-icon {
  flex-shrink: 0;
  width: 44px; height: 30px;
  border-radius: 3px; overflow: hidden;
  box-shadow: 0 2px 6px rgba(26,58,110,.25);
  border: 1px solid rgba(26,58,110,.15);
}
.cfi-blue  { width: 100%; height: 33.3%; background: var(--azul); }
.cfi-white { width: 100%; height: 33.4%; background: white; }
.cfi-red   { width: 100%; height: 33.3%; background: var(--vermelho); }

.card-info { flex: 1; }
.card-name {
  font-family: 'Playfair Display', serif;
  font-size: 14px; font-weight: 700; color: var(--azul);
}
.card-city { font-size: 11px; color: var(--text-mid); }

.card-stars {
  display: flex; gap: 2px;
}
.card-stars span { font-size: 18px; color: var(--ouro); line-height: 1; }
.card-stars .empty-star { color: #ddd; }

.card-msg {
  font-size: 12px; color: var(--text-mid); line-height: 1.5;
  font-style: italic; position: relative; padding-left: 14px;
}
.card-msg::before {
  content: '"';
  position: absolute; left: 0; top: -6px;
  font-family: 'Playfair Display', serif;
  font-size: 36px; color: var(--vermelho);
  line-height: 1; opacity: .5;
}

.card-time {
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid rgba(26,58,110,.08);
  font-size: 11px; color: var(--text-mid);
  letter-spacing: .5px; text-transform: uppercase;
}

/* ===== FOOTER ===== */
.site-footer { background: var(--azul-dark); color: white; }
.footer-flag-stripe { height: 8px; display: flex; }
.ff-blue  { flex: 1; background: var(--azul); }
.ff-white { flex: 1; background: var(--branco); opacity: .9; }
.ff-red   { flex: 1; background: var(--vermelho); }

.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { display: flex; gap: 20px; align-items: flex-start; }
.footer-flag-svg { width: 80px; flex-shrink: 0; border-radius: 4px; box-shadow: var(--sh-md); }
.stat-n {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 40px; font-weight: 700; margin-bottom: 8px;
}
.stat-item:first-child .stat-n { color: var(--ouro); }
.stat-l { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.7); }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 900; margin-bottom: 10px;
}
.footer-logo span { color: var(--ouro); font-style: italic; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: 13.5px; line-height: 1.8; max-width: 340px; }
.footer-col h4 {
  font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--ouro); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li { color: rgba(255,255,255,.6); font-size: 14px; }

/* Instagram Glow Animation */
.ig-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(220,39,67,0.12) 0%, rgba(240,148,51,0.12) 30%, rgba(188,24,136,0.12) 60%, transparent 80%);
  transform: translate(-50%, -50%);
  filter: blur(40px);
  animation: igGlowPulse 8s ease-in-out infinite alternate;
  z-index: 1;
  pointer-events: none;
}
@keyframes igGlowPulse {
  0% { transform: translate(-50%, -50%) scale(0.8) rotate(0deg); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.4) rotate(45deg); opacity: 1; }
}
@keyframes igGradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.footer-col a { color: rgba(255,255,255,.6); text-decoration: none; transition: var(--tr); }
.footer-col a:hover { color: var(--vermelho); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; text-align: left;
  padding: 28px 0;
  color: rgba(255,255,255,.5); font-size: 13px;
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px;
}
.footer-bottom-right { display: flex; align-items: flex-end; }
.footer-dev-img { height: 140px; object-fit: contain; filter: drop-shadow(0 2px 10px rgba(0,0,0,.3)); }

/* Instagram Mock Layout */
.ig-mock-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.6); color: white; 
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; 
  font-weight: 600; opacity: 0; transition: 0.3s ease;
}
.ig-mock-post:hover .ig-mock-overlay { opacity: 1; }
.ig-mock-post:hover img { transform: scale(1.05); }

.footer-copy { margin-top: 6px; font-size: 11px; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .historia-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .tour-row-2, .tour-row-4 { grid-template-columns: 1fr; }
  .ponto-featured { grid-column: span 1; grid-template-columns: 1fr; }
  .orlefest-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gal-wide { grid-column: span 1; }
  .mural-fields { grid-template-columns: 1fr; }
  .mural-form { padding: 24px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand { grid-column: span 1; flex-direction: column; align-items: center; text-align: center; }
  .footer-brand p { margin: 0 auto; }
  .footer-col:nth-child(2) { display: none; } /* Esconde navegação no mobile */
  .footer-bottom { flex-direction: column; justify-content: center; text-align: center; gap: 32px; }
  .footer-bottom-right { align-items: center; }
  .stat-div { display: none; }
  .stats-inner { flex-direction: column; gap: 32px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .cd-num { font-size: 40px; padding: 14px 18px; min-width: 80px; }
  .cd-grid { gap: 12px; }
  .mural-stars-row { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 480px) {
  .nav-container { padding: 0 16px; }
  .sec-container { padding: 60px 16px; }
  .mural-form { padding: 20px 16px; }
}

/* Mobile Nav Open */
#navbar.nav-open {
  height: 100vh;
  background: rgba(15,35,71,.98) !important;
  backdrop-filter: blur(20px) !important;
}
#navbar.nav-open .nav-links {
  display: flex; flex-direction: column;
  position: absolute; top: 80px; left: 0; right: 0; bottom: 0;
  align-items: center; justify-content: flex-start; padding-top: 40px;
  gap: 20px;
}
#navbar.nav-open .nav-links a { font-size: 22px; padding: 12px 32px; }
#navbar.nav-open .nav-hamburger { z-index: 1001; position: relative; }

/* ===========================
   PROGRAMAÇÃO — OrleFest 2026
   =========================== */

.text-gold { color: var(--ouro); }
.sec-div-gold { background: var(--ouro); }

.prog-section {
  position: relative;
  background: linear-gradient(160deg, #0a1f4a 0%, #1a3a6e 40%, #0f2347 100%);
  overflow: hidden;
}
/* Ponte de degradê para fundir perfeitamente com a seção OrleFest acima */
.prog-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom, var(--azul-dark) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.prog-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(249,199,79,.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(192,57,43,.05) 0%, transparent 50%);
  pointer-events: none;
}

/* --- TABS --- */
.prog-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 40px;
}
.prog-tab {
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.75);
  border-radius: var(--r-md);
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  transition: var(--tr);
  line-height: 1.3;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.prog-tab small { font-weight: 400; text-transform: none; font-size: 12px; opacity: .85; }
.prog-tab:hover {
  background: rgba(249,199,79,.15);
  border-color: var(--ouro);
  color: var(--ouro);
  transform: translateY(-2px);
}
.prog-tab.active {
  background: var(--ouro);
  border-color: var(--ouro);
  color: #0a1f4a;
  box-shadow: 0 6px 20px rgba(249,199,79,.35);
  transform: translateY(-2px);
}

/* --- DAY PANELS --- */
.prog-day { display: none; animation: fadeInUp .45s ease; }
.prog-day.active { display: block; }

/* --- DAY HEADER --- */
.prog-day-header {
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(249,199,79,.25);
  border-radius: var(--r-lg);
  padding: 24px 32px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}
.pdh-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--ouro);
  border-radius: var(--r-md);
  padding: 12px 20px;
  min-width: 90px;
  line-height: 1;
}
.pdh-day-name { font-size: 11px; font-weight: 700; color: #0a1f4a; text-transform: uppercase; letter-spacing: 1px; }
.pdh-day-num  { font-size: 44px; font-weight: 900; color: #0a1f4a; line-height: 1; }
.pdh-month    { font-size: 10px; color: #0a1f4a; opacity: .8; }
.pdh-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
}
.pdh-title small { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 400; color: rgba(255,255,255,.7); }

/* --- TWO-COLUMN LAYOUT (Fri/Sat/Sun) --- */
.prog-events-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.prog-col { display: flex; flex-direction: column; gap: 12px; }

/* --- TIMELINE LAYOUT (Agosto pre-events) --- */
.prog-events-grid { display: flex; flex-direction: column; gap: 18px; }

.prog-event-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.per-date-badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--ouro);
  border-radius: var(--r-sm);
  padding: 8px 14px;
  min-width: 62px;
  flex-shrink: 0;
  line-height: 1;
}
.per-dayname { font-size: 10px; font-weight: 700; color: #0a1f4a; text-transform: uppercase; }
.per-daynum  { font-size: 28px; font-weight: 900; color: #0a1f4a; }
.per-events  { display: flex; flex-direction: column; gap: 10px; flex: 1; }

/* --- SOLO GRID (07/Set) --- */
.prog-events-grid-solo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

/* --- EVENT CARD --- */
.prog-event {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-left: 4px solid rgba(255,255,255,.3);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  transition: var(--tr);
  position: relative;
}
.prog-event:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(249,199,79,.4);
  transform: translateX(4px);
}
.prog-event h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.35;
}
.pe-local { font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 2px; }
.pe-time  { font-size: 13px; color: var(--ouro); font-weight: 600; }
.pe-sub   { font-size: 12px; color: rgba(255,255,255,.65); margin-bottom: 4px; line-height: 1.4; }
.pe-highlight { color: var(--ouro); font-weight: 700; }
.pe-brand     { color: var(--ouro); font-weight: 800; font-size: 16px; }

/* --- Variants --- */
.prog-event-nacional {
  background: rgba(192,57,43,.18);
  border-left-color: var(--vermelho);
  border-color: rgba(192,57,43,.35);
}
.prog-event-nacional h4 { color: #ffd0cc; }

.prog-event-highlight {
  background: rgba(249,199,79,.1);
  border-left-color: var(--ouro);
  border-color: rgba(249,199,79,.3);
}
.prog-event-highlight h4 { color: var(--ouro); }

.prog-event-free {
  background: rgba(45,106,79,.18);
  border-left-color: #4ade80;
  border-color: rgba(45,106,79,.4);
}

.prog-event-cult {
  background: rgba(139,92,246,.15);
  border-left-color: #a78bfa;
  border-color: rgba(139,92,246,.3);
}
.prog-event-cult h4 { color: #c4b5fd; }

.prog-event-civico {
  background: rgba(26,58,110,.4);
  border-left-color: #60a5fa;
  border-color: rgba(96,165,250,.4);
}
.prog-event-civico h4 { color: #93c5fd; }

.prog-event-end {
  background: rgba(15,35,71,.6);
  border-left-color: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.1);
}
.prog-event-end h4 { color: rgba(255,255,255,.55); }

/* --- Badges --- */
.pe-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  border-radius: 20px;
  padding: 2px 10px;
  margin-top: 6px;
}
.pe-badge-nacional { background: var(--vermelho); color: #fff; }
.pe-badge-free     { background: #16a34a; color: #fff; }

/* --- Responsive --- */
@media (max-width: 768px) {
  .prog-events-cols        { grid-template-columns: 1fr; }
  .prog-day-header         { flex-direction: column; text-align: center; gap: 14px; }
  .prog-events-grid-solo   { grid-template-columns: 1fr; }
  .prog-tabs               { gap: 8px; }
  .prog-tab                { padding: 10px 16px; font-size: 12px; }
  .prog-event-row          { flex-direction: column; }
  .per-date-badge          { flex-direction: row; gap: 8px; padding: 8px 12px; min-width: unset; align-self: flex-start; }
  .per-daynum              { font-size: 20px; }
}

/* =============================================
   AJUSTES PARA ÍCONES VETORIAIS (LUCIDE)
   ============================================= */
.hq-icon svg { width: 32px; height: 32px; stroke: var(--ouro); stroke-width: 2; }

.htl-dot svg { width: 26px; height: 26px; stroke: var(--azul); stroke-width: 2.5; }
.htl-node-gold .htl-dot svg { stroke: var(--ouro); }
.htl-node-red .htl-dot svg { stroke: var(--vermelho); }

.ponto-icon svg { width: 36px; height: 36px; stroke: var(--azul); stroke-width: 2; margin-bottom: 8px; }
.ponto-featured .ponto-icon svg { stroke: var(--ouro); }

.of-icon svg { width: 44px; height: 44px; stroke: var(--ouro); stroke-width: 1.5; }

.mural-submit svg { stroke: white; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(15,35,71,.98); backdrop-filter: blur(10px);
  color: white; padding: 16px 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  box-shadow: 0 -10px 30px rgba(0,0,0,.2);
  z-index: 9999;
  transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { margin: 0; font-size: 14px; line-height: 1.5; color: rgba(255,255,255,.8); }
.cookie-btn {
  background: var(--ouro); color: var(--azul-dark); border: none; border-radius: var(--r-sm);
  padding: 10px 32px; font-weight: 700; font-size: 14px; cursor: pointer; transition: var(--tr); white-space: nowrap;
}
.cookie-btn:hover { background: #f0b52b; transform: translateY(-2px); }

@media (max-width: 768px) {
  .cookie-banner { flex-direction: column; text-align: center; padding: 24px 20px; gap: 16px; }
  .cookie-btn { width: 100%; padding: 14px; }
}

/* ===== ADMIN MURAL ===== */
.btn-del-post {
  display: none;
  background: none;
  border: none;
  color: var(--text-mid);
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
  transition: var(--tr);
  margin-left: auto; /* Para empurrar para o canto se estiver em flex */
}
.btn-del-post:hover {
  color: var(--vermelho);
  background: rgba(192,57,43,.1);
}
body.admin-mode .btn-del-post {
  display: flex;
  align-items: center;
  justify-content: center;
}
