/* ========================================
   CONCÓRDIA'S DO SIDI – PIZZARIA
   Stylesheet Principal
   ======================================== */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand-red:    #C0392B;
  --brand-dark:   #1A0A00;
  --brand-amber:  #E8A020;
  --brand-cream:  #FFF8EE;
  --brand-brown:  #5C2D0E;
  --text-main:    #2C1A0E;
  --text-muted:   #7A6050;
  --white:        #FFFFFF;

  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body:    'Lato', sans-serif;

  --radius: 16px;
  --shadow: 0 8px 32px rgba(90,30,0,.15);
  --transition: all .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--text-main);
  background: var(--brand-cream);
  overflow-x: hidden;
}

em { font-style: italic; color: var(--brand-red); }
a  { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul  { list-style: none; }

/* ---------- TYPOGRAPHY HELPERS ---------- */
.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand-amber);
  margin-bottom: .75rem;
}

h2 {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--brand-dark);
  margin-bottom: 1.25rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ---------- CONTAINERS ---------- */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.container-center { max-width: 1200px; margin: 0 auto; padding: 0 2rem; text-align: center; }

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-block;
  padding: .9rem 2.2rem;
  background: var(--brand-red);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(192,57,43,.4);
}
.btn-primary:hover { background: #a53224; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,57,43,.5); }

.btn-outline {
  display: inline-block;
  padding: .9rem 2.2rem;
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  transition: var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }

.btn-reserva {
  display: inline-block;
  padding: .6rem 1.4rem;
  background: var(--brand-red);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: .875rem;
  transition: var(--transition);
}
.btn-reserva:hover { background: #a53224; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2rem;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  margin-top: 1.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(37,211,102,.35);
}
.btn-whatsapp:hover { background: #1ebe57; transform: translateY(-2px); }

/* ---------- MUSIC PLAYER FLUTUANTE ---------- */
.music-player {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 997;
}
.music-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.2rem;
  background: rgba(26,10,0,.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232,160,32,.4);
  border-radius: 50px;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.music-btn:hover { background: rgba(26,10,0,.95); border-color: var(--brand-amber); transform: translateY(-2px); }
.music-btn.playing { border-color: var(--brand-amber); }
.music-icon { font-size: 1.1rem; }
.music-btn.playing .music-icon { animation: pulse-music .8s ease-in-out infinite alternate; }
@keyframes pulse-music { from { transform: scale(1); } to { transform: scale(1.3); } }
.music-label { letter-spacing: .04em; }

/* ---------- WHATSAPP FLUTUANTE ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.5rem .75rem 1.1rem;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
  flex-shrink: 0;
}
.whatsapp-float:hover {
  background: #1ebe57;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,.6);
}

/* ---------- NAVBAR ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 1rem 2rem;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(26,10,0,.96);
  backdrop-filter: blur(12px);
  padding: .7rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.nav-logo img { height: 56px; width: auto; object-fit: contain; border-radius: 0; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links li a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: color .2s;
}
.nav-links li a:hover { color: var(--brand-amber); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 10s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,10,0,.7) 0%, rgba(92,45,14,.5) 60%, rgba(26,10,0,.8) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  max-width: 820px;
}
.hero-tagline {
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand-amber);
  font-weight: 700;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp .8s ease .2s forwards;
}
.hero-content h1 {
  font-family: var(--ff-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp .8s ease .4s forwards;
}
.hero-content h1 em { color: var(--brand-amber); }
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp .8s ease .6s forwards;
}
.hero-btns {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s ease .8s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .1em;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,.5);
  border-bottom: 2px solid rgba(255,255,255,.5);
  transform: rotate(45deg);
  animation: bounce .8s ease-in-out infinite alternate;
}
@keyframes bounce { from { transform: rotate(45deg) translateY(-4px); } to { transform: rotate(45deg) translateY(4px); } }

/* ---------- BADGES ---------- */
.badges {
  background: var(--brand-dark);
  padding: 2rem 2rem;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,.1);
  flex: 1;
  min-width: 200px;
}
.badge-item:last-child { border-right: none; }
.badge-icon { font-size: 2rem; }
.badge-item strong { display: block; color: var(--brand-amber); font-size: 1rem; font-weight: 700; }
.badge-item span   { display: block; color: rgba(255,255,255,.6); font-size: .85rem; }

/* ---------- SOBRE ---------- */
.sobre { padding: 7rem 2rem; }
.sobre-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.sobre-img-wrap img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius); }
.sobre-badge-anos {
  position: absolute;
  bottom: 2rem; right: 2rem;
  background: var(--brand-red);
  color: var(--white);
  border-radius: 50%;
  width: 110px; height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(192,57,43,.5);
}
.anos-num { font-family: var(--ff-heading); font-size: 2rem; font-weight: 700; line-height: 1; }
.anos-txt  { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.sobre-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.sobre-lista { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: .75rem; }
.sobre-lista li { color: var(--text-main); font-size: .95rem; font-weight: 600; }

/* ---------- DIVISOR FORNO ---------- */
.divisor-forno {
  background: var(--brand-red);
  padding: 3rem 2rem;
  text-align: center;
}
.divisor-forno p {
  font-family: var(--ff-heading);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-style: italic;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto;
}

/* ---------- CARDÁPIO ---------- */
.cardapio { padding: 7rem 2rem; background: var(--brand-dark); }
.cardapio h2 { color: var(--white); }
.cardapio .section-sub { color: rgba(255,255,255,.6); }

.tabs {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 3rem;
  background: rgba(255,255,255,.07);
  border-radius: 50px;
  padding: .4rem;
  width: fit-content;
  margin: 0 auto 3rem;
}
.tab {
  padding: .65rem 1.75rem;
  border: none;
  background: transparent;
  color: rgba(255,255,255,.65);
  border-radius: 50px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .04em;
}
.tab.active { background: var(--brand-red); color: var(--white); box-shadow: 0 4px 14px rgba(192,57,43,.5); }
.tab:hover:not(.active) { color: var(--white); background: rgba(255,255,255,.1); }

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.cardapio-note {
  margin-top: 3rem;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  text-align: center;
}

/* ---------- PIZZA LIST ---------- */
.pizza-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: .75rem;
  text-align: left;
}
.pizza-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  padding: .9rem 1.2rem;
  transition: var(--transition);
}
.pizza-item:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(232,160,32,.35);
  transform: translateY(-2px);
}
.pizza-item--destaque {
  border-color: rgba(192,57,43,.5);
  background: rgba(192,57,43,.12);
}
.pizza-item--premium {
  border-color: rgba(232,160,32,.4);
  background: rgba(232,160,32,.08);
}
.pi-name {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .2rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.pi-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.pi-tag {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .15rem .6rem;
  border-radius: 50px;
  background: var(--brand-red);
  color: var(--white);
  flex-shrink: 0;
}
.pi-tag--gold {
  background: var(--brand-amber);
  color: var(--brand-dark);
}

/* ---------- FILÉS ---------- */
.file-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  text-align: left;
}
.file-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition);
}
.file-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); border-color: rgba(232,160,32,.4); }
.file-icon { font-size: 2rem; flex-shrink: 0; }
.file-body h3 { font-family: var(--ff-heading); font-size: 1.1rem; color: var(--white); margin-bottom: .4rem; }
.file-body p  { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ---------- PREÇOS ---------- */
.preco-extras {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.preco-extra-item {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: .75rem 1.5rem;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
}
.preco-extra-item strong { color: var(--brand-amber); }

.preco-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  text-align: center;
}
.preco-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  position: relative;
}
.preco-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.25); }
.preco-card--popular {
  background: var(--brand-red);
  border-color: var(--brand-red);
  transform: scale(1.04);
}
.preco-card--popular:hover { transform: scale(1.04) translateY(-5px); }
.preco-card--combo {
  border-color: rgba(232,160,32,.5);
  background: rgba(232,160,32,.08);
}
.preco-card-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand-amber);
  color: var(--brand-dark);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .25rem .9rem;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
}
.preco-card--popular .preco-card-badge { background: var(--white); }
.preco-card-header {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .3rem;
  margin-top: .75rem;
}
.preco-card-size { font-size: .8rem; color: rgba(255,255,255,.55); margin-bottom: 1rem; }
.preco-card-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--brand-amber);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.preco-card--popular .preco-card-price { color: var(--white); }
.preco-card-price span { font-size: 1.2rem; }
.preco-card ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.preco-card ul li { font-size: .82rem; color: rgba(255,255,255,.65); }
.preco-card--popular ul li { color: rgba(255,255,255,.85); }

