:root {
  /* CORES PRINCIPAIS */
  --bg-primary: #000;
  --bg-secondary: #080808;
  --bg-card: #0b0b0b;
  --bg-card-image: #111;
  --bg-footer: #050505;

  /* CORES TEXTO */
  --text-primary: #fff;
  --text-secondary: #ddd;
  --text-muted: #bbb;
  --text-light: #cfcfcf;
  --text-gray: #888;
  --text-dark: #000;

  /* CORES DESTAQUE */
  --gold: #d4af37;
  --gold-light: #f3d36b;
  --gold-dim: rgba(212, 175, 55, 0.15);
  --gold-border: rgba(212, 175, 55, 0.25);

  /* BORDAS */
  --border-color: #1f1f1f;

  /* SOMBRAS */
  --shadow-dark: 0 0 25px rgba(0, 0, 0, 0.35);
  --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.25);
  --shadow-dropdown: 0 0 25px rgba(0, 0, 0, 0.45);

  /* TRANSIÇÕES */
  --transition: 0.3s;

  /* FONTES */
  --font-main: "Poppins", sans-serif;
  --font-title: "Cinzel", serif;
}

/* ===================================
   RESET & BASE
=================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-main);
}

section[id] {
  scroll-margin-top: 100px;
}

/* ACESSIBILIDADE: foco visível pelo teclado */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Respeita preferência do usuário por menos animação */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}


/* ===================================
   NAVBAR
=================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 26px 8%;
  background: transparent;
  transition: var(--transition), padding var(--transition);
}

.navbar.scrolled {
  padding: 16px 8%;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-dark);
}

.navbar-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.navbar-logo {
  font-family: var(--font-title);
  font-size: 21px;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo span {
  color: var(--gold);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0 auto;
}

.navbar-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: var(--transition);
}

.navbar-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.navbar-links a:hover {
  color: var(--gold);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-cta {
  padding: 13px 28px;
  font-size: 11.5px;
  flex-shrink: 0;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
}

.navbar-mobile {
  display: none;
  flex-direction: column;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.navbar-mobile.show {
  max-height: 320px;
}

.navbar-mobile a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 16px 8%;
  border-top: 1px solid var(--border-color);
  transition: var(--transition);
}

.navbar-mobile a:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

@media (max-width: 900px) {
  .navbar-links,
  .navbar-cta {
    display: none;
  }

  .navbar-toggle {
    display: block;
  }

  .navbar-mobile {
    display: flex;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(14px);
    margin-top: 18px;
    border-radius: 0 0 18px 18px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 20px 6%;
  }

  .navbar.scrolled {
    padding: 14px 6%;
  }

  .navbar-logo {
    font-size: 17px;
  }
}

/* ===================================
   HERO
=================================== */

.hero {
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?q=80&w=1600&auto=format&fit=crop")
    center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: fadeUp 1.2s ease;
}

.subtitle {
  color: var(--gold);
  letter-spacing: 5px;
  margin-bottom: 20px;
  font-size: 14px;
}

.hero h1 {
  font-family: var(--font-title);
  font-size: 75px;
  line-height: 1.2;
  margin-bottom: 25px;
  max-width: 850px;
}

.description {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 700px;
}

/* BOTÃO */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--text-dark);
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}

/* BADGES */

.hero-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 35px;
  width: 100%;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold-border);
  padding: 12px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  font-size: 13px;
  letter-spacing: 0.3px;
  color: #e5e5e5;
  transition: var(--transition);
}

.hero-badges span i {
  color: var(--gold);
  font-size: 13px;
}

.hero-badges span:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-2px);
}

.text-gold-shine {
  background: linear-gradient(100deg, var(--gold) 30%, var(--gold-light) 45%, #fff 50%, var(--gold-light) 55%, var(--gold) 70%);
  background-size: 250% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  to {
    background-position: -250% center;
  }
}

/* DROPDOWN */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  position: absolute;
  bottom: 85px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  min-width: 260px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-dropdown);
  z-index: 999;
}

/* Hover (desktop) */
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  bottom: 75px;
}

/* Toggle mobile via JS */
.dropdown-content.show {
  opacity: 1;
  visibility: visible;
  bottom: 75px;
}

.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background: var(--gold);
  color: var(--text-dark);
  padding-left: 30px;
}

.dropdown-content a i {
  width: 16px;
  text-align: center;
  font-size: 13px;
}

/* HERO RESPONSIVO */

