/* ================================================
   ADM Fire — style.css  (v2 - CORRIGIDO)
   ================================================ */

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

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

:root {
  --red: #c1121f;
  --red-d: #9a0e18;
  --orange: #f77f00;
  --dark: #1a1a1a;
  --dark2: #242424;
  --gray: #4b4b4b;
  --light: #f5f5f5;
  --white: #ffffff;
  --green: #25d366;
  --green-d: #128c47;
  --shadow: 0 8px 32px rgba(0, 0, 0, .15);
  --radius: 12px;
  --trans: .3s ease;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ───────────────────────────────── */
.section-badge {
  display: inline-block;
  background: rgba(193, 18, 31, .12);
  color: var(--red);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--red);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray);
  max-width: 580px;
  margin-bottom: 48px;
}

.text-center {
  text-align: center;
}

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

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--trans);
  text-decoration: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(193, 18, 31, .4);
}

.btn-primary:hover {
  background: var(--red-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(193, 18, 31, .5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .7);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
}

.btn-whatsapp:hover {
  background: var(--green-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, .5);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--dark2);
  transform: translateY(-2px);
}

/* ── Header / Nav ─────────────────────────────── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--trans), box-shadow var(--trans), padding var(--trans);
  padding: 14px 0;
}

#header.scrolled {
  background: rgba(22, 22, 22, .97);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .35);
  padding: 8px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* Logo image slot — coloque img/logo.png */
.logo-img-wrap {
  height: 48px;
  width: auto;
  display: flex;
  align-items: center;
}

.logo-img-wrap img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* Text fallback logo */
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 24px;
  height: 24px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .04em;
}

.logo-sub {
  font-size: .6rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Nav links — desktop */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

/* Hide mobile-only icon wrappers on desktop */
.nav-links a .nav-icon {
  display: none;
}

.nav-brand-mobile {
  display: none;
}

.nav-close {
  display: none;
}

.nav-links a {
  color: rgba(255, 255, 255, .82);
  font-size: .86rem;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: 6px;
  transition: all var(--trans);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, .1);
}

.nav-wa {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 9px 18px !important;
  border-radius: 50px !important;
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  font-weight: 600 !important;
  margin-left: 6px;
}

.nav-wa:hover {
  background: var(--green-d) !important;
  transform: translateY(-1px);
}

.nav-wa svg {
  width: 16px;
  height: 16px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  transition: background var(--trans);
}

.hamburger:hover {
  background: rgba(255, 255, 255, .14);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans);
}

.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 Nav ─────────────────────────────────── */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: 400px;
    height: auto;
    max-height: 85vh;

    /* Fundo sólido */
    background: #111111;
    
    flex-direction: column;
    align-items: stretch;
    padding: 30px 20px 24px;
    border-radius: 24px;
    gap: 10px;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease, visibility 0.35s ease;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .8);
    z-index: 10001;
    overflow-y: auto;
    border: 1px solid #333333;

    /* Controle de visibilidade */
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .nav-links.open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  /* Mobile nav items — styled as pill buttons */
  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: #1a1a1a;
    border: 1px solid #333333;
    transition: all var(--trans);
    letter-spacing: .02em;
  }

  .nav-links a .nav-icon {
    width: 36px;
    height: 36px;
    background: #2a2a2a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--trans);
  }

  .nav-links a .nav-icon svg {
    width: 18px;
    height: 18px;
    color: var(--white);
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: none;
  }

  .nav-links a:hover .nav-icon,
  .nav-links a.active .nav-icon {
    background: var(--red);
  }

  .nav-links a:hover .nav-icon svg,
  .nav-links a.active .nav-icon svg {
    color: var(--white);
  }

  .nav-links a::after {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-right: 2px solid rgba(255, 255, 255, .3);
    border-top: 2px solid rgba(255, 255, 255, .3);
    transform: rotate(45deg);
    margin-left: auto;
    flex-shrink: 0;
  }

  .nav-wa {
    margin-top: 10px !important;
    justify-content: center !important;
    padding: 15px 18px !important;
    border-radius: 14px !important;
    font-size: 1rem !important;
    border: none !important;
  }

  .nav-wa::after {
    display: none !important;
  }

  .nav-wa .nav-icon {
    display: none !important;
  }

  /* Mobile nav close button */
  .nav-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, .7);
    font-size: 1.4rem;
    line-height: 1;
    transition: all var(--trans);
  }

  .nav-close:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
  }

  .nav-brand-mobile {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  backdrop-filter: blur(4px);
}

