/* =========================================================
   TRIÂNGULO LOCADORA - STYLE.CSS
   ========================================================= */

/* ---------- 1. VARIÁVEIS ---------- */
:root {
  --color-black: #2A2A28;
  --color-black-deep: #1A1A18;
  --color-black-soft: #3A3A38;
  --color-yellow: #FDCB01;
  --color-yellow-hover: #E5B800;
  --color-white: #FFFFFF;
  --color-gray-light: #F5F5F5;
  --color-gray-medium: #7A7A78;
  --color-whatsapp: #25D366;

  --font-title: 'Barlow Condensed', 'Impact', sans-serif;
  --font-body: 'Barlow', 'Helvetica Neue', Arial, sans-serif;

  --header-h: 96px;
  --radius: 4px;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.25);
  --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
  --container: 1240px;
}

/* ---------- 2. RESET ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

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

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
ul { list-style: none; }

:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- 3. UTILITÁRIOS ---------- */
.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(60px, 9vw, 110px) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 6vw, 70px);
  position: relative;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-yellow-hover);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--color-yellow); }
.section-eyebrow.yellow { color: var(--color-yellow); }

.section-title {
  font-family: var(--font-title);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.05;
  color: var(--color-black);
}
.section-title.light { color: var(--color-white); }
.section-title.yellow { color: var(--color-yellow); }

.section-bar {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-yellow);
  margin: 18px auto;
}
.section-header .section-bar { margin-left: auto; margin-right: auto; }
.sobre-text .section-bar,
.treinamento-text .section-bar { margin-left: 0; }

.section-sub {
  color: var(--color-gray-medium);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  max-width: 640px;
  margin: 10px auto 0;
}

/* ---------- 4. BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 15px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--color-yellow);
  color: var(--color-black-deep);
  border-color: var(--color-yellow);
  box-shadow: 0 6px 18px rgba(253, 203, 1, 0.35);
}
.btn-primary:hover {
  background: var(--color-yellow-hover);
  border-color: var(--color-yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(253, 203, 1, 0.55);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-black);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
  border-color: var(--color-whatsapp);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  background: #1EBE57;
  border-color: #1EBE57;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.55);
}
.btn-whatsapp.btn-pulse { animation: btnPulseGreen 2.4s infinite; }
@keyframes btnPulseGreen {
  0% { box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- 5. HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(42, 42, 40, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(26, 26, 24, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.header-top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-yellow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}
.logo-link { display: flex; align-items: center; }
.logo-img { height: 68px; width: auto; transition: transform var(--transition); }
.logo-link:hover .logo-img { transform: scale(1.04); }

.main-nav .nav-list {
  display: flex;
  gap: 32px;
}
.nav-link {
  color: var(--color-white);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-yellow);
  transition: width var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--color-yellow); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.btn-header {
  padding: 11px 22px;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
}
.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--color-yellow);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---------- 6. HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  color: var(--color-white);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../assets/img/hero-triangulo.png') center/cover no-repeat;
  z-index: -2;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(26,26,24,0.92) 0%, rgba(26,26,24,0.72) 55%, rgba(26,26,24,0.4) 100%);
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 0;
}
.hero-text { max-width: 720px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(253, 203, 1, 0.15);
  border: 1px solid var(--color-yellow);
  color: var(--color-yellow);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-title);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(2.4rem, 6vw, 4.75rem);
  line-height: 0.98;
  margin-bottom: 24px;
}
.hero-title .highlight {
  color: var(--color-yellow);
  position: relative;
  display: inline-block;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 10px;
  background: rgba(253, 203, 1, 0.25);
  z-index: -1;
  transform: skewX(-8deg);
}
.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.88);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 1 !important;
  visibility: visible !important;
}
.hero-actions .btn { opacity: 1 !important; }

.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}
.hero-triangle {
  width: 100%;
  max-width: 540px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 60px rgba(253, 203, 1, 0.35));
  transform-origin: center;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hero-scroll span {
  width: 4px; height: 8px;
  background: var(--color-yellow);
  border-radius: 2px;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(16px); opacity: 0; }
  100% { opacity: 0; }
}

/* ---------- 7. EQUIPAMENTOS ---------- */
.section-equipamentos { background: var(--color-white); }

.equip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.equip-card {
  background: var(--color-gray-light);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  border-bottom: 4px solid transparent;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.equip-card:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--color-yellow);
  box-shadow: var(--shadow-lg);
}
.equip-img-wrap {
  aspect-ratio: 1 / 1;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  overflow: hidden;
}
.equip-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.equip-card:hover .equip-img { transform: scale(1.08); }
.equip-name {
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1.125rem;
  padding: 18px 16px;
  text-align: center;
  color: var(--color-black);
  flex: 1;
}
.equip-card .btn-block { border-radius: 0; }

