/* =====================================================
   VARIÁVEIS GLOBAIS
===================================================== */
:root {
  --black: #050507;
  --black-soft: #0b0b12;

  --red: #8b1d2c;
  --red-strong: #b42236;
  --glow: rgba(139,29,44,.55);

  --white: #ffffff;
  --muted: rgba(255,255,255,.68);

  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;

  --transition-fast: .25s ease;
  --transition: .45s ease;
  --transition-slow: .8s ease;
}

/* =====================================================
   RESET
===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: radial-gradient(circle at top, #0e0e18, #040406);
  color: var(--white);
  overflow-x: hidden;
}

/* =====================================================
   SCROLL PROGRESS
===================================================== */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--red-strong));
  z-index: 3000;
}

/* =====================================================
   FLOATING BUTTONS
===================================================== */
.fab.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.6);
  z-index: 2500;
  transition: var(--transition-fast);
}

.fab.whatsapp:hover { transform: scale(1.08); }

#toTop {
  position: fixed;
  right: 20px;
  bottom: 84px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: none;
  color: white;
  cursor: pointer;
  display: none;
  backdrop-filter: blur(8px);
  z-index: 2400;
}

/* =====================================================
   LANGUAGE SWITCHER
===================================================== */
.lang-switcher {
  position: fixed;
  left: 18px;
  bottom: 18px;
  display: flex;
  gap: 6px;
  padding: 8px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  z-index: 2600;
}

.lang-switcher button {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
}

.lang-switcher button.active {
  background: var(--red);
  color: white;
  box-shadow: 0 0 10px var(--glow);
}

/* =====================================================
   HERO
===================================================== */
.hero {
  position: relative;
  height: 110vh;
  min-height: 640px;
  overflow: hidden;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.92));
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-logo {
  width: 300px;
  max-width: 80vw;
  margin-bottom: 22px;
  filter: drop-shadow(0 0 30px var(--glow));
}

.hero-content p {
  font-size: 15px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
}

/* =====================================================
   SEÇÕES BASE
===================================================== */
.section {
  padding: 90px 20px;
  text-align: center;
}

.section.big { padding: 120px 20px; }

.section.dark {
  background: linear-gradient(180deg, #070709, #040406);
}

.section h2 {
  font-size: 30px;
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.section p {
  max-width: 900px;
  margin: auto;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* =====================================================
   EXPERIENCE
===================================================== */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 40px;
  margin-top: 50px;
}

.experience-grid i {
  font-size: 38px;
  color: var(--red);
  margin-bottom: 14px;
}

.experience-grid h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.experience-grid p {
  font-size: 14px;
  line-height: 1.5;
}

/* =====================================================
   GALERIA / STAFF
===================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 18px;
  margin-top: 40px;
}

.gallery-grid.large {
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  filter: grayscale(.15) contrast(1.05);
  transition: var(--transition);
}

.gallery-grid img:hover {
  transform: scale(1.05);
  filter: grayscale(0) contrast(1.1);
}

/* =====================================================
   VÍDEOS
===================================================== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  margin-top: 40px;
}

.video-grid video {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: black;
}

/* =====================================================
   GOOGLE RATING
===================================================== */
.google-rating {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}

/* =====================================================
   ONDE ESTAMOS
===================================================== */
.location-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
}

.location-info {
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  max-width: 420px;
}

.location-info h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.location-info p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
  color: var(--muted);
}

.location-info a {
  color: var(--white);
  text-decoration: none;
}

.btn-map {
  display: block;
  margin: 14px auto 0;
  padding: 12px;
  max-width: 220px;
  border-radius: 999px;
  background: var(--red);
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.location-map iframe {
  width: 100%;
  max-width: 420px;
  height: 200px;
  border-radius: var(--radius-md);
  border: none;
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
  background: #020203;
  padding: 60px 18px 36px;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.footer-brand img {
  width: 150px;
  margin: auto;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.footer-block h4 {
  font-size: 12px;
  color: var(--red);
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.footer-block a,
.footer-block span {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}

.footer i { color: var(--red); }

.footer-bottom {
  margin-top: 24px;
  font-size: 11px;
  color: var(--muted);
}

/* =====================================================
   DESKTOP / TABLET
===================================================== */
@media (min-width: 1024px) {

  .section { padding: 150px 28px; }
  .section.big { padding: 190px 28px; }

  .section h2 { font-size: 46px; }

  .gallery-grid img,
  .video-grid video { height: 320px; }

  .location-grid {
    max-width: 1200px;
    margin: 80px auto 0;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    text-align: left;
  }

  .footer-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 60px;
    text-align: left;
  }

  .footer-block a,
  .footer-block span {
    justify-content: flex-start;
  }
}

/* =====================================================
   REVEAL
===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


/* FOOTER LAYOUT */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  align-items: start;
}

/* BLOCO LEGAL À DIREITA */
.footer-legal {
  display: flex;
  justify-content: flex-end; /* empurra para a direita */
  align-items: center;
}

/* LINK DO LIVRO */
.livro-reclamacoes {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  text-decoration: none;
  color: inherit;
  opacity: 0.85;
}

.livro-reclamacoes img {
  height: 20px;
  width: auto;
}

.livro-reclamacoes:hover {
  opacity: 1;
}

/* MOBILE: centraliza tudo */
@media (max-width: 768px) {
  .footer-legal {
    justify-content: center;
  }

  .livro-reclamacoes img {
    height: 20px;
  }
}