.nav-overlay.open {
  display: block;
}

/* ── Hero ─────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-color: #1e0808;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(.42);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(22, 22, 22, .95) 0%,
      rgba(22, 22, 22, .55) 55%,
      rgba(193, 18, 31, .1) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 130px 0 90px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(193, 18, 31, .18);
  border: 1px solid rgba(193, 18, 31, .4);
  color: #ff7070;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(1.6);
  }
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 680px;
}

.hero-title span {
  color: var(--red);
}

.hero-subtitle {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, .72);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.stat-item {
  text-align: left;
}

.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: .76rem;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .35);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 18px;
  height: 18px;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ── Section wrappers ─────────────────────────── */
section {
  padding: 90px 0;
}

/* ── Services ─────────────────────────────────── */
#servicos {
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(0, 0, 0, .07);
  box-shadow: var(--shadow);
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 58px;
  height: 58px;
  background: rgba(193, 18, 31, .1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--trans);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--red);
  transition: color var(--trans);
}

.service-card:hover .service-icon {
  background: var(--red);
}

.service-card:hover .service-icon svg {
  color: var(--white);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ── Diferenciais ─────────────────────────────── */
#diferenciais {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.diferenciais-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.diferenciais-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dif-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 12px;
  padding: 20px 24px;
  transition: all var(--trans);
}

.dif-item:hover {
  background: rgba(193, 18, 31, .12);
  border-color: rgba(193, 18, 31, .3);
}

.dif-check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.dif-check svg {
  width: 18px;
  height: 18px;
  color: white;
}

.dif-item h4 {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.dif-item p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
}

.dif-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
  aspect-ratio: 4/3;
  background: #2a1010;
}

.dif-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dif-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--red);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .diferenciais-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ── Processo ─────────────────────────────────── */
#processo {
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(12.5% + 48px);
  right: calc(12.5% + 48px);
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  opacity: 0.3;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.step-num {
  width: 96px;
  height: 96px;
  background: var(--white);
  border: 3px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: all var(--trans);
}

.step-item:hover .step-num {
  background: var(--red);
  color: var(--white);
  transform: scale(1.1);
}

.step-item h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-item p {
  font-size: .82rem;
  color: var(--gray);
}

@media (max-width: 700px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps-grid::before {
    display: none !important;
  }
}

/* ── Clientes ─────────────────────────────────── */
#clientes {
  background: var(--light);
}

.clientes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.cliente-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  transition: all var(--trans);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.cliente-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
  border-color: rgba(193, 18, 31, .2);
}

.cliente-card img {
  max-height: 85px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  transition: all var(--trans);
}

.cliente-card:hover img {
  transform: scale(1.05);
}

/* ── CTA ──────────────────────────────────────── */
#cta {
  background: linear-gradient(135deg, var(--red-d) 0%, var(--red) 50%, var(--orange) 100%);
  padding: 80px 0;
}

.cta-inner {
  text-align: center;
  color: var(--white);
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 1rem;
  opacity: .85;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ───────────────────────────────────── */
#footer {
  background: #111;
  color: rgba(255, 255, 255, .65);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: .85rem;
  line-height: 1.8;
}

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

.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
  transition: color var(--trans);
}

.footer-col ul li a:hover {
  color: var(--red);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .85rem;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
  color: rgba(255, 255, 255, .6);
}