.equip-cta {
  text-align: center;
  margin-top: clamp(36px, 6vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.equip-cta p {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--color-black);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- 7.5 BLOCO CATÁLOGO ---------- */
.catalogo-block {
  position: relative;
  padding: clamp(50px, 7vw, 80px) 0;
  background: var(--color-black);
  color: var(--color-white);
  overflow: hidden;
}
.catalogo-block::before,
.catalogo-block::after {
  content: '';
  position: absolute;
  width: 0; height: 0;
  pointer-events: none;
}
.catalogo-block::before {
  top: -30px; left: -40px;
  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  border-bottom: 180px solid var(--color-yellow);
  opacity: 0.08;
  transform: rotate(-18deg);
}
.catalogo-block::after {
  bottom: -40px; right: -40px;
  border-left: 140px solid transparent;
  border-right: 140px solid transparent;
  border-bottom: 210px solid var(--color-yellow);
  opacity: 0.08;
  transform: rotate(22deg);
}
.catalogo-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, var(--color-black-soft) 0%, var(--color-black-deep) 100%);
  border-left: 5px solid var(--color-yellow);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow-lg);
}
.catalogo-icon {
  width: 90px;
  height: 90px;
  border-radius: var(--radius);
  background: var(--color-yellow);
  color: var(--color-black-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  flex-shrink: 0;
  box-shadow: 0 10px 28px rgba(253, 203, 1, 0.35);
}
.catalogo-text { min-width: 0; }
.catalogo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 8px;
}
.catalogo-title {
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 8px;
}
.catalogo-desc {
  color: rgba(255,255,255,0.78);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 560px;
}
.catalogo-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}
.catalogo-view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-title);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color var(--transition);
}
.catalogo-view:hover { color: var(--color-yellow); }

/* ---------- 8. BARRA DIFERENCIAIS ---------- */
.diferenciais-bar {
  background: var(--color-yellow);
  padding: 36px 0;
  position: relative;
}
.diferenciais-bar::before,
.diferenciais-bar::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 12px;
  background: var(--color-black);
  clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
}
.diferenciais-bar::before { top: -6px; background: var(--color-yellow); }
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items: center;
}
.diferencial-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 20px;
  border-right: 2px solid rgba(26,26,24,0.25);
  color: var(--color-black-deep);
  width: 100%;
}
.diferencial-item:last-child { border-right: 0; }
.diferencial-item i {
  font-size: 32px;
  flex-shrink: 0;
}
.diferencial-item span {
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
  line-height: 1.1;
}

/* ---------- 9. SOBRE ---------- */
.section-sobre {
  background: var(--color-black);
  color: var(--color-white);
}
.triangle-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(60deg, transparent 48%, var(--color-yellow) 49%, var(--color-yellow) 51%, transparent 52%),
    linear-gradient(-60deg, transparent 48%, var(--color-yellow) 49%, var(--color-yellow) 51%, transparent 52%);
  background-size: 120px 120px;
  pointer-events: none;
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.sobre-text { position: relative; z-index: 2; }
.sobre-lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
}
.sobre-pilares {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pilar-card {
  background: var(--color-black-soft);
  border-left: 3px solid var(--color-yellow);
  padding: 22px 20px;
  border-radius: var(--radius);
  transition: transform var(--transition), background var(--transition);
}
.pilar-card:hover {
  transform: translateY(-4px);
  background: #454542;
}
.pilar-icon {
  color: var(--color-yellow);
  font-size: 28px;
  margin-bottom: 10px;
}
.pilar-card h3 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--color-white);
}
.pilar-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.45;
}
.sobre-image {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.sobre-image img,
.treinamento-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.corner-accent {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 120px;
  height: 120px;
  border-right: 4px solid var(--color-yellow);
  border-bottom: 4px solid var(--color-yellow);
  border-bottom-right-radius: var(--radius);
  z-index: 0;
}

/* ---------- 10. SERVIÇOS ---------- */
.section-servicos { background: var(--color-white); }
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.servico-card {
  background: var(--color-gray-light);
  border-radius: var(--radius);
  padding: 42px 32px;
  text-align: center;
  transition: all var(--transition);
  border-top: 4px solid transparent;
}
.servico-card:hover {
  background: #FFF3B8;
  border-top-color: var(--color-yellow);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.servico-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
  color: var(--color-yellow);
  background: var(--color-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: transform var(--transition);
}
.servico-card:hover .servico-icon { transform: rotate(-6deg) scale(1.06); }
.servico-icon svg { width: 100%; height: 100%; }
.servico-card h3 {
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--color-black);
}
.servico-card p {
  color: var(--color-gray-medium);
  font-size: 1rem;
  line-height: 1.7;
}

/* ---------- 10.5 GALERIA LABORATÓRIO ---------- */
.section-lab {
  background: var(--color-gray-light);
  position: relative;
}
.lab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lab-item {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: zoom-in;
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--color-black);
  aspect-ratio: 4 / 3;
}
.lab-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
}
.lab-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.lab-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.75);
}
.lab-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(26,26,24,0.85) 0%, rgba(26,26,24,0.2) 50%, transparent 100%);
  pointer-events: none;
}
.lab-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-yellow);
  color: var(--color-black-deep);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  transform: translateY(10px);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}
