/* =========================================
   GODOY EMPILHADEIRAS - CSS DESIGN SYSTEM
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ---- VARIÁVEIS ---- */
:root {
  --primary: #29ABE2;
  --primary-light: #7DD8F8;
  --primary-dark: #1987B5;
  --red: #CC2222;
  --red-dark: #991A1A;
  --red-light: #E05050;
  --black: #080808;
  --dark: #0E0E0E;
  --dark-2: #161616;
  --dark-3: #202020;
  --dark-4: #2A2A2A;
  --white: #FFFFFF;
  --gray: #9A9A9A;
  --gray-light: #CCCCCC;
  --success: #22C55E;

  /* Aliases para compatibilidade com o CSS existente */
  --gold: #29ABE2;
  --gold-light: #7DD8F8;
  --gold-dark: #1987B5;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;

  --shadow-gold: 0 0 30px rgba(41, 171, 226, 0.3);
  --shadow-red: 0 0 30px rgba(204, 34, 34, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---- UTILITIES ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 168, 0, 0.12);
  border: 1px solid rgba(245, 168, 0, 0.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
}

.section-title span {
  color: var(--gold);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  margin-top: 12px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245, 168, 0, 0.08);
}

/* ---- HEADER ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245, 168, 0, 0.15);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  overflow: hidden;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.logo-text span {
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-light);
  transition: var(--transition);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}

.nav a:hover {
  color: var(--white);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- MOBILE NAV ---- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid rgba(245, 168, 0, 0.2);
  z-index: 999;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.mobile-nav .btn-primary {
  margin-top: 16px;
  justify-content: center;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(8, 8, 8, 0.88) 0%,
      rgba(8, 8, 8, 0.6) 50%,
      rgba(8, 8, 8, 0.3) 100%);
}

.hero-slide-1 {
  background-image: url('img/hero.png');
}

.hero-slide-2 {
  background: linear-gradient(135deg, #0a0a0a 0%, #0a1520 50%, #06111a 100%);
}

.hero-slide-3 {
  background: linear-gradient(135deg, #080808 0%, #1a0606 50%, #080808 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 140px 0 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 168, 0, 0.15);
  border: 1px solid rgba(245, 168, 0, 0.4);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 8px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-title .highlight {
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-light);
}

.hero-pill svg {
  color: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-slide-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  opacity: 0.8;
}

.hero-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  cursor: pointer;
}

.hero-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

/* ---- STATS ---- */
.stats-section {
  background: var(--dark-2);
  border-top: 1px solid rgba(245, 168, 0, 0.15);
  border-bottom: 1px solid rgba(245, 168, 0, 0.15);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  background: var(--dark-2);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 168, 0, 0.06), transparent);
  opacity: 0;
  transition: var(--transition);
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-number span {
  font-size: 1.6rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---- SERVICES ---- */
.services-section {
  padding: 100px 0;
  background: var(--black);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .section-subtitle {
  margin: 12px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover {
  border-color: rgba(245, 168, 0, 0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: rgba(245, 168, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-light);
}

.service-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.service-card .btn-outline {
  font-size: 0.85rem;
  padding: 10px 20px;
}

/* ---- BRANDS ---- */
.brands-section {
  padding: 80px 0;
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.brands-header {
  text-align: center;
  margin-bottom: 50px;
}

.brands-track-wrapper {
  overflow: hidden;
  position: relative;
}

.brands-track-wrapper::before,
.brands-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.brands-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--dark), transparent);
}

.brands-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--dark), transparent);
}

.brands-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: brandScroll 20s linear infinite;
}

.brands-track:hover {
  animation-play-state: paused;
}

.brand-pill {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 18px 32px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray);
  white-space: nowrap;
  transition: var(--transition);
  letter-spacing: 1px;
}

.brand-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---- MODELS ---- */
.models-section {
  padding: 100px 0;
  background: var(--black);
}

