/* ===== RESET & TOKENS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  color: #1A1A1A;
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

:root {
  --gold:       #C9A84C;
  --gold-light: #E8CC7A;
  --gold-dark:  #9A7A28;
  --gold-pale:  #F5EDD6;
  --gold-bg:    #FAF6EC;
  --black:      #0D0D0D;
  --dark:       #1A1A1A;
  --dark-2:     #242424;
  --gray:       #4A4A4A;
  --gray-light: #8A8A8A;
  --border:     #E5E0D5;
  --white:      #FFFFFF;
  --off-white:  #FAF8F5;

  --ff-head: 'Playfair Display', serif;
  --ff-body: 'Inter', sans-serif;
  --header-h: 80px;
  --radius: 12px;
  --radius-lg: 20px;
  --tr: 0.3s ease;
  --shadow: 0 4px 20px rgba(201,168,76,0.14);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== KEYFRAMES ===== */
@keyframes ph-fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ph-lineGrow {
  from { width: 0; }
  to   { width: 60px; }
}
@keyframes ph-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes ph-goldPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.35); }
  50%       { box-shadow: 0 0 0 10px rgba(201,168,76,0); }
}
@keyframes ph-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ===== SCROLL PROGRESS ===== */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--tr), box-shadow var(--tr);
}
#header.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  height: 52px;
  width: auto;
}
.logo-text {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
}
#nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
#nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  padding: 6px 14px;
  border-radius: 99px;
  transition: color var(--tr), background var(--tr);
  position: relative;
}
#nav a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--tr);
}
#nav a:hover, #nav a.active {
  color: var(--dark);
}
#nav a:hover::after, #nav a.active::after {
  width: 20px;
}

/* Menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  margin-left: auto;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--tr), opacity var(--tr);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
#nav.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  padding: 20px 24px 28px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  gap: 4px;
  align-items: flex-start;
}
#nav.open a {
  font-size: 1rem;
  padding: 10px 16px;
  width: 100%;
  border-radius: var(--radius);
}
#nav.open a:hover { background: var(--gold-pale); color: var(--dark); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 99px;
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
  border: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
}
.btn-primary:hover::before {
  animation: btn-shine 0.55s ease forwards;
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 99px;
  border: 2px solid rgba(255,255,255,0.6);
  transition: background var(--tr), border-color var(--tr), color var(--tr), transform var(--tr);
}
.btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ===== SECTION COMMON ===== */
.section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--dark);
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: '';
  display: block;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 12px auto 0;
  width: 0;
  transition: width 0.7s ease 0.2s;
}
.section-header h2.heading-visible::after { width: 60px; }

.section-header-light h2 { color: var(--white); }
.section-header-light h2::after { background: var(--gold); }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 99px;
  padding: 5px 16px;
  margin-bottom: 16px;
}
.section-tag-gold {
  background: rgba(201,168,76,0.2);
  color: var(--gold-light);
  border-color: rgba(201,168,76,0.4);
}

.section-sub {
  font-size: 1rem;
  color: var(--gray);
  margin-top: 10px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.section-sub-light { color: rgba(255,255,255,0.65); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.from-left  { transform: translateX(-36px); }
.reveal.from-right { transform: translateX(36px); }
.reveal.scale-in   { transform: scale(0.92); }
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/galeria/g3-ET1_0880.jpg') center/cover no-repeat;
  background-attachment: fixed;
  transform: scale(1.04);
  transition: transform 0.5s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(13,13,13,0.88) 0%,
    rgba(30,20,5,0.82) 45%,
    rgba(50,35,5,0.85) 70%,
    rgba(13,13,13,0.92) 100%
  );
}
.hero-deco {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(250,248,245,0.07), transparent);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px;
  animation: ph-fadeUp 1s ease both;
}
.hero-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 24px;
  animation: logo-entrance 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both, logo-glow 3.5s ease-in-out 2s infinite;
}
.hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #fff 15%, var(--gold-light) 40%, #fff 60%, var(--gold-light) 85%, #fff 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ph-fadeUp 1s ease 0.2s both, text-shimmer 6s linear 1.8s infinite;
}
.hero h2 {
  font-family: var(--ff-head);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--gold-light);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 14px;
  animation: ph-fadeUp 1s ease 0.35s both;
}
.hero-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  animation: ph-fadeUp 1s ease 0.45s both;
}
.hero-botoes {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: ph-fadeUp 1s ease 0.55s both;
}

/* iOS parallax fix */
@supports (-webkit-touch-callout: none) {
  .hero-bg { background-attachment: scroll; }
}