@media (max-width: 768px) {
  .hero {
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .description {
    font-size: 16px;
  }

  .hero-badges span {
    font-size: 13px;
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }

  .subtitle {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .description {
    font-size: 15px;
  }
}

/* ===================================
   DIFERENCIAIS
=================================== */

.diferenciais {
  background: var(--bg-secondary);
  padding: 80px 8%;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.diferencial-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  transition: var(--transition);
}

.diferencial-item:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.diferencial-icon {
  font-size: 38px;
  margin-bottom: 18px;
  display: block;
}

.diferencial-item h4 {
  font-family: var(--font-title);
  font-size: 17px;
  color: var(--gold);
  margin-bottom: 12px;
}

.diferencial-item p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ===================================
   CONTADORES
=================================== */

.contadores {
  padding: 80px 8%;
  background: linear-gradient(135deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
  border-bottom: 1px solid var(--border-color);
}

.contadores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contador-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.contador-num {
  font-family: var(--font-title);
  font-size: 58px;
  color: var(--gold);
  line-height: 1;
}

.contador-suf {
  font-family: var(--font-title);
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
  margin-left: -4px;
}

.contador-item p {
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* ===================================
   SOBRE
=================================== */

.sobre {
  padding: 120px 8%;
  background: var(--bg-secondary);
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.sobre-img {
  animation: fadeLeft 1.2s ease;
  flex-shrink: 0;
}

.sobre-img img {
  width: 420px;
  border-radius: 25px;
  box-shadow: var(--shadow-gold);
  border: 1px solid var(--gold-border);
}

.sobre-text {
  max-width: 500px;
  animation: fadeRight 1.2s ease;
}

.mini-title {
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 18px;
  font-size: 13px;
}

.sobre-text h2 {
  font-family: var(--font-title);
  font-size: 46px;
  margin-bottom: 22px;
  line-height: 1.3;
}

.sobre-text p {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 15px;
}

.sobre-btn {
  margin-top: 32px;
  display: inline-flex;
}

/* ===================================
   PRODUTOS
=================================== */

.produtos {
  padding: 100px 8%;
}

.title-center {
  text-align: center;
  margin-bottom: 70px;
}

.title-center h2 {
  font-family: var(--font-title);
  font-size: 52px;
}

/* GRID DOS CARDS */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 300px));
  justify-content: center;
  gap: 35px;
}

/* CARD */

.card {
  width: 300px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 22px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: var(--shadow-dark);
  opacity: 0;
  transform: translateY(40px);
}

.card.visible {
  animation: cardAnimation 0.6s ease forwards;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

/* IMAGEM WRAP */

.card-img-wrap {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  background: var(--bg-card-image);
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  transition: 0.4s;
  display: block;
}

.card:hover .card img,
.card-img-wrap:hover img {
  transform: scale(1.05);
}

/* ÍCONE ZOOM */

.card-zoom {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--gold);
  font-size: 26px;
}

.card-img-wrap:hover .card-zoom {
  opacity: 1;
}

/* CONTEÚDO DO CARD */

.card-content {
  padding: 20px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-weight {
  background: var(--gold);
  color: var(--text-dark);
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
}

/* CATEGORIAS */

.categoria {
  margin-top: 100px;
}

.categoria-title {
  font-family: var(--font-title);
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}

.categoria-title::after {
  content: "";
  width: 100px;
  height: 2px;
  background: var(--gold);
  display: block;
  margin: 16px auto 0;
  opacity: 0.4;
  border-radius: 2px;
}

/* DELAY ENTRE OS CARDS */

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }

/* ===================================
   DEPOIMENTOS
=================================== */

.depoimentos {
  padding: 100px 8%;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.depoimento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 22px;
  padding: 35px 30px;
  transition: var(--transition);
}

.depoimento-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.depoimento-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 18px;
  letter-spacing: 3px;
}

.depoimento-card > p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 14px;
}

.depoimento-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.depoimento-autor strong {
  display: block;
  font-size: 15px;
  color: var(--text-primary);
}

.depoimento-autor span {
  font-size: 13px;
  color: var(--gold);
}

/* ===================================
   CTA FINAL
=================================== */

.final {
  padding: 120px 8%;
  text-align: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--text-dark);
}

.final h2 {
  font-family: var(--font-title);
  font-size: 52px;
  margin-bottom: 22px;
}

.final p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.85;
}

.final .btn {
  background: var(--text-dark);
  color: var(--gold);
  font-size: 15px;
}

.final .btn:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* ===================================
   FOOTER
=================================== */

.footer {
  background: var(--bg-footer);
  padding: 90px 8% 0;
  border-top: 1px solid var(--border-color);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  animation: fadeUp 1.2s ease;
}

.footer-col h5 {
  font-family: var(--font-title);
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col a,
.footer-col span {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14.5px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  width: fit-content;
}

.footer-col a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-col i {
  color: var(--gold);
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.footer-col .garantia {
  color: var(--gold-light);
  font-weight: 600;
}

.footer-brand img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  margin-bottom: 6px;
  border-radius: 50%;
  box-shadow: var(--shadow-gold);
  border: 2px solid var(--gold-border);
}

.footer-brand h3 {
  font-family: var(--font-title);
  font-size: 26px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.footer-brand h3 span {
  color: var(--gold);
}

.footer-brand .empresa {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 14.5px;
  max-width: 340px;
}

/* SOCIAL */

.social {
  margin-top: 6px;
  display: flex;
  gap: 14px;
}

.social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 19px;
  transition: var(--transition);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.social a:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-gold);
}

