/* ============================================================
   BRAVUS PERFORMANCE - Global Stylesheet
   Palette: #000 (Preto), #E30613 (Vermelho Bravus), #FFF (Branco)
   Theme: Sophisticated, Powerful, Professional Automotive
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');

:root {
  --red: #E30613;
  --red-dark: #B80510;
  --red-glow: rgba(227,6,19,0.35);
  --black: #000000;
  --dark: #0A0A0A;
  --dark-card: #111111;
  --dark-surface: #1A1A1A;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --white: #FFFFFF;
  --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-heading: 'Oswald', 'Helvetica Neue', Arial, sans-serif;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --max-width: 1280px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* --- Utility --- */
.text-red { color: var(--red); }
.text-gray { color: var(--gray); }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* --- Section Spacing --- */
.section { padding: 72px 0; position: relative; }
.section--dark { background: var(--dark); }
.section--surface { background: var(--dark-surface); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 32px;
}

.section-subtitle.centered { margin-left: auto; margin-right: auto; }

/* Red accent line */
.accent-line {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin-bottom: 20px;
}
.accent-line.centered { margin-left: auto; margin-right: auto; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(227,6,19,0.15);
  transition: all var(--transition);
}
.header.scrolled {
  background: rgba(0,0,0,0.98);
  box-shadow: 0 4px 30px rgba(227,6,19,0.1);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
.header__logo img {
  height: 52px;
  width: auto;
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 14px;
  position: relative;
  transition: color var(--transition);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav__link:hover { color: var(--red); }
.nav__link:hover::after { width: 70%; }
.nav__link--active { color: var(--red); }
.nav__link--active::after { width: 70%; }

.nav__cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav__cta:hover {
  background: var(--white);
  color: var(--black) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--red-glow);
}

/* Mobile hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 28px; height: 2px; background: var(--white); transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.5) 70%,
    rgba(0,0,0,0.95) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}
.hero__badge {
  display: inline-block;
  border: 1px solid var(--red);
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 20px;
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.hero__title span { color: var(--red); }
.hero__subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  color: var(--gray-light);
  margin-bottom: 32px;
  font-weight: 300;
}
.hero__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--red), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--red-glow);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-3px);
}
.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn--whatsapp:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.3);
}
.btn--small { padding: 10px 22px; font-size: 0.8rem; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--white);
  display: block;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227,6,19,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  color: var(--white);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(227,6,19,0.1);
  border-radius: 4px;
}
.service-card__icon svg { width: 24px; height: 24px; color: var(--red); }
.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.service-card__text {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.6;
}
.service-card__link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-card__link:hover { color: var(--white); }
.service-card__link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.service-card__link:hover svg { transform: translateX(4px); }


/* Service card list items - red bullets with separators */
.service-card__list { list-style: none; margin: 0; padding: 0; }
.service-card__list li {
  padding: 8px 0;
  border-bottom: 1px solid #1a1a1a;
  font-size: 0.9rem;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-card__list li:last-child { border-bottom: none; }
.service-card__list li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.service-card__desc {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Coding feature list (replaces features-grid on coding page) */
.coding-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}
.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid #1a1a1a;
  font-size: 0.9rem;
  color: var(--gray-light);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 7px;
}
.feature-list li strong {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Sobre: diferenciais cards */
.diff-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.diff-card {
  background: var(--dark-card);
  border: 1px solid #222;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.diff-card:hover { border-color: var(--red); transform: translateY(-4px); }
.diff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.diff-card:hover::before { transform: scaleX(1); }
.diff-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: var(--white);
}
.diff-card__text {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Sobre: content section spacing */
.content-section { padding: 72px 0; }
.content-section .content-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
}

/* Brands card grid for coding page */
.brands-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

/* Section without extra space */
.section--compact { padding: 40px 0; }
.section--alt { background: var(--dark); }
.section--light-gray { background: #0d0d0d; }

@media (max-width: 768px) {
  .coding-features { grid-template-columns: 1fr; }
  .diff-cards { grid-template-columns: 1fr; }
  .content-section .content-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   STATS / COUNTERS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 60px 0;
  position: relative;
}
.stats::before {
  content: '';
  position: absolute;
  top: 0; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
}
.stats::after {
  content: '';
  position: absolute;
  bottom: 0; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
}
.stat-item { text-align: center; }
.stat-item__number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item__label {
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ============================================================
   PORTFOLIO / GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 8px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 32px;
  position: relative;
}
.testimonial-card__stars {
  color: #F5A623;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 3px;
}
.testimonial-card__text {
  color: var(--gray-light);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.7;
}
.testimonial-card__author {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
}
.testimonial-card__car {
  color: var(--gray);
  font-size: 0.75rem;
  margin-top: 4px;
}
.testimonial-card__source {
  color: var(--gray);
  font-size: 0.7rem;
  margin-top: 2px;
  font-style: italic;
}

/* ============================================================
   BRANDS MARQUEE
   ============================================================ */
.brands {
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.brands__track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.brands__item {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.08);
  white-space: nowrap;
  user-select: none;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   CTA BANNER (redesigned - dark bg, red button)
   ============================================================ */
.cta-banner {
  background: var(--dark-card);
  border-top: 1px solid rgba(227,6,19,0.15);
  border-bottom: 1px solid rgba(227,6,19,0.15);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  color: var(--white);
}
.cta-banner__text {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 28px;
  position: relative;
}
.cta-banner .btn--primary {
  background: var(--red);
  color: var(--white);
}
.cta-banner .btn--primary:hover {
  background: var(--white);
  color: var(--black);
}

/* ============================================================
   WHATSAPP GREEN BUTTONS (auto-target all WhatsApp links)
   ============================================================ */
a[href*="whatsapp"].btn--primary,
a[href*="whatsapp"].btn {
  background: #25D366;
  color: var(--white);
}
a[href*="whatsapp"].btn--primary:hover,
a[href*="whatsapp"].btn:hover {
  background: #1ebe5d;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}
a[href*="whatsapp"].nav__cta {
  background: #25D366;
}
a[href*="whatsapp"].nav__cta:hover {
  background: #1ebe5d;
  color: var(--white) !important;
}
.cta-banner a[href*="whatsapp"].btn--primary {
  background: #25D366;
}
.cta-banner a[href*="whatsapp"].btn--primary:hover {
  background: #1ebe5d;
  color: var(--white);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 48px 0 24px;
  border-top: 1px solid rgba(227,6,19,0.2);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer__brand-logos { display: flex; align-items: center; gap: 20px; margin-bottom: 14px; }
.footer__brand-logo { height: 28px; width: auto; }
.footer__desc { color: var(--gray); font-size: 0.85rem; max-width: 320px; line-height: 1.6; }
.footer__title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  color: var(--white);
}
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 8px; }
.footer__links a { color: var(--gray); font-size: 0.85rem; }
.footer__links a:hover { color: var(--red); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.footer__contact-item svg { flex-shrink: 0; width: 16px; height: 16px; color: var(--red); margin-top: 2px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--gray);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 45vh;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  margin-top: 72px;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0.9));
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}
.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.page-hero__breadcrumb {
  font-size: 0.85rem;
  color: var(--gray);
}
.page-hero__breadcrumb a { color: var(--gray); }
.page-hero__breadcrumb a:hover { color: var(--red); }
.page-hero__breadcrumb span { color: var(--red); }

/* ============================================================
   CONTENT BLOCKS (pillar pages)
   ============================================================ */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.content-split--reverse { direction: rtl; }
.content-split--reverse > * { direction: ltr; }

.content-block__tag {
  display: inline-block;
  background: rgba(227,6,19,0.1);
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  margin-bottom: 14px;
}
.content-block__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1.15;
}
.content-block__text { color: var(--gray-light); margin-bottom: 20px; line-height: 1.8; font-size: 0.95rem; }
.content-block__list {
  list-style: none;
  margin-bottom: 20px;
}
.content-block__list li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: var(--gray-light);
  font-size: 0.9rem;
}
.content-block__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 2px;
  background: var(--red);
}

