/* ============================================
   AUSTRI STUDIO — CSS
   Dark Automotive Theme + #FFD600
   ============================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --gold: #FFD600;
  --gold-dim: rgba(255, 214, 0, 0.15);
  --gold-glow: rgba(255, 214, 0, 0.35);
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #161616;
  --bg-4: #1c1c1c;
  --text: #f0f0f0;
  --text-dim: #888;
  --text-muted: #555;
  --border: rgba(255,255,255,0.07);
  --border-gold: rgba(255, 214, 0, 0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --nav-h: 72px;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---- CUSTOM CURSOR ---- */
.cursor {
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease;
  opacity: 0.6;
}
.cursor.active { width: 20px; height: 20px; }
.cursor-follower.active { width: 50px; height: 50px; opacity: 0.3; }

@media (hover: none) {
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
}

/* ---- NOISE OVERLAY ---- */
.noise-overlay {
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1000; opacity: 0.4;
}

/* ---- LOADER ---- */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 10vw, 6rem);
  color: var(--gold);
  letter-spacing: 0.2em;
  animation: loaderPulse 1s ease infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.loader-bar {
  width: 200px; height: 2px;
  background: var(--bg-4);
  margin: 20px auto 12px;
  border-radius: 2px;
  overflow: hidden;
}
.loader-fill {
  height: 100%; width: 0;
  background: var(--gold);
  border-radius: 2px;
  animation: loaderFill 2s ease forwards;
}
@keyframes loaderFill { to { width: 100%; } }
.loader-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ---- TYPOGRAPHY ---- */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--gold);
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--text);
}
.accent { color: var(--gold); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: var(--gold);
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--transition), box-shadow 0.3s var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.4s var(--transition);
}
.btn-primary:hover::before { transform: translateX(100%) skewX(-15deg); }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,214,0,0.4);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.3s var(--transition);
  cursor: pointer;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 32px;
  background: #25D366;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s var(--transition);
  cursor: pointer;
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 900;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 4px;
  text-decoration: none;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--gold);
  color: #000;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  transition: transform 0.3s ease;
}
.nav-logo:hover .logo-mark { transform: rotate(-5deg) scale(1.05); }
.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--text);
}
.logo-accent { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 8px;
}
.nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.3s ease, background 0.3s ease;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 1px; background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 20px;
  background: var(--gold);
  color: #000 !important;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.nav-cta:hover {
  background: #ffe033;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255,214,0,0.35);
}
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px;
  z-index: 901;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px);
  z-index: 850;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.4s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu ul {
  display: flex; flex-direction: column;
  align-items: center; gap: 24px;
  text-align: center;
}
.mobile-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  color: var(--text);
  transition: color 0.3s ease;
}
.mobile-link:hover { color: var(--gold); }
.btn-agendar-mobile {
  font-size: 1.5rem !important;
  color: var(--gold) !important;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}