/* ===== SOBRE ===== */
.sobre {
  background: var(--white);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.sobre-text p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.sobre-text .btn-primary { margin-top: 8px; }

.sobre-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
}
.stat-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.stat-num {
  display: block;
  font-family: var(--ff-head);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== MVV ===== */
.mvv {
  background:
    linear-gradient(160deg, rgba(13,13,13,0.95) 0%, rgba(30,22,5,0.96) 50%, rgba(13,13,13,0.97) 100%),
    url('images/galeria/g3-DSC_3565.jpg') center/cover no-repeat fixed;
}
@supports (-webkit-touch-callout: none) {
  .mvv { background-attachment: scroll; }
}
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mvv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: border-color var(--tr), background var(--tr), transform var(--tr);
}
.mvv-card:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
  transform: translateY(-6px);
}
.mvv-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0 auto 20px;
  transition: background var(--tr), border-color var(--tr);
}
.mvv-card:hover .mvv-icon {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
}
.mvv-card h3 {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}
.mvv-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

/* ===== MODALIDADES ===== */
.modalidades {
  background:
    linear-gradient(rgba(250,248,245,0.95), rgba(250,248,245,0.95)),
    url('images/galeria/g1-2.jpg') center/cover no-repeat fixed;
}
@supports (-webkit-touch-callout: none) {
  .modalidades { background-attachment: scroll; }
}
.modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.modal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
}
.modal-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(201,168,76,0.2);
  transform: translateY(-6px);
}
.modal-icon {
  width: 68px; height: 68px;
  border-radius: 16px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold-dark);
  margin: 0 auto 20px;
  transition: background var(--tr), color var(--tr), transform 0.4s ease;
}
.modal-card:hover .modal-icon {
  background: var(--gold);
  color: var(--dark);
  transform: rotate(-8deg) scale(1.1);
}
.modal-card h3 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 600;
}
.modal-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}
.modal-cta {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.modal-cta p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray);
}

/* ===== LOJA ===== */
.loja {
  background:
    linear-gradient(160deg, rgba(13,13,13,0.94) 0%, rgba(25,18,3,0.96) 50%, rgba(13,13,13,0.95) 100%),
    url('images/galeria/g2-75.jpg') center/cover no-repeat fixed;
}
@supports (-webkit-touch-callout: none) {
  .loja { background-attachment: scroll; }
}
.loja-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}
.loja-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color var(--tr), background var(--tr), transform var(--tr);
}
.loja-card:hover {
  border-color: rgba(201,168,76,0.6);
  background: rgba(201,168,76,0.05);
  transform: translateY(-4px);
}
.loja-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.loja-card h3 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 600;
}
.loja-card ul { display: flex; flex-direction: column; gap: 8px; }
.loja-card ul li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 8px;
}
.loja-card ul li i { color: var(--gold); font-size: 0.75rem; }

.loja-obs {
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  background: var(--off-white);
}
.depo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.depo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
}
.depo-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,168,76,0.15);
  transform: translateY(-4px);
}
.depo-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.depo-card blockquote p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}
.depo-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.depo-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  background: var(--gold-pale);
}
.depo-info strong {
  display: block;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}
.depo-info span {
  font-size: 0.8rem;
  color: var(--gray-light);
}

/* ===== GALERIA ===== */
.galeria { background: var(--off-white); padding: 80px 0; }
.galeria-drives {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 48px;
}
.btn-drive {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--gold);
  color: var(--black);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--tr);
}
.btn-drive:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-drive i { font-size: 1rem; }
.galeria-grid {
  columns: 4;
  column-gap: 10px;
}
.galeria-grid figure {
  break-inside: avoid;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.galeria-grid figure img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
  border-radius: 10px;
}
.galeria-grid figure:hover img { transform: scale(1.04); }
@media (max-width: 900px) { .galeria-grid { columns: 3; } }
@media (max-width: 600px) { .galeria-grid { columns: 2; column-gap: 8px; } .galeria-grid figure { margin-bottom: 8px; } }

/* ===== HORÁRIOS ===== */
.horarios {
  background:
    linear-gradient(150deg, rgba(13,13,13,0.9) 0%, rgba(40,28,5,0.92) 50%, rgba(13,13,13,0.9) 100%),
    url('images/galeria/g3-ET1_1173.jpg') center/cover no-repeat fixed;
  padding: 80px 0;
}
@supports (-webkit-touch-callout: none) {
  .horarios { background-attachment: scroll; }
}
.horarios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 680px;
  margin: 0 auto;
}
.horario-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: border-color var(--tr), background var(--tr);
}
.horario-card:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.07);
}
.horario-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.horario-card h3 {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 10px;
}
.horario-time {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  font-family: var(--ff-head);
  letter-spacing: 0.02em;
}
.horario-obs {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== CONTATO ===== */
.contato {
  background: var(--white);
}
.contato-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: start;
}
.contato-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contato-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contato-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.contato-item h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin-bottom: 4px;
}
.contato-item p, .contato-item a {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.6;
}
.contato-item a:hover { color: var(--gold-dark); text-decoration: underline; }