.social-btn:hover {
  background: var(--red);
  color: var(--white);
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255, 255, 255, .3);
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ── MVV Section ─────────────────────────────── */
#mvv {
  position: relative;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#mvv::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(31, 31, 31, 0.9), rgba(31, 31, 31, 0.8));
  z-index: 1;
}

#mvv .container {
  position: relative;
  z-index: 2;
}

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

.mvv-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, .05);
  transition: transform var(--trans);
}

.mvv-card:hover {
  transform: translateY(-5px);
}

.mvv-icon {
  width: 50px;
  height: 50px;
  background: rgba(193, 18, 31, .1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mvv-icon svg {
  width: 24px;
  height: 24px;
  color: var(--red);
}

.mvv-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.mvv-card p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.6;
}

.mvv-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mvv-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .86rem;
  color: var(--gray);
}

.mvv-list-item svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--green);
}

.mvv-list-item b {
  color: var(--dark);
}

@media (max-width: 900px) {
  .mvv-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Team Section ────────────────────────────── */
#equipe {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
}

.team-img-wrap {
  width: 200px;
  height: 200px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: var(--light);
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}

.team-pos {
  font-size: .85rem;
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-img-wrap {
    width: 160px;
    height: 160px;
  }
}

/* ── Billboard / Propaganda ───────────────────── */
#billboard {
  background: var(--light);
  padding: 40px 0;
}

.billboard-inner {
  width: 100%;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .03);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.billboard-inner img {
  width: 100%;
  height: auto;
  max-height: 100px;
  object-fit: contain;
}

/* Fallback style for the billboard banner */
.billboard-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #e0e0e0, #f0f0f0);
  color: #999;
  text-align: center;
  padding: 20px;
}

@media (max-width: 768px) {
  .billboard-inner {
    padding: 20px;
    min-height: 80px;
  }

  .billboard-inner img {
    max-height: 60px;
  }
}

/* ── WhatsApp Float + Bubble ──────────────────── */
.wa-float-wrap {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* Bubble callout */
.wa-bubble {
  background: var(--white);
  color: var(--dark);
  font-size: .82rem;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 20px 20px 4px 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .18);
  white-space: nowrap;
  position: relative;
  animation: bubble-pop .4s ease both, wa-float-soft 3s 0.4s ease-in-out infinite;
  cursor: pointer;
}

.wa-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 18px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 0px solid transparent;
  border-top: 9px solid var(--white);
}

@keyframes bubble-pop {
  0% {
    opacity: 0;
    transform: scale(.7) translateY(10px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes wa-float-soft {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.wa-float-btn {
  width: 58px;
  height: 58px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .55);
  animation: float-wa 3s ease-in-out infinite;
  transition: transform var(--trans), background var(--trans);
  text-decoration: none;
}

.wa-float-btn:hover {
  transform: scale(1.12) !important;
  background: var(--green-d);
}

.wa-float-btn svg {
  width: 28px;
  height: 28px;
}

@keyframes float-wa {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ── Page Hero (inner pages) ──────────────────── */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-color: #1a0808;
  background-size: cover;
  background-position: center;
  filter: brightness(.35);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(22, 22, 22, .9) 0%, transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 110px 0 60px;
  color: var(--white);
}

.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.breadcrumb {
  font-size: .82rem;
  color: rgba(255, 255, 255, .45);
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: var(--red);
}

/* ── AVCB Page ────────────────────────────────── */
.avcb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.avcb-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #eee;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}

.avcb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-block {
  margin-bottom: 32px;
}

.info-block h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-block h3::before {
  content: '';
  width: 4px;
  height: 22px;
  background: var(--red);
  border-radius: 4px;
  flex-shrink: 0;
}

.info-block p {
  color: var(--gray);
  font-size: .9rem;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

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

.check-list li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23c1121f' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 3px;
}

/* numbered ordered list for legal items */
.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  counter-reset: legal;
  padding-left: 0;
}

.legal-list li {
  display: flex;
  gap: 12px;
  color: var(--gray);
  font-size: .88rem;
  padding: 10px 14px;
  background: rgba(193, 18, 31, .04);
  border-left: 3px solid var(--red);
  border-radius: 0 6px 6px 0;
}

.law-box {
  background: rgba(193, 18, 31, .06);
  border: 1px solid rgba(193, 18, 31, .2);
  border-radius: 10px;
  padding: 20px 24px;
  margin-top: 12px;
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.8;
}

.law-box strong {
  color: var(--dark);
}

.avcb-cta-box {
  background: var(--dark);
  border-radius: 16px;
  padding: 36px;
  margin-top: 40px;
  text-align: center;
  color: var(--white);
}

.avcb-cta-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.avcb-cta-box p {
  opacity: .65;
  font-size: .88rem;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .avcb-grid {
    grid-template-columns: 1fr;
  }

  .avcb-img-wrap {
    position: static;
  }
}

/* ── Treinamentos Page ────────────────────────── */
.treinamento-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, .07);
  transition: all var(--trans);
  display: flex;
  flex-direction: column;
}