/* ============ HERO CAROUSEL ============ */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 48vh;
  min-height: 420px;
  max-height: 600px;
  overflow: hidden;
  background: var(--bg);
  margin-top: var(--nav-h);
}
.heroSwiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.heroSwiper .swiper-wrapper {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.heroSwiper .swiper-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 24px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}
.heroSwiper .swiper-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.4) 100%);
  z-index: 2;
}
.hero-bg-gradient {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.banner-1 { background: linear-gradient(135deg, #111 0%, #1a1a0a 100%); }
.banner-2 { background: linear-gradient(135deg, #050a12 0%, #0a1525 100%); }
.banner-3 { background: linear-gradient(135deg, #100808 0%, #1a0c0c 100%); }
.hero-bg-gradient {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,214,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,214,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 {
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  background: radial-gradient(circle, rgba(255,214,0,0.12) 0%, transparent 70%);
  top: -10%; right: -15%;
}
.orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,214,0,0.06) 0%, transparent 70%);
  bottom: 5%; left: -5%;
  animation-delay: -4s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.hero-particles {
  position: absolute; inset: 0;
  overflow: hidden;
  z-index: 3;
}
.hero-content {
  position: relative; z-index: 10;
  max-width: 1280px; margin: 0 auto; width: 100%;
  padding: 60px 0;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.tag-dot {
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: tagPulse 2s ease infinite;
}
@keyframes tagPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  display: flex; flex-direction: row; flex-wrap: wrap; gap: 12px;
  line-height: 0.9;
  margin-bottom: 16px;
}
.title-line {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: 0.04em;
  color: var(--text);
  display: block;
  position: relative;
  -webkit-text-stroke: 1px rgba(255,255,255,0.1);
}
.title-studio {
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  text-shadow: none;
  animation: strokeAnimate 4s ease infinite;
}
@keyframes strokeAnimate {
  0%, 100% { -webkit-text-stroke-color: var(--gold); }
  50% { -webkit-text-stroke-color: rgba(255,214,0,0.5); }
}
.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: var(--text-dim);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.hero-actions {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-stats {
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap;
}
.stat {
  display: flex; flex-direction: column;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--gold);
  line-height: 1;
}
.stat span:not(.stat-num) {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gold);
}
.stat p {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--border);
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: horizontal-tb;
}

/* Swiper Controls */
.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  transition: all 0.3s ease;
  width: 44px; height: 44px;
  background: rgba(26,26,26,0.5);
  border: 1px solid var(--border);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  z-index: 12;
  cursor: pointer;
}
.swiper-button-prev {
  left: 18px;
}
.swiper-button-next {
  right: 18px;
}
.swiper-button-prev::after {
  content: '‹';
  font-size: 1.9rem;
  line-height: 1;
}
.swiper-button-next::after {
  content: '›';
  font-size: 1.9rem;
  line-height: 1;
}
.hero-nav-btn:hover {
  background: var(--gold-dim);
  border-color: var(--border-gold);
  transform: translateY(-50%) scale(1.1);
}
.hero-pagination {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.5;
  transition: all 0.3s ease;
  cursor: pointer;
}
.hero-dot.active {
  background: var(--gold);
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

/* ============ CAROUSEL ============ */
.carousel-section {
  padding: 100px 0 80px;
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
}
.carousel-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 50px;
}
.carousel-header .section-label {
  justify-content: center;
}
.carousel-header .section-label::before { display: none; }
.carousel-wrapper { position: relative; }
.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
.carousel-slide {
  min-width: calc(85vw - 40px);
  max-width: 480px;
  margin: 0 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-3);
  border: 1px solid var(--border);
  cursor: grab;
  flex-shrink: 0;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.carousel-slide:active { cursor: grabbing; }
.carousel-slide:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
}
.slide-img {
  height: 260px;
  position: relative;
  overflow: hidden;
}
.slide-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.slide-img::before,
.slide-img::after,
.slide-shine {
  z-index: 1;
}
.slide-img-1 { background: linear-gradient(135deg, #1a1a0a 0%, #2a2a10 30%, #1f1a05 60%, #0f0f05 100%); }
.slide-img-2 { background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #111111 60%, #050505 100%); }
.slide-img-3 { background: linear-gradient(135deg, #050a12 0%, #0a1525 30%, #081020 60%, #040810 100%); }
.slide-img-4 { background: linear-gradient(135deg, #100808 0%, #1a0c0c 30%, #120808 60%, #090505 100%); }
.slide-img-5 { background: linear-gradient(135deg, #0a0a05 0%, #181808 30%, #121208 60%, #080808 100%); }

/* Abstract car shapes in slides */
.slide-img::before {
  content: '';
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  width: 75%; height: 45%;
  background: rgba(255,214,0,0.06);
  border-radius: 60% 60% 30% 30% / 80% 80% 40% 40%;
  filter: blur(2px);
}
.slide-img::after {
  content: '';
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  width: 85%; height: 18px;
  background: radial-gradient(ellipse, rgba(255,214,0,0.2), transparent 70%);
  border-radius: 50%;
  filter: blur(4px);
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg-3) 0%, transparent 60%);
  z-index: 1;
}
.slide-shine {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.04) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: 2;
}
.carousel-slide:hover .slide-shine { transform: translateX(100%); }
.slide-info {
  padding: 20px 24px 24px;
  position: relative; z-index: 2;
}
.slide-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block; margin-bottom: 8px;
}
.slide-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 6px;
}
.slide-info p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.carousel-controls {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-top: 36px;
  padding: 0 24px;
}
.carousel-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}
.carousel-dots {
  display: flex; gap: 8px;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active {
  width: 24px; border-radius: 3px;
  background: var(--gold);
}

.gallery-section {
  background: var(--bg-2);
}
.gallery-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 210px));
  justify-content: center;
  gap: 16px;
}
.gallery-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all 0.4s var(--transition);
  opacity: 1 !important;
  visibility: visible !important;
}
.gallery-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.gallery-card-img {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  background: var(--bg-4);
}
.gallery-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-card:hover .gallery-card-img img {
  transform: scale(1.06);
}
.gallery-card-body {
  padding: 14px 15px 16px;
}
.gallery-card-body span {
  color: var(--gold);
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.gallery-card-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 8px;
}
.gallery-card-body p {
  color: var(--text-dim);
  font-size: 0.78rem;
  line-height: 1.45;
}

/* ============ SOBRE ============ */
.sobre {
  padding: 110px 24px;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.sobre::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}
.sobre-container {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.sobre-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.sobre-card-3d {
  width: 300px; height: 300px;
  position: relative;
  transform-style: preserve-3d;
  perspective: 800px;
  transition: transform 0.6s ease;
}
.card3d-inner {
  width: 100%; height: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
  position: relative; overflow: hidden;
  box-shadow: 0 0 60px rgba(255,214,0,0.08);
  transition: box-shadow 0.3s ease;
}
.card3d-inner:hover { box-shadow: 0 0 100px rgba(255,214,0,0.15); }
.card3d-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(255,214,0,0.08) 0%, transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(255,214,0,0.05) 0%, transparent 60%);
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.card3d-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  position: relative; z-index: 1;
}
.sobre-badges {
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;
  pointer-events: none;
}
.badge {
  position: absolute;
  padding: 8px 14px;
  background: var(--bg-2);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  animation: badgeFloat 3s ease-in-out infinite;
}
.badge-1 { top: -12px; right: -24px; animation-delay: 0s; }
.badge-2 { bottom: 40px; left: -24px; animation-delay: -1s; }
.badge-3 { bottom: -12px; right: 10px; animation-delay: -2s; }
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.sobre-accent-line {
  position: absolute;
  width: 2px; height: 200px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  bottom: -60px; right: 40px;
  opacity: 0.4;
}
.sobre-content {}
.sobre-text {
  color: var(--text-dim);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 0.95rem;
}
.sobre-features {
  margin: 32px 0;
  display: flex; flex-direction: column; gap: 20px;
}
.feature {
  display: flex; align-items: flex-start; gap: 16px;
}
.feature-icon {
  font-size: 1.2rem; color: var(--gold);
  flex-shrink: 0; margin-top: 2px;
}
.feature h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 2px;
}
.feature p { font-size: 0.85rem; color: var(--text-dim); }