.contato-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  font-size: 1rem;
  padding: 16px 28px;
}
.contato-mapa {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 440px;
}
.contato-mapa iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 48px;
  padding: 64px 24px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 10px;
  color: rgba(255,255,255,0.5);
}
.footer-logo {
  height: 64px;
  width: auto;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  transition: border-color var(--tr), color var(--tr), background var(--tr);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.footer-links h4, .footer-contact h4 {
  font-family: var(--ff-head);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--tr);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-contact p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  display: flex;
  gap: 8px;
}
.footer-contact p i { color: var(--gold); flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
}
.whatsapp-float:hover {
  background: #1FAE54;
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== EFFECTS BLOCK ===== */

/* ── Novos keyframes ── */
@keyframes text-shimmer {
  0%   { background-position: 300% center; }
  100% { background-position: -100% center; }
}
@keyframes logo-entrance {
  0%   { opacity: 0; transform: scale(0.45) rotate(-18deg); filter: drop-shadow(0 0 0 transparent); }
  60%  { opacity: 1; transform: scale(1.1) rotate(4deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); filter: drop-shadow(0 4px 24px rgba(201,168,76,0.5)); }
}
@keyframes logo-glow {
  0%, 100% { filter: drop-shadow(0 4px 20px rgba(201,168,76,0.38)); }
  50%       { filter: drop-shadow(0 0 44px rgba(201,168,76,0.75)) drop-shadow(0 0 80px rgba(201,168,76,0.25)); }
}
@keyframes float-particle {
  0%   { opacity: 0;   transform: translateY(0) scale(0) rotate(0deg); }
  10%  { opacity: 0.6; transform: translateY(-8vh) scale(1) rotate(90deg); }
  90%  { opacity: 0.1; }
  100% { opacity: 0;   transform: translateY(-95vh) scale(0.3) rotate(360deg); }
}
@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
@keyframes btn-shine {
  0%   { left: -100%; }
  100% { left: 160%; }
}
@keyframes star-pop {
  0%   { transform: scale(1) rotate(0deg); }
  50%  { transform: scale(1.5) rotate(20deg); }
  100% { transform: scale(1) rotate(0deg); }
}
@keyframes time-glow {
  0%, 100% { text-shadow: none; }
  50%       { text-shadow: 0 0 22px rgba(201,168,76,0.65); }
}
@keyframes card-border-flow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes section-tag-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.2); }
  50%       { box-shadow: 0 0 12px 4px rgba(201,168,76,0.15); }
}


/* ── Hero particles ── */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.hero-particle {
  position: absolute;
  bottom: -12px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: float-particle linear infinite;
}

/* ── Typing cursor ── */
.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 0.85em;
  background: var(--gold-light);
  margin-left: 1px;
  vertical-align: middle;
  animation: blink-cursor 0.85s step-end infinite;
}

/* ── Section divider ── */
.ph-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0;
  overflow: hidden;
}
.ph-divider::before,
.ph-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
}
.ph-divider-icon {
  color: var(--gold);
  font-size: 0.65rem;
  opacity: 0.7;
  display: flex;
  gap: 6px;
}

/* ── MVV card top line ── */
.mvv-card {
  position: relative;
  overflow: hidden;
}
.mvv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.55s ease;
  border-radius: 2px;
}
.mvv-card:hover::before { width: 80%; }

/* ── Modal card shimmer border ── */
.modal-card {
  transition: border-color var(--tr), box-shadow var(--tr), transform 0.2s ease;
  transform-style: preserve-3d;
}
.modal-card:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(201,168,76,0.22), 0 0 0 1px rgba(201,168,76,0.3);
}

/* ── Star pop on depo hover ── */
.depo-card:hover .depo-stars i { animation: star-pop 0.35s ease both; }
.depo-card:hover .depo-stars i:nth-child(1) { animation-delay: 0s; }
.depo-card:hover .depo-stars i:nth-child(2) { animation-delay: 0.06s; }
.depo-card:hover .depo-stars i:nth-child(3) { animation-delay: 0.12s; }
.depo-card:hover .depo-stars i:nth-child(4) { animation-delay: 0.18s; }
.depo-card:hover .depo-stars i:nth-child(5) { animation-delay: 0.24s; }