.treinamento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.treinamento-img {
  aspect-ratio: 16/9;
  background: #ccc;
  position: relative;
  overflow: hidden;
}

.treinamento-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.treinamento-card:hover .treinamento-img img {
  transform: scale(1.06);
}

.treinamento-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .08em;
}

.treinamento-body {
  padding: 28px;
  flex: 1;
}

.treinamento-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.treinamento-body p {
  font-size: .87rem;
  color: var(--gray);
}

/* treinamento feature list */
.tlist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.tlist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: var(--gray);
}

.tlist li svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── Galeria Page ─────────────────────────────── */
.galeria-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 8px 20px;
  border: 2px solid var(--red);
  color: var(--red);
  background: transparent;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--trans);
  font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--red);
  color: var(--white);
}

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

.galeria-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  background: #ddd;
  cursor: pointer;
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.galeria-item:hover img {
  transform: scale(1.08);
}

.galeria-overlay {
  position: absolute;
  inset: 0;
  background: rgba(193, 18, 31, .75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all var(--trans);
}

.galeria-item:hover .galeria-overlay {
  opacity: 1;
}

.galeria-overlay svg {
  width: 36px;
  height: 36px;
  color: white;
}

.galeria-item.wide {
  grid-column: span 2;
}

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

  .galeria-item.wide {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .galeria-grid {
    grid-template-columns: 1fr;
  }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

/* ── Obras Page ───────────────────────────────── */
.obras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.obra-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, .07);
  transition: all var(--trans);
}

.obra-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .15);
}

.obra-img {
  aspect-ratio: 16/9;
  background: #ccc;
  overflow: hidden;
}

.obra-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.obra-card:hover .obra-img img {
  transform: scale(1.06);
}

.obra-body {
  padding: 24px;
}

.obra-tag {
  display: inline-block;
  background: rgba(193, 18, 31, .1);
  color: var(--red);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.obra-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.obra-body p {
  font-size: .84rem;
  color: var(--gray);
}

/* ── Contato Page ─────────────────────────────── */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contato-icon {
  width: 48px;
  height: 48px;
  background: rgba(193, 18, 31, .1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contato-icon svg {
  width: 22px;
  height: 22px;
  color: var(--red);
}

.contato-item h4 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray);
  font-weight: 600;
}

.contato-item p {
  font-size: .9rem;
  color: var(--dark);
  font-weight: 500;
}

.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 44px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, .07);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 2px solid rgba(0, 0, 0, .1);
  border-radius: 8px;
  font-size: .9rem;
  font-family: inherit;
  color: var(--dark);
  background: #fafafa;
  transition: border-color var(--trans);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.map-wrap {
  margin-top: 60px;
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .contato-grid {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ── Scroll animations ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive tweaks ────────────────────────── */
@media (max-width: 600px) {
  section {
    padding: 60px 0;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 24px;
    justify-content: center;
    text-align: center;
  }

  .stat-item {
    text-align: center;
  }

  .wa-float-wrap {
    bottom: 18px;
    right: 18px;
  }
}