/* ---------- DEPOIMENTOS ---------- */
.depoimentos { padding: 7rem 2rem; background: var(--brand-cream); }
.depo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}
.depo-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(90,30,0,.1);
  border: 1px solid rgba(90,30,0,.07);
  transition: var(--transition);
}
.depo-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(90,30,0,.15); }
.depo-card--destaque {
  background: var(--brand-red);
  color: var(--white);
  border-color: var(--brand-red);
}
.depo-stars { font-size: 1rem; margin-bottom: 1rem; }
.depo-card p { font-size: .95rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 1.5rem; font-style: italic; }
.depo-card--destaque p { color: rgba(255,255,255,.85); }
.depo-autor { display: flex; align-items: center; gap: .75rem; }
.depo-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--brand-amber);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; color: var(--brand-dark);
  flex-shrink: 0;
}
.depo-card--destaque .depo-avatar { background: rgba(255,255,255,.25); color: var(--white); }
.depo-autor strong { display: block; font-size: .9rem; color: var(--text-main); }
.depo-card--destaque .depo-autor strong { color: var(--white); }
.depo-autor span   { font-size: .8rem; color: var(--text-muted); }
.depo-card--destaque .depo-autor span { color: rgba(255,255,255,.65); }

/* ---------- CONTATO ---------- */
.contato {
  padding: 7rem 2rem;
  background: linear-gradient(135deg, #1A0A00 0%, #3B1500 100%);
}
.contato h2 { color: var(--white); }
.contato .section-label { color: var(--brand-amber); }
.contato .container > .contato-info > p { color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 1.5rem; }
.info-items { display: flex; flex-direction: column; gap: 1.25rem; }
.info-item { display: flex; align-items: flex-start; gap: 1rem; }
.info-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.info-item strong { display: block; color: var(--brand-amber); font-size: .85rem; font-weight: 700; margin-bottom: .2rem; }
.info-item span, .info-item a { color: rgba(255,255,255,.75); font-size: .95rem; transition: color .2s; }
.info-item a:hover { color: var(--brand-amber); }

/* ---------- FOOTER ---------- */
.footer {
  background: #0D0500;
  color: rgba(255,255,255,.6);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand img { height: 80px; width: auto; object-fit: contain; border-radius: 0; margin-bottom: .75rem; }
.footer-brand p { font-family: var(--ff-heading); font-size: 1.1rem; color: var(--white); font-weight: 700; }
.footer-brand span { font-size: .8rem; color: var(--brand-amber); }
.footer-links h4, .footer-social h4 { color: var(--white); font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1.25rem; font-weight: 700; }
.footer-links ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-links li a { font-size: .9rem; transition: color .2s; }
.footer-links li a:hover { color: var(--brand-amber); }
.social-link { display: inline-flex; align-items: center; gap: .6rem; font-size: .9rem; transition: color .2s; }
.social-link:hover { color: var(--brand-amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: .8rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- GALERIA / CARROSSEL ---------- */
.galeria {
  padding: 7rem 2rem 5rem;
  background: linear-gradient(180deg, #1A0A00 0%, #2C1005 100%);
  overflow: hidden;
}
.galeria h2 { color: var(--white); }
.galeria .section-sub { color: rgba(255,255,255,.6); }

.galeria-carousel-wrap {
  position: relative;
  max-width: 900px;
  margin: 2.5rem auto 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(232,160,32,.2);
  opacity: 1 !important;
  transform: none !important;
}

.galeria-carousel {
  position: relative;
  height: 560px;
}

.galeria-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}
.galeria-slide.active {
  opacity: 1 !important;
  pointer-events: auto;
}
.galeria-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.galeria-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 3rem 2rem 1.5rem;
  background: linear-gradient(transparent, rgba(20,6,0,.85));
  display: flex;
  align-items: flex-end;
}
.galeria-caption span {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
}

.galeria-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.35);
  background: rgba(20,6,0,.55);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
}
.galeria-btn:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 18px rgba(192,57,43,.5);
}
.galeria-btn--prev { left: 1.25rem; }
.galeria-btn--next { right: 1.25rem; }

.galeria-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 10;
}
.galeria-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.galeria-dot.active,
.galeria-dot:hover {
  background: var(--brand-amber);
  border-color: var(--brand-amber);
  transform: scale(1.2);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .container { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .badges { gap: 0; }
  .badge-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(26,10,0,.98);
    backdrop-filter: blur(12px);
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 998;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { font-size: 1.3rem; }
  .nav-toggle { display: flex; z-index: 999; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .contato .container { grid-template-columns: 1fr; }
  .sobre-img-wrap img { height: 300px; }
  .galeria-carousel { height: 320px; }
  .galeria-btn { width: 40px; height: 40px; font-size: 1.5rem; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: .85rem; border-radius: 50%; }
}