.models-header {
  text-align: center;
  margin-bottom: 60px;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.model-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.model-card:hover {
  border-color: rgba(245, 168, 0, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.model-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--dark-3);
}

.model-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.model-card:hover .model-img img {
  transform: scale(1.06);
}

.model-type-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(8, 8, 8, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 168, 0, 0.3);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.model-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.model-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.model-body p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.model-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.model-spec {
  background: var(--dark-3);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.model-spec-label {
  font-size: 0.72rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.model-spec-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.model-body .btn-primary {
  font-size: 0.85rem;
  padding: 11px 20px;
  align-self: flex-start;
}

/* ---- WHY US ---- */
.whyus-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--dark), var(--black));
}

.whyus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.whyus-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.whyus-visual img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.whyus-badge-float {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 168, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.whyus-badge-icon {
  font-size: 2rem;
}

.whyus-badge-text .number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.whyus-badge-text small {
  font-size: 0.78rem;
  color: var(--gray);
}

.whyus-content .section-subtitle {
  margin-bottom: 36px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.why-item {
  display: flex;
  gap: 16px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
}

.why-item:hover {
  border-color: rgba(245, 168, 0, 0.2);
}

.why-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(245, 168, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.why-item-content h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-item-content p {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ---- CTA MID ---- */
.cta-section {
  padding: 0 0 100px;
  background: var(--black);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cta-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  transition: var(--transition);
}

.cta-card:hover {
  transform: translateY(-4px);
}

.cta-card-locacao {
  background: linear-gradient(135deg, #06101a 0%, #0d1f2d 100%);
  border: 1px solid rgba(41, 171, 226, 0.2);
}

.cta-card-compra {
  background: linear-gradient(135deg, #1a0606 0%, #2d0d0d 100%);
  border: 1px solid rgba(204, 34, 34, 0.2);
}

.cta-card-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 20px rgba(245, 168, 0, 0.4));
}

.cta-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-card p {
  color: var(--gray);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.cta-card .btn-primary {
  align-self: flex-start;
}

.cta-card-compra .btn-primary {
  background: rgba(204, 34, 34, 0.15);
  color: #E57070;
  border: 1px solid rgba(204, 34, 34, 0.3);
}

.cta-card-compra .btn-primary:hover {
  background: rgba(204, 34, 34, 0.25);
  box-shadow: none;
}

/* glow accent top right */
.cta-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  pointer-events: none;
}

.cta-card-locacao::before {
  background: radial-gradient(circle, rgba(41, 171, 226, 0.15), transparent 70%);
}

.cta-card-compra::before {
  background: radial-gradient(circle, rgba(204, 34, 34, 0.12), transparent 70%);
}

/* ---- TESTIMONIALS ---- */
.testimonials-section {
  padding: 100px 0;
  background: var(--dark);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(245, 168, 0, 0.2);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars span {
  color: var(--gold);
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
}

.testimonial-info .name {
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-info .role {
  font-size: 0.78rem;
  color: var(--gray);
}

.google-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 0.7rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 4px;
}

.google-g {
  font-weight: 700;
  color: #4285F4;
  font-size: 0.85rem;
}

/* ---- CONTACT ---- */
.contact-section {
  padding: 100px 0;
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info .section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}

.contact-info .section-subtitle {
  margin-bottom: 36px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: var(--transition);
}

.contact-item:hover {
  border-color: rgba(245, 168, 0, 0.2);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(245, 168, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-text .label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item-text .value {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  transition: var(--transition);
}

.contact-item:hover .value {
  color: var(--gold);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  aspect-ratio: 16/9;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) invert(90%) hue-rotate(180deg);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--gray);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--gray);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  background: #25D366;
  border-radius: 100px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  cursor: pointer;
}

.whatsapp-float:hover {
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

.whatsapp-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.whatsapp-label {
  padding: 0;
  font-weight: 700;
  font-size: 0.88rem;
  color: white;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.4s ease, padding 0.4s ease;
}

.whatsapp-float:hover .whatsapp-label {
  max-width: 200px;
  padding: 0 20px 0 4px;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

@keyframes brandScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .whyus-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .whyus-visual {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .header-cta .btn-primary {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .models-grid {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links,
  .footer-social {
    justify-content: center;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-pill {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
}