/* BARRA INFERIOR */

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0 36px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-gray);
  line-height: 1.8;
}

.footer-bottom .cnpj {
  font-size: 13px;
  margin-bottom: 10px;
}

.footer-bottom .copyright {
  font-size: 12.5px;
  max-width: 780px;
  margin: 0 auto;
}

.footer-bottom .copyright a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom .copyright a:hover {
  opacity: 0.8;
}

/* DEVELOPER */

.developer {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-gray) !important;
}

.developer a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

.developer a:hover {
  opacity: 0.8;
}

@media (max-width: 860px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 46px;
    text-align: center;
  }

  .footer-col,
  .footer-col a,
  .footer-col span {
    align-items: center;
  }

  .footer-brand {
    align-items: center;
  }

  .social {
    justify-content: center;
  }
}


/* ===================================
   LIGHTBOX
=================================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  backdrop-filter: blur(10px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.2);
  transform: scale(0.9);
  transition: 0.3s;
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: var(--gold);
  color: var(--text-dark);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10000;
}

.lightbox-close:hover {
  transform: rotate(90deg) scale(1.1);
}

/* ===================================
   RESPONSIVO GERAL
=================================== */

@media (max-width: 768px) {
  .sobre-img img {
    width: 100%;
    max-width: 380px;
  }

  .title-center h2,
  .sobre-text h2,
  .final h2 {
    font-size: 36px;
  }

  .categoria-title {
    font-size: 30px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .card img {
    height: 300px;
  }

  .depoimentos-grid {
    grid-template-columns: 1fr;
  }

  .final h2 {
    font-size: 36px;
  }

  .final p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .diferenciais {
    padding: 60px 5%;
  }

  .contadores {
    padding: 60px 5%;
  }

  .contador-num {
    font-size: 44px;
  }

  .sobre {
    padding: 80px 5%;
  }

  .produtos {
    padding: 60px 5%;
  }

  .depoimentos {
    padding: 60px 5%;
  }

  .final {
    padding: 80px 5%;
  }

  .footer {
    padding: 60px 5% 0;
  }
}

/* ===================================
   PÁGINA LEGAL (Política de Privacidade)
=================================== */

.legal-hero {
  min-height: 46vh;
  background: url("https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?q=80&w=1600&auto=format&fit=crop")
    center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 20px 60px;
}

.legal-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.legal-hero-content h1 {
  font-family: var(--font-title);
  font-size: 48px;
  margin-bottom: 14px;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.5px;
}

.legal-content {
  background: var(--bg-secondary);
  padding: 90px 8%;
}

.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.legal-intro {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border-color);
}

.legal-block {
  margin-bottom: 46px;
}

.legal-block h2 {
  font-family: var(--font-title);
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.legal-block h2 span {
  font-size: 14px;
  color: var(--text-gray);
  letter-spacing: 1px;
}

.legal-block p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 14px;
}

.legal-block ul {
  list-style: none;
  margin-bottom: 14px;
}

.legal-block ul li {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.9;
  padding-left: 22px;
  position: relative;
}

.legal-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.legal-block a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-border);
  transition: var(--transition);
}

.legal-block a:hover {
  opacity: 0.8;
}

.legal-back {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 120px 20px 50px;
  }

  .legal-hero-content h1 {
    font-size: 34px;
  }

  .legal-content {
    padding: 60px 6%;
  }
}

/* ===================================
   BANNER DE COOKIES
=================================== */

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: -300px;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  box-shadow: var(--shadow-dropdown);
  padding: 28px 34px;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 26px;
  transition: bottom 0.6s ease;
}

.cookie-banner.show {
  bottom: 24px;
}

.cookie-icon {
  font-size: 30px;
  color: var(--gold);
  flex-shrink: 0;
}

.cookie-text h4 {
  font-family: var(--font-title);
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 8px;
}

.cookie-text p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 620px;
}

.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-text a:hover {
  opacity: 0.8;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}

.cookie-btn {
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: var(--font-main);
  white-space: nowrap;
}

.cookie-accept {
  background: var(--gold);
  color: var(--text-dark);
}

.cookie-accept:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.35);
}

.cookie-decline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.cookie-decline:hover {
  border-color: var(--gold-border);
  color: var(--gold);
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: -400px;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 22px;
  }

  .cookie-banner.show {
    bottom: 14px;
  }

  .cookie-actions {
    width: 100%;
    margin-left: 0;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

/* ===================================
   KEYFRAMES
=================================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-70px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(70px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes cardAnimation {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