.lab-view {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-yellow);
  color: var(--color-black-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transform: scale(0.7);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}
.lab-item:hover .lab-tag,
.lab-item:focus-visible .lab-tag { transform: translateY(0); opacity: 1; }
.lab-item:hover .lab-view,
.lab-item:focus-visible .lab-view { transform: scale(1); opacity: 1; }

/* ---------- 11. CTA DE CONVERSÃO ---------- */
.cta-conversao {
  position: relative;
  padding: clamp(70px, 10vw, 120px) 0;
  background: var(--color-black);
  color: var(--color-white);
  overflow: hidden;
}
.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(60deg, transparent 48%, var(--color-yellow) 49%, var(--color-yellow) 51%, transparent 52%),
    linear-gradient(-60deg, transparent 48%, var(--color-yellow) 49%, var(--color-yellow) 51%, transparent 52%);
  background-size: 120px 120px;
  pointer-events: none;
}
.cta-triangle-deco {
  position: absolute;
  width: 0; height: 0;
  pointer-events: none;
  opacity: 0.85;
}
.cta-triangle-1 {
  top: -40px; right: -40px;
  border-left: 180px solid transparent;
  border-right: 180px solid transparent;
  border-bottom: 260px solid var(--color-yellow);
  transform: rotate(22deg);
  opacity: 0.12;
}
.cta-triangle-2 {
  bottom: -60px; left: -50px;
  border-left: 140px solid transparent;
  border-right: 140px solid transparent;
  border-bottom: 210px solid var(--color-yellow);
  transform: rotate(-18deg);
  opacity: 0.08;
}
.cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.cta-image {
  position: relative;
}
.cta-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.cta-image .corner-accent {
  right: auto;
  left: -18px;
  border-right: 0;
  border-left: 4px solid var(--color-yellow);
  bottom: -18px;
}
.cta-badge-float {
  position: absolute;
  top: 24px;
  right: -20px;
  background: var(--color-yellow);
  color: var(--color-black-deep);
  padding: 18px 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
  z-index: 3;
  animation: floatBadge 3s ease-in-out infinite;
}
.cta-badge-num {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
}
.cta-badge-txt {
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.2px;
  line-height: 1.15;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.cta-content { position: relative; z-index: 2; }
.cta-content .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(253, 203, 1, 0.15);
  border: 1px solid rgba(253, 203, 1, 0.5);
  padding: 6px 14px;
  border-radius: 999px;
}
.cta-content .section-title {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  margin-bottom: 6px;
}
.cta-content .section-bar { margin-left: 0; }
.cta-lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin-bottom: 26px;
}
.cta-lead strong { color: var(--color-yellow); font-weight: 600; }

