/* ===========================
   TOKENS
   =========================== */
:root {
  --blue-950: #071d3d;
  --blue-900: #0d2f5d;
  --blue-700: #1e4a7a;
  --blue-100: #e8f0fa;
  --gold-500: #e7c55a;
  --gold-400: #f0d47a;
  --green-500: #2e7d5a;
  --green-100: #d4eddf;
  --ink: #111111;
  --ink-muted: #4a5568;
  --white: #ffffff;
  --gray-50: #f8f7f4;
  --gray-100: #f0ede8;
  --border: rgba(13, 47, 93, 0.12);
}

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

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

p { margin: 0 0 12px; }
p:last-child { margin-bottom: 0; }

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.mt-16 { margin-top: 16px; }

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4 {
  font-family: Montserrat, sans-serif;
  margin: 0 0 14px;
  line-height: 1.15;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.15rem; }

.kicker {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-500);
  font-weight: 700;
  font-size: 0.75rem;
  margin-bottom: 8px;
}

.kicker-dark {
  color: var(--blue-700);
}

.lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 54ch;
  margin: 0 0 8px;
}

.section-intro {
  color: var(--ink-muted);
  margin-bottom: 32px;
  max-width: 60ch;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: opacity 0.15s, transform 0.1s;
  cursor: pointer;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: none; }

.btn-sm { padding: 8px 14px; font-size: 0.88rem; }

.btn-primary {
  background: var(--gold-500);
  color: var(--ink);
  border-color: var(--gold-500);
}

.btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
  background: transparent;
}

.btn-outline-dark {
  border-color: var(--blue-900);
  color: var(--blue-900);
  background: transparent;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 10px;
  border-width: 2px;
  border-style: solid;
  display: inline-flex;
  text-decoration: none;
  transition: opacity 0.15s;
}
.btn-outline-dark:hover { opacity: 0.75; }

.hide-mobile { display: inline-flex; }

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.section-action {
  margin-top: 36px;
  text-align: center;
}

/* ===========================
   HEADER / NAV
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue-900);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  height: 68px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1) drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.brand-text {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  font-family: Montserrat, sans-serif;
}

.nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 8px 6px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  outline: none;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s;
}
.hamburger::before { margin-top: 5px; }
.hamburger::after  { margin-top: 5px; }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  background-color: var(--blue-900);
  color: var(--white);
  padding: 96px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,29,61,0.72) 0%,
    rgba(13,47,93,0.52) 50%,
    rgba(7,29,61,0.65) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-main {
  width: 100%;
  max-width: 460px;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(231,197,90,0.35)) drop-shadow(0 12px 32px rgba(7,29,61,0.6));
  animation: logo-glow 3s ease-in-out infinite alternate;
}

@keyframes logo-glow {
  from { filter: drop-shadow(0 0 28px rgba(231,197,90,0.25)) drop-shadow(0 12px 32px rgba(7,29,61,0.6)); }
  to   { filter: drop-shadow(0 0 52px rgba(231,197,90,0.55)) drop-shadow(0 12px 32px rgba(7,29,61,0.6)); }
}

/* ===========================
   STATS BAR
   =========================== */
.stats-bar {
  background: var(--blue-950);
  padding: 36px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

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

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat:last-child { border-right: none; }

.stat-icon {
  font-size: 1.2rem;
  color: var(--gold-500);
  opacity: 0.7;
  margin-bottom: 6px;
}

.stat-number {
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--gold-500);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===========================
   SECTIONS GENERIC
   =========================== */
.section {
  padding: 80px 0;
}

.light { background: var(--gray-50); }

/* ===========================
   CARDS
   =========================== */
.cards {
  display: grid;
  gap: 20px;
}

.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: stretch;
}

/* Centraliza última linha incompleta */
.three.service-grid {
  grid-template-columns: repeat(3, minmax(0, 320px));
  justify-content: center;
}

/* horse-card inside .three doesn't need card base styles */
.three .horse-card {
  border: none;
  padding: 0;
  background: var(--blue-900);
}

.card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  background: var(--white);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(13,47,93,0.1);
  transform: translateY(-2px);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--blue-700);
  font-size: 1.3rem;
}

.card h3 {
  color: var(--blue-900);
  margin-bottom: 8px;
}

.card p {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* ===========================
   PANEL / SPLIT
   =========================== */
.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: start;
}

.panel {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  background: var(--white);
}

.panel h3 {
  color: var(--blue-900);
  margin-bottom: 16px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink);
}

.check-list li i {
  color: var(--gold-500);
  font-size: 0.9rem;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
  margin-top: 2px;
}