/* ============ SERVIÇOS ============ */
.servicos {
  padding: 110px 24px;
  background: var(--bg-2);
  position: relative; overflow: hidden;
}
.servicos-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.servicos-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,214,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,214,0,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}
.servicos-container { max-width: 1280px; margin: 0 auto; }
.servicos-header {
  text-align: center; margin-bottom: 60px;
  opacity: 1 !important;
  visibility: visible !important;
}
.servicos-header .section-label { justify-content: center; }
.servicos-header .section-label::before { display: none; }
.servicos-sub {
  color: var(--text-dim);
  font-size: 1rem;
  margin-top: 14px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: linear-gradient(145deg, #202020 0%, #141414 100%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative; overflow: hidden;
  transition: all 0.4s var(--transition);
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
  opacity: 1 !important;
  visibility: visible !important;
}
.service-card-link {
  color: inherit;
  display: block;
  min-height: 100%;
  text-decoration: none;
}
.service-card-link:hover {
  color: inherit;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.service-card:hover::before { opacity: 1; }
.card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,214,0,0.06) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-card:hover .card-glow { opacity: 1; }
.card-glow--gold { background: radial-gradient(circle at 50% 50%, rgba(255,214,0,0.12) 0%, transparent 70%); }
.card-icon-wrap { margin-bottom: 24px; }
.card-icon {
  width: 60px; height: 60px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.service-card:hover .card-icon {
  background: rgba(255,214,0,0.2);
  box-shadow: 0 0 20px rgba(255,214,0,0.2);
}
.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.85rem;
  color: #c9c9c9;
  line-height: 1.7;
}
.card-tag {
  position: absolute; top: 20px; right: 20px;
  padding: 4px 10px;
  background: var(--gold);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
}
.card-arrow {
  position: absolute; bottom: 24px; right: 24px;
  font-size: 1.2rem; color: var(--text-muted);
  transition: all 0.3s ease;
}
.service-card:hover .card-arrow {
  color: var(--gold);
  transform: translate(4px, -4px);
}
.service-card--cta {
  background: linear-gradient(135deg, rgba(255,214,0,0.08) 0%, rgba(255,214,0,0.03) 100%);
  border-color: var(--border-gold);
  display: flex; flex-direction: column; gap: 12px;
  justify-content: center;
}
.cta-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: -4px;
}
.service-card--cta h3 {
  font-size: 1.6rem;
  color: var(--text);
}
.service-card--cta p {
  margin-bottom: 8px;
}

