/* Acte Mídia — Bento Grid · paleta do logo (amarelo + preto) */

:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #1c1c1c;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f5f5f5;
  --muted: #a3a3a3;
  --brand: #ffd700;
  --brand-hover: #e6c200;
  --brand-muted: rgba(255, 215, 0, 0.12);
  --brand-border: rgba(255, 215, 0, 0.35);
  --brand-glow: rgba(255, 215, 0, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 45% at 50% -5%, rgba(255, 215, 0, 0.06), transparent 55%),
    radial-gradient(ellipse 40% 30% at 100% 50%, rgba(255, 215, 0, 0.03), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

.font-display {
  font-family: "Space Grotesk", sans-serif;
}

/* Header */
.header-glass {
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.site-logo {
  height: 2.75rem;
  width: auto;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-logo:hover {
  transform: scale(1.03);
  opacity: 0.92;
}

.site-logo-footer {
  height: 3.5rem;
  width: auto;
  display: block;
  margin-bottom: 0.75rem;
}

@media (min-width: 1024px) {
  .site-logo {
    height: 3.25rem;
  }
}

.nav-link {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--brand);
}

/* Bento cards */
.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.bento-card-featured {
  background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
}

.bento-stat {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 1rem;
}

.bento-stat-value {
  font-family: "Space Grotesk", sans-serif;
  font-variant-numeric: tabular-nums;
  color: #fff;
}

/* Stats grid — 4 colunas iguais */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

/* Locations grid — 5 cards: 1 col mobile, 2 col tablet, 3+2 desktop */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .locations-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
  }

  .location-card {
    grid-column: span 2;
  }

  .location-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .location-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

.location-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.location-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.5rem 1.5rem;
}

@media (min-width: 1024px) {
  .location-card-body {
    padding: 1.5rem;
  }
}

.location-card-actions {
  margin-top: auto;
  padding-top: 1rem;
}

.location-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  flex-shrink: 0;
}

.location-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bento-card:hover .location-img-wrap img {
  transform: scale(1.04);
}

.location-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.75) 0%, transparent 50%);
  pointer-events: none;
}

.location-badge {
  background: var(--brand-muted);
  border: 1px solid var(--brand-border);
  color: var(--brand);
}

.icon-box {
  background: var(--brand-muted);
  border: 1px solid var(--brand-border);
  color: var(--brand);
}

.check-box {
  background: var(--brand-muted);
  border: 1px solid var(--brand-border);
  color: var(--brand);
}

.stat-highlight {
  color: var(--brand);
}

.text-brand {
  color: var(--brand);
}

/* Buttons — amarelo do logo */
.btn-primary {
  background: var(--brand);
  color: #0a0a0a;
  font-weight: 600;
  border-radius: 9999px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px var(--brand-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--brand-hover);
  box-shadow: 0 8px 28px var(--brand-glow);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 9999px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-outline:hover {
  background: var(--brand-muted);
  border-color: var(--brand-border);
  color: var(--brand);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3.75rem;
  height: 3.75rem;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: pulse-wa 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 8px 36px rgba(37, 211, 102, 0.65); }
}

/* Mobile menu */
.mobile-menu {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
}

.mobile-menu.open {
  transform: translateX(0);
}

/* FAQ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
  overflow: hidden;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 12rem;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* Swiper */
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.35) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: var(--brand) !important;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
}

.brand-avatar {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.footer-link {
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--text);
}

.grid-pattern {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
}

.estimate-note {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.text-link {
  color: var(--brand);
  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--brand-hover);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1.5rem;
  }
}