/* ===========================
   STEPS
   =========================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: steps;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue-100) 0, var(--blue-100) 8px, transparent 8px, transparent 16px);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 0 8px;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--blue-900);
  color: var(--gold-500);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(13,47,93,0.18);
}

.step h3 {
  color: var(--blue-900);
  font-size: 1rem;
  margin-bottom: 4px;
}

.step p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin: 0;
}

/* ===========================
   PLANTEL / HORSE CARDS
   =========================== */
.horse-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--blue-900);
  box-shadow: 0 8px 32px rgba(7,29,61,0.18);
  transition: transform 0.3s, box-shadow 0.3s;
}
.horse-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(7,29,61,0.28);
}

.horse-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% center;
  display: block;
  transition: transform 0.5s ease;
}
.horse-card:hover .horse-card-img { transform: scale(1.06); }

.horse-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 22px 22px;
  background: linear-gradient(to top, rgba(7,29,61,0.97) 0%, rgba(7,29,61,0.6) 70%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.horse-card-overlay h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin: 0;
}

.horse-card-overlay .horse-lineage {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  margin: 0;
}

.horse-card-overlay .badge {
  width: fit-content;
}

.horse-card-overlay .horse-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  color: var(--gold-500);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: gap 0.15s, opacity 0.15s;
}
.horse-card-overlay .horse-cta:hover { gap: 10px; opacity: 0.85; }

.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  opacity: 0.6;
}

.photo-placeholder i {
  font-size: 2.8rem;
  color: var(--blue-700);
  opacity: 0.4;
}

.photo-placeholder p {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.horse-info {
  padding: 20px 22px 22px;
}

.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-700);
  margin-bottom: 10px;
}

.badge-green {
  background: var(--green-100);
  color: var(--green-500);
}

.horse-info h3 {
  margin-bottom: 6px;
  color: var(--blue-900);
}

.horse-lineage {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 14px;
}

.horse-cta {
  color: var(--blue-700);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.15s;
}
.horse-cta:hover { color: var(--gold-500); }

/* ===========================
   DEPOIMENTOS
   =========================== */
.depo-section {
  background: var(--blue-900);
  color: var(--white);
}

.depo-section .kicker {
  color: var(--gold-400);
}

.depo-section h2 {
  color: var(--white);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.testimonial {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stars {
  color: var(--gold-500);
  font-size: 1rem;
  letter-spacing: 2px;
}

blockquote {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  flex: 1;
}

blockquote::before {
  content: '"';
  font-size: 2.5rem;
  color: var(--gold-500);
  opacity: 0.5;
  font-family: Georgia, serif;
  line-height: 0;
  vertical-align: -0.5rem;
  margin-right: 4px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--ink);
  font-weight: 800;
  font-family: Montserrat, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ===========================
   FAQ
   =========================== */
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.faq-header h2 {
  color: var(--blue-900);
}

.faq-header p {
  color: var(--ink-muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--blue-900);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--blue-700);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}

details[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px 18px;
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* ===========================
   INSTAGRAM GRID
   =========================== */
.insta-section {
  background: var(--white);
}

.insta-section .kicker { color: var(--blue-700); }
.insta-section h2 { color: var(--blue-900); }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.insta-tile {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  position: relative;
}

.insta-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.35s ease, opacity 0.2s;
}
.insta-tile:hover img { transform: scale(1.07); opacity: 0.85; }

.insta-placeholder {
  width: 100%;
  height: 100%;
  transition: opacity 0.2s;
  background: var(--blue-100);
}
.insta-2 { background: #dce8f5; }
.insta-3 { background: #e8f0fa; }
.insta-4 { background: #c8d9ee; }
.insta-5 { background: #d0e2f5; }
.insta-6 { background: #b8cfe8; }

/* ===========================
   CTA
   =========================== */
.cta {
  background: var(--blue-900);
  color: var(--white);
}

.cta h2 { color: var(--white); }
.cta p  { color: rgba(255,255,255,0.75); }

.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--blue-950);
  color: var(--white);
  padding: 52px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 24px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  border: 1.5px solid rgba(231,197,90,0.3);
  flex-shrink: 0;
}

.footer-brand h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.site-footer h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}

.contact-link {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}
.contact-link:hover { color: var(--gold-500); }

.site-footer p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--white); }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom {
  padding: 16px 0;
  text-align: center;
}

.footer-icon {
  color: var(--gold-500);
  margin-right: 8px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  margin: 0;
}

/* ===========================
   RESPONSIVE
   =========================== */
/* ===========================
   WHATSAPP FLOAT
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}
.whatsapp-tooltip {
  position: absolute;
  right: 66px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ===========================
   TIMELINE
   =========================== */
.timeline-section {
  background: var(--blue-900);
  color: var(--white);
}
.timeline-section .kicker { color: var(--gold-400); }
.timeline-section h2 { color: var(--white); }

.timeline {
  position: relative;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-500), rgba(231,197,90,0.1));
}

.tl-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 36px;
  position: relative;
}
.tl-item:last-child { padding-bottom: 0; }