.content-image {
  position: relative;
  overflow: hidden;
}
.content-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}
.content-image:hover img { transform: scale(1.03); }
.content-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 40%;
  background: linear-gradient(to top, var(--black), transparent);
  pointer-events: none;
}

/* ============================================================
   FEATURES LIST (checkmarks)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(227,6,19,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.feature-item__icon svg { width: 20px; height: 20px; color: var(--red); }
.feature-item__title {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.feature-item__text { color: var(--gray); font-size: 0.85rem; line-height: 1.5; }

/* ============================================================
   REMAP POWER TABLE
   ============================================================ */
.remap-table-wrapper {
  overflow-x: auto;
  margin: 32px 0;
}
.remap-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.remap-table thead th {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.8rem;
  white-space: nowrap;
}
.remap-table tbody td {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--gray-light);
  white-space: nowrap;
}
.remap-table tbody tr { background: var(--dark-card); }
.remap-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.remap-table tbody tr:hover { background: rgba(227,6,19,0.08); }
.remap-table tbody td:first-child {
  font-weight: 600;
  color: var(--white);
}
.remap-table .power-gain {
  color: var(--red);
  font-weight: 700;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form__group { display: flex; flex-direction: column; }
.contact-form__group--full { grid-column: 1 / -1; }
.contact-form__label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: var(--gray);
}
.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  background: var(--dark-surface);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 12px 16px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}
.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-color: var(--red);
}
.contact-form__textarea { min-height: 120px; resize: vertical; }
.contact-form__submit { grid-column: 1 / -1; }
.contact-form__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  background: var(--red);
  color: var(--white);
  transition: all var(--transition);
}
.contact-form__button:hover {
  background: var(--white);
  color: var(--black);
}

/* ============================================================
   CONTACT PAGE LAYOUT
   ============================================================ */
.contact-section { padding: 72px 0; }
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-section__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.contact-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-card__icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.contact-card__title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--white);
}
.contact-card__text { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }
.contact-card__link { color: var(--red); }
.contact-card__link:hover { color: var(--white); }

.maps-section { margin-bottom: 0; }
.maps-container { width: 100%; }
.maps-container iframe { display: block; width: 100%; height: 400px; border: 0; filter: grayscale(100%) invert(92%) contrast(83%); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .content-split { grid-template-columns: 1fr; gap: 32px; }
  .content-split--reverse { direction: ltr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-split { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header .container { height: 64px; }
  .nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.98);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-top: 1px solid rgba(227,6,19,0.2);
  }
  .nav.active { display: flex; }
  .nav__link { width: 100%; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.03); }
  .nav__cta { width: 100%; text-align: center; margin: 8px 0 0; justify-content: center; }
  .hamburger { display: flex; }
  .hero__title { font-size: clamp(2rem, 8vw, 3.5rem); }
  .section { padding: 48px 0; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 40px 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .contact-form { grid-template-columns: 1fr; }
  .page-hero { height: 35vh; min-height: 280px; margin-top: 64px; }
}

@media (max-width: 480px) {
  .hero { min-height: 500px; }
  .hero__buttons { flex-direction: column; align-items: center; }
  .stats { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.15s; }
.stagger > *:nth-child(4) { transition-delay: 0.2s; }
.stagger > *:nth-child(5) { transition-delay: 0.25s; }
.stagger > *:nth-child(6) { transition-delay: 0.3s; }
