/**
 * GS Consig — Site institucional
 * Premium dark theme · mobile-first
 */

/* -------------------------------------------------------------------------- */
/* Variables & reset                                                           */
/* -------------------------------------------------------------------------- */

:root {
  --gold: #c9a227;
  --gold-light: #e4c76a;
  --gold-dim: rgba(201, 162, 39, 0.35);

  --burgundy: #6f1418;
  --burgundy-deep: #3c0d10;

  --bg: #090909;
  --bg-alt: #0f0f0f;
  --bg-card: rgba(255, 255, 255, 0.03);

  --text: #f5f5f5;
  --text-muted: #a3a3a3;

  --border: rgba(255, 255, 255, 0.08);

  --font-ui: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;

  --radius: 1rem;
  --radius-full: 999px;

  --header-h: 4.75rem;

  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 0 40px rgba(201, 162, 39, 0.12);

  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

a {
  color: var(--gold-light);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover {
  color: var(--gold);
}

.visually-hidden,
.skip-link:not(:focus) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link:focus {
  position: fixed;
  z-index: 10000;
  top: 1rem;
  left: 1rem;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  padding: 0.65rem 1.25rem;
  background: var(--gold);
  color: var(--bg) !important;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
}

code {
  font-size: 0.85em;
  background: var(--burgundy-deep);
  padding: 0.1em 0.35em;
  border-radius: 4px;
  color: var(--gold-light);
}

/* -------------------------------------------------------------------------- */
/* Layout                                                                     */
/* -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding-inline: 2rem;
  }
}

.section {
  padding: 4rem 0;
}

@media (min-width: 992px) {
  .section {
    padding: 5.25rem 0;
  }
}

.section-alt {
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
  border-block: 1px solid var(--border);
}

.narrow {
  max-width: 40rem;
  margin-inline: auto;
}

.grid-2 {
  display: grid;
  gap: 2.75rem;
}

@media (min-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
  }
}

.align-center {
  align-items: center;
}

/* -------------------------------------------------------------------------- */
/* Typography                                                                  */
/* -------------------------------------------------------------------------- */

.text-gradient {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin: 0 0 0.75rem;
}

.section-head {
  margin-bottom: 2.75rem;
}

.section-head.centered {
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 34rem;
}

.section-lead.narrow {
  margin-inline: auto;
}

.section-head.centered .section-lead {
  margin-inline: auto;
}

.section-text {
  margin: 0 0 1.125rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-text:last-of-type {
  margin-bottom: 1.5rem;
}

.section-cta {
  margin-top: 2.75rem;
  text-align: center;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* -------------------------------------------------------------------------- */
/* Buttons                                                                     */
/* -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, border-color 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--bg) !important;
  box-shadow: 0 12px 32px rgba(201, 162, 39, 0.25);
}

.btn-gold:hover {
  filter: brightness(1.06);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--text) !important;
}

.btn-outline:hover {
  border-color: var(--gold-dim);
  background: rgba(201, 162, 39, 0.08);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 0.85rem 1.65rem;
  font-size: 0.95rem;
}

.btn-full {
  width: 100%;
}

.hide-mobile-flex {
  display: none;
}

@media (min-width: 992px) {
  .hide-mobile-flex {
    display: inline-flex;
  }
}

/* -------------------------------------------------------------------------- */
/* Header / Nav                                                                */
/* -------------------------------------------------------------------------- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: transparent;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.header.header-scrolled {
  background: rgba(9, 9, 9, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-gold);
}

.logo {
  text-decoration: none;
  z-index: 1002;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  z-index: 1002;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 1.35rem;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }
}

.nav {
  position: fixed;
  inset: 0;
  padding: calc(var(--header-h) + 1.5rem) 1.5rem 2rem;
  background: rgba(9, 9, 9, 0.97);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1001;
}

.nav.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 992px) {
  .nav {
    position: static;
    inset: unset;
    padding: 0;
    background: transparent;
    visibility: visible;
    opacity: 1;
    transform: none;
    overflow: visible;
  }
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

@media (min-width: 992px) {
  .nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.15rem;
  }
}

.nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text) !important;
  text-decoration: none !important;
  font-weight: 500;
  font-size: 0.925rem;
  border-radius: 0.65rem;
  transition: background 0.2s, color 0.2s;
}

@media (min-width: 992px) {
  .nav-link {
    padding: 0.45rem 0.7rem;
  }
}

.nav-link:hover {
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold-light) !important;
}

/* -------------------------------------------------------------------------- */
/* Hero                                                                        */
/* -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding: calc(var(--header-h) + 2.5rem) 0 3.75rem;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 20%, rgba(111, 20, 24, 0.35), transparent 50%),
    radial-gradient(ellipse at 85% 60%, rgba(201, 162, 39, 0.12), transparent 45%),
    linear-gradient(180deg, transparent, var(--bg));
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding-block: 1rem;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 5vw, 3.65rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 1.25rem;
  letter-spacing: -0.025em;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  max-width: 32rem;
}

.hero-lead strong {
  color: var(--text);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: grid;
  gap: 1.25rem;
  margin: 0;
}

@media (min-width: 600px) {
  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.hero-stats dt {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin: 0 0 0.35rem;
}

.hero-stats dd {
  margin: 0;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-media-frame {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.hero-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 9, 9, 0.5), transparent 40%);
  pointer-events: none;
}

.hero-badge {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(9, 9, 9, 0.75);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-badge .fa-star {
  color: var(--gold);
  margin-top: 3px;
}

/* -------------------------------------------------------------------------- */
/* Sobre / cards                                                               */
/* -------------------------------------------------------------------------- */

.about-cards {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-card {
  padding: 1.35rem 1.35rem;
  border-radius: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.about-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.about-card p {
  margin: 0;
  font-size: 0.9225rem;
  color: var(--text-muted);
}

.about-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: rgba(111, 20, 24, 0.45);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
}

/* -------------------------------------------------------------------------- */
/* Diferenciais                                                                */
/* -------------------------------------------------------------------------- */

.diff-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .diff-grid {
    gap: 1.5rem;
  }
}

.diff-item {
  padding: 1.75rem 1.85rem;
  border-radius: 1.125rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  transition: transform 0.26s ease, border-color 0.26s;
}

.diff-item:hover {
  transform: translateY(-3px);
  border-color: var(--gold-dim);
}

.diff-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--burgundy);
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.diff-item h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.diff-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* -------------------------------------------------------------------------- */
/* Cardápio                                                                     */
/* -------------------------------------------------------------------------- */

.menu-panels {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .menu-panels {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: start;
  }
}

.menu-group {
  padding: 1.65rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
}

.menu-group-feature {
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: var(--shadow-gold);
}

.menu-group h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-light);
}

.menu-group h3 i {
  opacity: 0.9;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list > li + li {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px dashed var(--border);
}

.menu-item-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.menu-name {
  font-weight: 600;
}

.menu-name.menu-badge::before {
  content: "★";
  margin-right: 0.35rem;
  color: var(--gold);
}

.menu-price {
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.menu-desc {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* -------------------------------------------------------------------------- */
/* Galeria                                                                      */
/* -------------------------------------------------------------------------- */

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-tall {
    grid-row: span 2;
  }

  .gallery-wide {
    grid-column: span 2;
    grid-auto-rows: 220px;
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-wide {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* -------------------------------------------------------------------------- */
/* Depoimentos                                                                  */
/* -------------------------------------------------------------------------- */

.testimonials {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
  }
}

.testimonial {
  margin: 0;
  padding: 1.65rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.testimonial::before {
  content: "\201c";
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.testimonial p {
  margin: 0 0 1rem;
  font-size: 0.9625rem;
  color: var(--text-muted);
}

.testimonial footer {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}

/* -------------------------------------------------------------------------- */
/* FAQ                                                                          */
/* -------------------------------------------------------------------------- */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.25rem;
  background: transparent;
  border: none;
  color: inherit;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question::after {
  content: "+";
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 400;
}

.faq-item.is-open .faq-question::after {
  content: "\2212";
}

.faq-question:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.faq-answer {
  padding-inline: 1.25rem;
  overflow: hidden;
  transition: grid-template-rows 0.35s ease;
}

.faq-item.is-open .faq-answer {
  padding-bottom: 1.1rem;
}

.faq-item:not(.is-open) .faq-answer {
  padding-top: 0;
  padding-bottom: 0;
}

.faq-answer p {
  margin: 0;
  padding-top: 0.25rem;
  font-size: 0.9425rem;
  color: var(--text-muted);
}

/* -------------------------------------------------------------------------- */
/* Contato                                                                      */
/* -------------------------------------------------------------------------- */

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.contact-list > li + li {
  margin-top: 1.35rem;
}

.contact-list > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(111, 20, 24, 0.5);
  color: var(--gold-light);
  font-size: 1rem;
}

.contact-list strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}

.contact-list p {
  margin: 0;
  color: var(--text-muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-form fieldset {
  border: none;
  margin: 0 0 1.75rem;
  padding: 0;
}

.contact-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0.75rem 0 0;
}

.map-wrap {
  margin-top: 0;
}

@media (min-width: 992px) {
  .map-wrap {
    margin-top: -0.5rem;
  }
}

.map-title {
  font-size: 1.1rem;
  margin: 0 0 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
}

.map-iframe {
  width: 100%;
  border: none;
  min-height: 280px;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                      */
/* -------------------------------------------------------------------------- */

.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  gap: 2.75rem;
  padding-bottom: 2.75rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: minmax(0, 2fr) 1fr 1fr;
  }
}

.footer-legal {
  font-size: 0.8525rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.footer-copy {
  font-size: 0.8925rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.footer-heading {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  margin: 0 0 1.1rem;
}

.footer-nav ul,
.footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav ul li + li {
  margin-top: 0.5rem;
}

.footer-nav a {
  color: var(--text) !important;
  text-decoration: none !important;
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--gold-light) !important;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text) !important;
  text-decoration: none !important;
  font-size: 1rem;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold-light) !important;
}

.footer-address {
  margin-top: 1.35rem;
  font-style: normal;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* -------------------------------------------------------------------------- */
/* WhatsApp FAB                                                                */
/* -------------------------------------------------------------------------- */

.fab-wa {
  position: fixed;
  bottom: 1.35rem;
  right: 1.35rem;
  z-index: 998;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  text-decoration: none !important;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}

.fab-wa:hover {
  transform: scale(1.07);
}

.fab-wa:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* -------------------------------------------------------------------------- */
/* Reveal animations (JS adds .revealed)                                        */
/* -------------------------------------------------------------------------- */

html.no-js .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .reveal.reveal-delay {
    transition: none !important;
  }
}

.reveal-delay {
  transition-delay: 0.1s !important;
}

/* -------------------------------------------------------------------------- */
/* Legal inner pages                                                           */
/* -------------------------------------------------------------------------- */

.page-hero {
  padding: calc(var(--header-h) + 2rem) 0 3rem;
  background: radial-gradient(ellipse at 75% -20%, rgba(111, 20, 24, 0.45), transparent 55%);
  border-bottom: 1px solid var(--border);
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.75rem;
}

.page-intro {
  max-width: 40rem;
  color: var(--text-muted);
  margin: 0;
}

.article-legal {
  padding: 3rem 0 4rem;
}

.article-legal h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin: 2.25rem 0 1rem;
}

.article-legal h2:first-of-type {
  margin-top: 0;
}

.article-legal p,
.article-legal li {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.article-legal ul {
  padding-left: 1.35rem;
}

.article-legal a {
  word-break: break-word;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 3rem;
  font-weight: 600;
}