.cta-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 32px;
}
.cta-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.92);
  font-size: 0.98rem;
  line-height: 1.3;
}
.cta-benefits li strong { color: var(--color-yellow); font-weight: 600; }
.cta-benefits i {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--color-yellow);
  color: var(--color-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.btn-pulse {
  position: relative;
  animation: btnPulse 2.4s infinite;
}
@keyframes btnPulse {
  0% { box-shadow: 0 6px 18px rgba(253, 203, 1, 0.35), 0 0 0 0 rgba(253, 203, 1, 0.55); }
  70% { box-shadow: 0 6px 18px rgba(253, 203, 1, 0.35), 0 0 0 18px rgba(253, 203, 1, 0); }
  100% { box-shadow: 0 6px 18px rgba(253, 203, 1, 0.35), 0 0 0 0 rgba(253, 203, 1, 0); }
}

.btn-outline-yellow {
  background: transparent;
  color: var(--color-yellow);
  border-color: var(--color-yellow);
}
.btn-outline-yellow:hover {
  background: var(--color-yellow);
  color: var(--color-black-deep);
  transform: translateY(-2px);
}

.cta-fineprint {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
}
.cta-fineprint i { color: var(--color-yellow); }

/* ---------- 13. CONTATO ---------- */
.section-contato { background: var(--color-white); }
.contato-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
  align-items: stretch;
}
.contato-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contato-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-gray-light);
  border-left: 3px solid var(--color-yellow);
  padding: 18px 22px;
  border-radius: var(--radius);
  transition: all var(--transition);
  color: var(--color-black);
}
a.contato-card:hover {
  background: #ECECEC;
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
  border-left-color: var(--color-yellow-hover);
}
.contato-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-black);
  color: var(--color-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contato-icon.whatsapp { background: var(--color-whatsapp); color: var(--color-white); }
.contato-icon.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
  color: var(--color-white);
}
.contato-body { display: flex; flex-direction: column; min-width: 0; }
.contato-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--color-gray-medium);
  font-family: var(--font-title);
}
.contato-body strong {
  font-size: 1rem;
  color: var(--color-black);
  word-break: break-word;
  font-weight: 600;
}
.contato-body span:not(.contato-label) {
  font-size: 0.85rem;
  color: var(--color-gray-medium);
}
.contato-cta {
  color: var(--color-yellow-hover) !important;
  font-weight: 600;
  font-size: 13px !important;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.contato-mapa {
  position: relative;
  border: 2px solid var(--color-yellow);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}
.contato-mapa iframe {
  width: 100%;
  flex: 1;
  border: 0;
  display: block;
  min-height: 450px;
}
.mapa-fallback {
  background: var(--color-black);
  color: var(--color-yellow);
  padding: 14px;
  text-align: center;
  font-family: var(--font-title);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  transition: background var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.mapa-fallback:hover { background: var(--color-yellow); color: var(--color-black); }

/* ---------- 14. FOOTER ---------- */
.site-footer {
  background: var(--color-black-deep);
  color: rgba(255,255,255,0.75);
  padding-top: 60px;
  position: relative;
}
.footer-top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-yellow);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo { height: 78px; margin-bottom: 18px; width: auto; }
.footer-desc { font-size: 0.95rem; line-height: 1.7; max-width: 360px; }

.footer-col h4 {
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 40px; height: 3px;
  background: var(--color-yellow);
}

.footer-links li,
.footer-contact li { margin-bottom: 10px; }
.footer-links a { transition: color var(--transition); font-size: 0.95rem; }
.footer-links a:hover { color: var(--color-yellow); }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer-contact i { color: var(--color-yellow); width: 18px; text-align: center; }
.footer-contact a { transition: color var(--transition); word-break: break-word; }
.footer-contact a:hover { color: var(--color-yellow); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-black-soft);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--color-yellow);
  color: var(--color-black);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 22px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-address { color: var(--color-gray-medium); font-size: 0.8rem; }

/* ---------- 14.5 LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 40px 60px;
  opacity: 0;
  animation: lbFade 0.25s ease forwards;
}
.lightbox[hidden] { display: none; }
@keyframes lbFade {
  to { opacity: 1; }
}

.lightbox-figure {
  position: relative;
  max-width: min(1100px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: lbZoom 0.35s cubic-bezier(.4, 0, .2, 1);
}
@keyframes lbZoom {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.lightbox-figure img {
  max-width: 100%;
  max-height: calc(100vh - 140px);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  border: 3px solid var(--color-yellow);
}
.lightbox-figure figcaption {
  color: var(--color-white);
  font-family: var(--font-title);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  background: rgba(253, 203, 1, 0.12);
  border: 1px solid var(--color-yellow);
  padding: 8px 16px;
  border-radius: 999px;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-yellow);
  color: var(--color-black-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 0;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
  box-shadow: 0 10px 24px rgba(0,0,0,0.45);
  z-index: 1001;
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--color-yellow-hover);
  transform: scale(1.08);
}
.lightbox-close {
  top: 24px;
  right: 24px;
}
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.08); }

.lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-white);
  font-family: var(--font-title);
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 13px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(253, 203, 1, 0.3);
  padding: 8px 18px;
  border-radius: 999px;
  z-index: 1001;
}

body.lb-open { overflow: hidden; }

@media (max-width: 768px) {
  .lightbox { padding: 20px 12px; }
  .lightbox-close { top: 14px; right: 14px; width: 44px; height: 44px; font-size: 18px; }
  .lightbox-nav { width: 44px; height: 44px; font-size: 16px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-counter { bottom: 14px; font-size: 12px; }
  .lightbox-figure img { max-height: calc(100vh - 120px); }
}

/* ---------- 15. WHATSAPP FLUTUANTE ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 90;
  animation: pulse 2.2s infinite;
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-black-deep);
  color: var(--color-white);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  box-shadow: var(--shadow-md);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--color-black-deep);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

@keyframes pulse {
  0% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- 16. RESPONSIVO ---------- */