/* ============ TIMELINE ============ */
.timeline-section {
  padding: 110px 24px;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.timeline-container { max-width: 900px; margin: 0 auto; }
.timeline-header {
  text-align: center;
  margin-bottom: 70px;
}
.timeline-header .section-label { justify-content: center; }
.timeline-header .section-label::before { display: none; }
.timeline { position: relative; padding: 0 0 0 0; }
.timeline-line {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}
.timeline-progress {
  width: 100%; height: 0;
  background: var(--gold);
  transition: height 0.1s linear;
  border-radius: 2px;
}
.timeline-items {
  display: flex; flex-direction: column; gap: 0;
}
.timeline-item {
  display: flex; align-items: flex-start;
  position: relative; padding: 0 0 50px;
}
.tl-dot {
  position: absolute; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 16px;
  background: var(--bg);
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  z-index: 2;
  top: 4px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s ease;
}
.tl-dot span {
  width: 6px; height: 6px;
  background: transparent;
  border-radius: 50%;
  transition: all 0.4s ease;
}
.tl-dot.active, .timeline-item.in-view .tl-dot {
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(255,214,0,0.4);
}
.tl-dot.active span, .timeline-item.in-view .tl-dot span {
  background: var(--gold);
}
.tl-dot--active {
  border-color: var(--gold) !important;
  box-shadow: 0 0 20px rgba(255,214,0,0.5) !important;
}
.tl-dot--active span { background: var(--gold) !important; }
.tl-content {
  width: calc(50% - 30px);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.4s ease;
  opacity: 0; transform: translateY(20px);
}
.tl-content.visible { opacity: 1; transform: translateY(0); }
.tl-right { margin-left: auto; margin-right: calc(50% + 30px); }
.tl-left { margin-left: calc(50% + 30px); }
.tl-content:hover {
  border-color: var(--border-gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.tl-date {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.tl-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 10px;
}
.tl-content p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ============ AGENDAR ============ */
.agendar-section {
  padding: 110px 24px;
  background: var(--bg-2);
  position: relative; overflow: hidden;
}
.agendar-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.agendar-orb {
  position: absolute; top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,214,0,0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}
.agendar-container {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
  position: relative; z-index: 2;
}
.agendar-content .section-title { margin-bottom: 20px; }
.agendar-sub {
  color: var(--text-dim);
  margin-bottom: 36px;
  line-height: 1.8;
  font-size: 0.95rem;
}
.agendar-cards {
  display: flex; flex-direction: column; gap: 16px;
}
.agendar-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex; align-items: center; gap: 16px;
  transition: all 0.3s ease;
}
.agendar-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-4);
}
.ac-icon { font-size: 1.8rem; flex-shrink: 0; }
.agendar-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 2px;
}
.agendar-card p { font-size: 0.82rem; color: var(--text-dim); }