/* ── Horário time glow ── */
.horario-card:hover .horario-time { animation: time-glow 1.2s ease infinite; }

/* ── Section tag pulse ── */
.section-tag { animation: section-tag-glow 3s ease-in-out infinite; }

/* ── Logo link hover ── */
.logo-link:hover .logo-img {
  filter: drop-shadow(0 0 10px rgba(201,168,76,0.5));
  transition: filter 0.3s ease;
}

/* ── 3D tilt cards (via JS data-tilt) ── */
[data-tilt] { transform-style: preserve-3d; }

/* ===== RESPONSIVE ===== */

/* --- Grande (max 1280px) --- */
@media (max-width: 1280px) {
  .container        { max-width: 100%; }
  .modal-grid       { grid-template-columns: repeat(3, 1fr); }
  .contato-grid     { grid-template-columns: 380px 1fr; gap: 36px; }
}

/* --- Tablet largo (max 1024px) --- */
@media (max-width: 1024px) {
  .section          { padding: 80px 0; }

  .sobre-grid       { grid-template-columns: 1fr; gap: 48px; }
  .sobre-stats      { grid-template-columns: repeat(4, 1fr); max-width: 100%; }

  .mvv-grid         { grid-template-columns: repeat(3, 1fr); }

  .modal-grid       { grid-template-columns: repeat(2, 1fr); }

  .contato-grid     { grid-template-columns: 1fr; gap: 36px; }
  .contato-mapa     { min-height: 380px; }
  .contato-mapa iframe { min-height: 380px; }

  .footer-inner     { grid-template-columns: 1.4fr 1fr 1.2fr; gap: 36px; }
}