.tl-dot {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--blue-700);
  border: 2px solid var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  font-size: 1.1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.tl-content { padding-top: 10px; }

.tl-year {
  display: inline-block;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-500);
  margin-bottom: 6px;
}

.tl-content h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.tl-content p {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  max-width: 56ch;
}

/* ===========================
   SERVIÇOS
   =========================== */
.service-card {
  display: flex;
  flex-direction: column;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-700);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  margin-top: auto;
  padding-top: 14px;
  transition: color 0.15s, gap 0.15s;
}
.service-link:hover { color: var(--gold-500); gap: 10px; }

.cobertura-tipos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 4px;
}

.cobertura-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--blue-100);
  color: var(--blue-700);
  border: 1px solid rgba(30,74,122,0.15);
}

.cobertura-tag i {
  font-size: 0.72rem;
  color: var(--blue-700);
}

.panel-title-icon {
  color: var(--gold-500);
  margin-right: 8px;
  font-size: 0.9rem;
}

/* ===========================
   LEILÕES
   =========================== */
.leiloes-section {
  background: var(--blue-950);
  color: var(--white);
}
.leiloes-section .kicker { color: var(--gold-400); }
.leiloes-section h2 { color: var(--white); }

/* LIVE BANNER */
.live-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(231,197,90,0.12), rgba(231,197,90,0.04));
  border: 1px solid rgba(231,197,90,0.4);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 32px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e53935;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  animation: pulse-badge 1.5s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.live-info { flex: 1; min-width: 180px; }
.live-info h3 { color: var(--white); margin-bottom: 4px; font-size: 1.2rem; }
.live-info p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin: 0; }

.live-date {
  width: 100%;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.live-date i { color: var(--gold-400); }

.leiloes-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  margin-top: 36px;
  align-items: start;
}

.leilao-card {
  border: 1px solid rgba(231,197,90,0.25);
  border-radius: 20px;
  padding: 32px;
  background: rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.leilao-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(231,197,90,0.15);
  color: var(--gold-400);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 999px;
  width: fit-content;
}

.leilao-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin: 0;
}

.leilao-desc {
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 12px 16px;
  min-width: 64px;
}

.cd-num {
  font-family: Montserrat, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-500);
  line-height: 1;
}

.cd-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

.cd-sep {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-500);
  opacity: 0.4;
  margin-bottom: 14px;
}

.leilao-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.leilao-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.leilao-meta i { color: var(--gold-500); }

.leilao-info {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
  background: rgba(255,255,255,0.03);
}

.leilao-info h3 {
  color: var(--white);
  margin-bottom: 20px;
}

.check-list-light li { color: rgba(255,255,255,0.8); }
.check-list-light li i { color: var(--gold-500); font-size: 0.85rem; }

/* ===========================
   GALERIA
   =========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-tile {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s;
}
.gallery-tile:hover { transform: scale(1.02); }
.gallery-tile:hover .gallery-placeholder { opacity: 0.8; }

.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-tile:hover img { transform: scale(1.05); }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-700);
  font-size: 2rem;
  opacity: 0.4;
  transition: opacity 0.2s;
}

/* ===========================
   MAPA
   =========================== */
.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--blue-100);
  min-height: 320px;
}

/* ===========================
   ABCCMM BADGE
   =========================== */
.abccmm-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(231,197,90,0.3);
  color: var(--gold-500);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===========================
   HERO VIDEO
   =========================== */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
}

/* ===========================
   ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

.nav-active {
  color: var(--white) !important;
  background: rgba(255,255,255,0.1) !important;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .insta-tile:nth-child(n+4) { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-social { flex-direction: row; grid-column: 1 / -1; }
  .leiloes-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .hide-mobile  { display: none; }
  .three.service-grid {
    grid-template-columns: 1fr !important;
    justify-content: stretch !important;
  }
  .countdown { flex-wrap: wrap; justify-content: center; }
  .cd-unit { min-width: 56px; padding: 8px 10px; }
  .cd-num { font-size: 1.4rem; }
  .live-banner { padding: 18px 16px; }
  .live-banner .countdown { justify-content: flex-start; }

  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 4vw;
    right: 4vw;
    background: var(--blue-900);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 14px;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 16px 32px rgba(7,29,61,0.4);
    z-index: 99;
  }
  .nav.is-open { display: flex; }

  .hero { padding: 60px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-logo-wrap { order: -1; }
  .hero-logo-main { max-width: 220px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-last-child(-n+2) { border-bottom: none; }

  .three, .split { grid-template-columns: 1fr; }

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

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

  .faq-wrap { grid-template-columns: 1fr; gap: 24px; }

  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .insta-tile:nth-child(n+4) { display: block; }

  .cta-wrap { flex-direction: column; align-items: flex-start; }

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

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-tile:nth-child(n+5) { display: none; }
}