/* ============ CONTATO ============ */
.contato {
  padding: 110px 24px;
  background: var(--bg);
  position: relative;
}
.contato::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}
.contato-container {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.contato-items {
  display: flex; flex-direction: column; gap: 28px;
  margin-top: 36px;
}
.contato-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.ci-icon {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contato-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contato-item p, .contato-item a {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
  transition: color 0.3s ease;
}
.contato-item a:hover { color: var(--gold); }
.contato-map {
  display: flex; flex-direction: column; gap: 20px;
}
.map-container {
  width: 100%; height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: grayscale(1) contrast(1.08) brightness(0.78);
}
.map-placeholder {
  width: 100%; height: 100%;
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,214,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,214,0,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-pin {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.pin-dot {
  width: 16px; height: 16px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255,214,0,0.6);
  z-index: 2; position: relative;
}
.pin-pulse {
  position: absolute;
  width: 40px; height: 40px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pinPulse 2s ease-out infinite;
}
@keyframes pinPulse {
  0% { width: 16px; height: 16px; opacity: 1; }
  100% { width: 60px; height: 60px; opacity: 0; }
}
.pin-label {
  background: var(--bg-2);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  white-space: nowrap;
}
.map-label-bottom {
  position: absolute; bottom: 16px;
  left: 50%; transform: translateX(-50%);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.map-cta { width: fit-content; }

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}
.footer-top {
  max-width: 1280px; margin: 0 auto;
  padding: 60px 24px;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-dim);
  max-width: 280px;
  line-height: 1.7;
  margin: 16px 0 24px;
}
.footer-logo { margin-bottom: 4px; display: inline-flex; }
.footer-social {
  display: flex; gap: 12px;
}
.social-link {
  width: 40px; height: 40px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: all 0.3s ease;
}
.social-link:hover {
  border-color: var(--border-gold);
  color: var(--gold);
  background: var(--gold-dim);
}
.footer-links-group h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-group a {
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: color 0.3s ease;
  position: relative;
}
.footer-links-group a::before {
  content: '→';
  color: var(--gold);
  margin-right: 6px;
  opacity: 0;
  transition: opacity 0.3s ease, margin 0.3s ease;
}
.footer-links-group a:hover { color: var(--text); }
.footer-links-group a:hover::before { opacity: 1; margin-right: 8px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-dev {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.footer-dev:hover { color: var(--gold); border-color: var(--gold); }

/* ============ FLOATING WA ============ */
.floating-wa {
  position: fixed; bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  z-index: 800;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-wa:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
.floating-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: fwaPulse 2.5s ease-out infinite;
}
@keyframes fwaPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ============ SCROLL ANIMATIONS ============ */
.gsap-fade-up {
  opacity: 0; transform: translateY(40px);
}
.gsap-fade-left {
  opacity: 0; transform: translateX(-40px);
}
.gsap-fade-right {
  opacity: 0; transform: translateX(40px);
}

/* ============ RESPONSIVE — TABLET ============ */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 210px)); }
  .sobre-container { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .sobre-visual { justify-content: center; }
  .sobre-features { text-align: left; }
  .sobre-content .btn-primary { display: inline-flex; }
  .agendar-container { grid-template-columns: 1fr; gap: 50px; }
  .contato-container { grid-template-columns: 1fr; gap: 50px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .tl-right { margin-right: 0; margin-left: 0; width: calc(50% - 30px); }
  .tl-left { margin-left: calc(50% + 30px); width: calc(50% - 30px); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }

  .hero-carousel {
    height: clamp(240px, 56vw, 420px);
    min-height: 0;
    max-height: none;
    background: #000;
  }
  .heroSwiper .swiper-slide {
    padding: 0;
    align-items: stretch;
  }
  .hero-content,
  .hero-tag,
  .hero-title,
  .hero-sub,
  .hero-actions {
    display: none !important;
  }
  .hero-bg-overlay,
  .hero-grid,
  .hero-orb,
  .hero-particles,
  .hero-scroll {
    display: none !important;
  }
  .hero-bg-gradient {
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }
  .title-line { font-size: clamp(2.8rem, 12vw, 4rem); }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .hero-nav-btn { display: none; }
  .hero-pagination { bottom: 12px !important; }

  .carousel-slide { min-width: 80vw; max-width: 320px; }
  .slide-img { height: 200px; }

  .cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-card-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
  .service-card { padding: 24px; }

  .timeline-line { left: 24px; }
  .tl-dot { left: 24px; }
  .tl-content {
    width: calc(100% - 56px);
    margin-left: 56px !important;
    margin-right: 0 !important;
  }
  .tl-right { margin-left: 56px; margin-right: 0; }
  .tl-left { margin-left: 56px; }

  .sobre-card-3d { width: 240px; height: 240px; }
  .card3d-label {
    display: none;
  }
  .sobre-badges {
    inset: auto 0 0;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transform: translateY(50%);
  }
  .badge {
    position: static;
    max-width: calc(100vw - 64px);
    padding: 7px 12px;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    animation: none;
  }
  .badge-1,
  .badge-2,
  .badge-3 {
    inset: auto;
  }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  .agendar-container { grid-template-columns: 1fr; }
  .contato-container { grid-template-columns: 1fr; }
  .map-container { height: 260px; }
  .floating-wa { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .section-title { font-size: clamp(2rem, 8vw, 2.8rem); }
}

@media (max-width: 480px) {
  .title-line { font-size: clamp(3rem, 20vw, 5rem); }
  .hero-tag { font-size: 0.65rem; }
  .hero-sub { font-size: 0.9rem; }
  .btn-primary, .btn-ghost { padding: 12px 22px; font-size: 0.8rem; }
  .carousel-slide { min-width: 88vw; margin: 0 8px; }
  .sobre-card-3d { width: 200px; height: 200px; }
  .sobre-badges {
    transform: translateY(54%);
  }
  .badge {
    max-width: calc(100vw - 48px);
    font-size: 0.58rem;
    padding: 6px 10px;
  }
  .service-card { padding: 20px; }
  .tl-content { padding: 18px; }
  .sobre { padding: 70px 20px; }
  .servicos { padding: 70px 20px; }
  .timeline-section { padding: 70px 20px; }
  .agendar-section { padding: 70px 20px; }
  .contato { padding: 70px 20px; }
}

/* Prevent overflow on all widths */
section, .carousel-section { overflow-x: hidden; }