/* --- Tablet (max 900px) --- */
@media (max-width: 900px) {
  .sobre-stats      { grid-template-columns: repeat(2, 1fr); max-width: 480px; margin: 0 auto; }

  .mvv-grid         { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .mvv-card         { padding: 32px 24px; }

  .loja-grid        { grid-template-columns: repeat(2, 1fr); }

  .depo-grid        { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }

  .horarios-grid    { grid-template-columns: repeat(2, 1fr); max-width: 560px; margin: 0 auto; }

  .footer-inner     { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand     { grid-column: 1 / -1; }
}

/* --- Mobile (max 768px) --- */
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section          { padding: 64px 0; }
  .container        { padding: 0 20px; }

  /* Header */
  #nav              { display: none; }
  .menu-toggle      { display: flex; }
  .logo-img         { height: 44px; }

  /* Hero */
  .hero             { min-height: 100svh; padding: 80px 0 60px; }
  .hero-logo        { width: 96px; height: 96px; }
  .hero h1          { font-size: clamp(1.9rem, 7.5vw, 2.6rem); }
  .hero h2          { font-size: 0.95rem; line-height: 1.65; }
  .hero-sub         { font-size: 0.8rem; letter-spacing: 0.05em; }
  .hero-botoes      { flex-direction: column; align-items: center; gap: 12px; }
  .hero-botoes .btn-primary,
  .hero-botoes .btn-outline {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Sobre */
  .sobre-stats      { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .stat-card        { padding: 22px 16px; }
  .stat-num         { font-size: 1.85rem; }
  .sobre-text p     { font-size: 0.93rem; }

  /* Modalidades */
  .modal-grid       { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .modal-card       { padding: 28px 24px; }
  .modal-cta        { flex-direction: column; text-align: center; gap: 16px; }

  /* Loja */
  .loja-grid        { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .loja-card        { padding: 28px 24px; }

  /* Depoimentos */
  .depo-card        { padding: 28px 22px; }
  .depo-card blockquote p { font-size: 0.88rem; }

  /* Horários */
  .horarios-grid    { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }

  /* Contato */
  .contato-info     { gap: 18px; }
  .contato-mapa     { min-height: 320px; }
  .contato-mapa iframe { min-height: 320px; }

  /* Footer */
  .footer-inner     { grid-template-columns: 1fr; padding: 48px 20px 32px; gap: 28px; }
  .footer-brand     { grid-column: 1; }
  .footer-logo      { height: 52px; }

  /* Section */
  .section-header   { margin-bottom: 44px; }
  .section-header h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .section-sub      { font-size: 0.9rem; }

  /* iOS parallax fix */
  .hero-bg, .mvv, .modalidades, .loja, .horarios {
    background-attachment: scroll !important;
  }
}

/* --- Mobile pequeno (max 640px) --- */
@media (max-width: 640px) {
  .container        { padding: 0 16px; }
  .section          { padding: 56px 0; }

  .hero-content     { padding: 48px 16px; }
  .hero-logo        { width: 80px; height: 80px; }

  .btn-primary, .btn-outline { padding: 12px 22px; font-size: 0.85rem; }
  .btn-sm { padding: 9px 18px; }

  .sobre-stats      { gap: 12px; }
  .stat-card        { padding: 18px 12px; }
  .stat-num         { font-size: 1.65rem; }

  .modal-grid, .loja-grid { max-width: 100%; }
  .modal-card       { padding: 24px 20px; }
  .modal-icon       { width: 58px; height: 58px; font-size: 1.4rem; }

  .mvv-card         { padding: 28px 20px; }
  .mvv-icon         { width: 56px; height: 56px; font-size: 1.2rem; }

  .depo-card        { padding: 24px 18px; }
  .depo-avatar      { width: 48px; height: 48px; }

  .contato-item     { gap: 12px; }
  .contato-icon     { width: 38px; height: 38px; font-size: 0.9rem; }
  .contato-btn      { font-size: 0.9rem; padding: 14px 20px; }

  .footer-inner     { padding: 40px 16px 28px; gap: 24px; }
  .footer-bottom p  { font-size: 0.75rem; }

  .section-header   { margin-bottom: 36px; }

  .ph-divider       { margin: 0 16px; }

  .horario-card     { padding: 28px 20px; }
  .horario-time     { font-size: 1.3rem; }
}

/* --- Mobile muito pequeno (max 480px) --- */
@media (max-width: 480px) {
  :root             { --header-h: 58px; }
  .logo-text        { display: none; }
  .logo-img         { height: 38px; }

  .hero-logo        { width: 70px; height: 70px; margin-bottom: 16px; }
  .hero h1          { font-size: clamp(1.65rem, 8vw, 2rem); }
  .hero h2          { font-size: 0.88rem; }
  .hero-sub         { font-size: 0.75rem; }
  .hero-botoes .btn-primary,
  .hero-botoes .btn-outline { max-width: 100%; }

  .sobre-text p     { font-size: 0.88rem; }
  .sobre-stats      { grid-template-columns: 1fr 1fr; gap: 10px; }

  .section-header h2 { font-size: clamp(1.35rem, 6vw, 1.7rem); }
  .section-tag      { font-size: 0.68rem; padding: 4px 12px; }

  .modal-card h3    { font-size: 1rem; }
  .modal-card p     { font-size: 0.83rem; }

  .loja-card h3     { font-size: 1rem; }
  .loja-card ul li  { font-size: 0.83rem; }

  .depo-card blockquote p { font-size: 0.83rem; }
  .depo-info strong { font-size: 0.88rem; }

  .contato-item h3  { font-size: 0.72rem; }
  .contato-item p, .contato-item a { font-size: 0.85rem; }

  .footer-links h4, .footer-contact h4 { font-size: 0.88rem; }
  .footer-links a   { font-size: 0.83rem; }
  .footer-contact p { font-size: 0.83rem; }

  .whatsapp-float   { width: 50px; height: 50px; font-size: 1.4rem; bottom: 20px; right: 20px; }
}

/* --- iPhone SE / telas muito pequenas (max 375px) --- */
@media (max-width: 375px) {
  .container        { padding: 0 14px; }
  .section          { padding: 48px 0; }

  .hero h1          { font-size: 1.55rem; }
  .hero h2          { font-size: 0.82rem; }
  .hero-logo        { width: 62px; height: 62px; }

  .stat-num         { font-size: 1.5rem; }
  .stat-label       { font-size: 0.7rem; }
  .stat-card        { padding: 16px 10px; }

  .section-header h2 { font-size: 1.3rem; }

  .mvv-card h3      { font-size: 1.1rem; }
  .mvv-card p       { font-size: 0.82rem; }

  .horario-time     { font-size: 1.15rem; }
  .horario-card h3  { font-size: 0.95rem; }

  .depo-card        { padding: 20px 14px; }

  .footer-inner     { padding: 36px 14px 24px; }

  .btn-primary, .btn-outline { padding: 11px 18px; font-size: 0.82rem; }
}

/* --- Preferência por movimento reduzido --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg          { background-attachment: scroll !important; }
}

/* --- Telas grandes (min 1440px) --- */
@media (min-width: 1440px) {
  .container        { max-width: 1280px; }
  .section          { padding: 120px 0; }
  .hero h1          { font-size: 4.5rem; }
  .hero h2          { font-size: 1.5rem; }
  .modal-card       { padding: 44px 32px; }
  .mvv-card         { padding: 48px 36px; }
}