@media (max-width: 1200px) {
  .equip-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  :root { --header-h: 82px; }
  .logo-img { height: 58px; }
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-black-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right var(--transition);
    z-index: 99;
  }
  .main-nav.is-open { right: 0; }
  .main-nav .nav-list {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  .main-nav .nav-link {
    font-size: 1.5rem;
    color: var(--color-white);
  }
  .btn-header { display: none; }
  .menu-toggle { display: flex; z-index: 101; position: relative; }

  .hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-graphic { display: none; }

  .sobre-grid,
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-image { order: 2; max-width: 560px; margin-inline: auto; }
  .cta-image img { height: 360px; }
  .sobre-pilares { grid-template-columns: repeat(3, 1fr); }

  .servicos-grid { grid-template-columns: 1fr; gap: 20px; }
  .servico-card { padding: 32px 24px; }

  .diferenciais-grid { grid-template-columns: 1fr; gap: 16px; }
  .diferencial-item { border-right: 0; border-bottom: 2px solid rgba(26,26,24,0.2); padding-bottom: 14px; }
  .diferencial-item:last-child { border-bottom: 0; padding-bottom: 0; }

  .contato-grid { grid-template-columns: 1fr; gap: 32px; }
  .contato-mapa { min-height: 360px; }
  .contato-mapa iframe { min-height: 300px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-col:first-child { grid-column: 1 / -1; }

  .cta-badge-float { right: 16px; top: 16px; padding: 14px 18px; }
  .cta-badge-num { font-size: 1.5rem; }

  .lab-grid { grid-template-columns: repeat(2, 1fr); }
  .lab-item:last-child { grid-column: span 2; aspect-ratio: 21 / 9; }

  .catalogo-inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .catalogo-icon { margin: 0 auto; }
  .catalogo-desc { margin-inline: auto; }
  .catalogo-cta { align-items: center; }
}

@media (max-width: 768px) {
  .equip-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .equip-name { font-size: 1rem; padding: 14px 12px; }
  .sobre-pilares { grid-template-columns: 1fr; }
  .cta-benefits { grid-template-columns: 1fr; }
  .cta-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col:first-child { grid-column: auto; }
  .hero-actions .btn { flex: 1; min-width: 0; font-size: 14px; padding: 14px 18px; }
  .diferenciais-grid { grid-template-columns: 1fr; gap: 14px; }
  .diferencial-item { border-bottom: 2px solid rgba(26,26,24,0.2); padding-bottom: 14px; }
  .diferencial-item:last-child { border-bottom: 0; padding-bottom: 0; }

  .section-header { margin-bottom: 36px; }
  .sobre-image img, .cta-image img { height: 300px; }
  .cta-badge-float { padding: 10px 14px; }
  .cta-badge-num { font-size: 1.3rem; }
  .cta-badge-txt { font-size: 10px; }
  .catalogo-icon { width: 72px; height: 72px; font-size: 34px; }
  .catalogo-cta .btn { width: 100%; }

  .lab-grid { grid-template-columns: 1fr; }
  .lab-item, .lab-item:last-child { grid-column: auto; aspect-ratio: 4 / 3; }
}

@media (max-width: 480px) {
  .equip-grid { grid-template-columns: 1fr; }
  .logo-img { height: 52px; }
  .footer-logo { height: 64px; }
  .whatsapp-float { width: 52px; height: 52px; font-size: 26px; bottom: 16px; right: 16px; }
  .btn { padding: 12px 20px; font-size: 13px; }
  .btn-lg { padding: 14px 24px; font-size: 15px; }
  .hero-badge { font-size: 11px; letter-spacing: 1.5px; padding: 6px 12px; }
  .contato-card { padding: 14px 16px; }
  .contato-icon { width: 40px; height: 40px; font-size: 17px; }
  .contato-body strong { font-size: 0.92rem; }
}
