/* ═══════════════════════════════════════════════════════════════
   FSWEB — style.css
   CSS global + estilos de todas as páginas
   ═══════════════════════════════════════════════════════════════ */

/* ── VARIÁVEIS ──────────────────────────────────────────────── */
:root {
  --red: #c8102e;
  --red-dark: #a00d24;
  --red-glow: rgba(200, 16, 46, 0.18);
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #181818;
  --surface: #1c1c1c;
  --border: rgba(255, 255, 255, 0.07);
  --text: #f0f0f0;
  --text-mid: #aaaaaa;
  --text-dim: #555555;
  --white: #ffffff;
}

/* ── RESET E BASE ───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}

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

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

/* ══════════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
#site-header.scrolled {
  background: rgba(10, 10, 10, 0.97);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo img {
  height: 38px;
  width: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
nav a {
  color: var(--text-mid);
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}
nav a:hover,
nav a.active {
  color: var(--white);
}
nav a:hover::after,
nav a.active::after {
  width: 100%;
}
.btn-nav {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 3px;
  font-family: "Barlow Condensed", sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  transition:
    background 0.2s,
    transform 0.15s !important;
}
.btn-nav::after,
.btn-nav.active::after {
  display: none !important;
}
.btn-nav:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ══════════════════════════════════════════════════════════════
   COMPONENTES GLOBAIS
   ══════════════════════════════════════════════════════════════ */

/* Hero tag */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 16, 46, 0.12);
  border: 1px solid rgba(200, 16, 46, 0.3);
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.hero-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 44px;
}
.hero-sub strong {
  color: var(--text);
  font-weight: 600;
}

/* Section base */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-tag::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--red);
}
.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.section-title em {
  color: var(--red);
  font-style: normal;
}
.section-sub {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 60px;
}

/* Botões */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 3px;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 16, 46, 0.35);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 3px;
  border: 1px solid var(--border);
  transition:
    border-color 0.2s,
    color 0.2s,
    transform 0.15s;
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  transform: translateY(-2px);
}

/* CTA */
.cta-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  animation: bounceIn 0.6s ease 1.5s both;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
}
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: #111;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
#site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 5% 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img {
  height: 64px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  text-decoration: none;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.footer-social a:hover {
  color: var(--white);
  border-color: var(--red);
  background: var(--red-glow);
}
.footer-col h5 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--red);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 300;
}
.footer-bottom a {
  color: var(--red);
  text-decoration: none;
}

/* ══════════════════════════════════════════════════════════════
   ANIMAÇÕES
   ══════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translate(30px, -50%);
  }
  to {
    opacity: 0.9;
    transform: translate(0, -50%);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  60% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════════════════════════════
   HOME — index.php
   ══════════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 60% at 70% 50%,
      rgba(200, 16, 46, 0.08) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 40% at 10% 80%,
      rgba(200, 16, 46, 0.05) 0%,
      transparent 60%
    );
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 20%,
    transparent 80%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-content .hero-tag {
  opacity: 0;
  animation: fadeUp 0.6s ease 0.1s forwards;
}
.hero-content h1 {
  opacity: 0;
  animation: fadeUp 0.7s ease 0.25s forwards;
}
.hero-content .hero-sub {
  opacity: 0;
  animation: fadeUp 0.7s ease 0.4s forwards;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.55s forwards;
}
h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(52px, 9vw, 110px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 28px;
}
h1 em {
  color: var(--red);
  font-style: normal;
}
.hero-visual {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: 42%;
  max-width: 560px;
  opacity: 0;
  animation: fadeLeft 0.9s ease 0.5s forwards;
}
.hero-visual img {
  width: 100%;
  filter: drop-shadow(0 0 60px rgba(200, 16, 46, 0.2));
}
.hero-stats {
  position: absolute;
  bottom: 52px;
  left: 5%;
  display: flex;
  gap: 48px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.75s forwards;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  color: var(--white);
  line-height: 1;
}
.stat-num span {
  color: var(--red);
}
.stat-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}

/* Marquee */
.marquee-wrap {
  overflow: hidden;
  background: var(--red);
  padding: 12px 0;
}
.marquee-track {
  display: flex;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}
.marquee-dot {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Serviços home */
#servicos {
  background: var(--bg2);
  padding: 100px 5%;
}
.servicos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 24px;
}
.servicos-header .section-sub {
  margin-bottom: 0;
}
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}
.servico-card {
  background: var(--surface);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}
.servico-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--red);
  transition: height 0.4s ease;
}
.servico-card:hover {
  background: #202020;
}
.servico-card:hover::before {
  height: 100%;
}
.servico-icon {
  width: 48px;
  height: 48px;
  background: var(--red-glow);
  border: 1px solid rgba(200, 16, 46, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
}
.servico-num {
  position: absolute;
  top: 32px;
  right: 28px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  transition: color 0.3s;
}
.servico-card:hover .servico-num {
  color: rgba(200, 16, 46, 0.08);
}
.servico-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.servico-card p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}
.servico-tag {
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(200, 16, 46, 0.3);
  padding: 3px 8px;
  border-radius: 2px;
}

/* Processo home */
#processo {
  background: var(--bg);
  padding: 100px 5%;
}
.processo-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.processo-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step:first-child {
  padding-top: 0;
}
.step:last-child {
  border-bottom: none;
}
.step-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.step:hover .step-num {
  opacity: 1;
}
.step-content h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.step-content p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.6;
}
.processo-visual {
  position: relative;
}
.processo-card-main {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.processo-card-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.card-dots {
  display: flex;
  gap: 6px;
}
.card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.card-dot:nth-child(1) {
  background: #ff5f57;
}
.card-dot:nth-child(2) {
  background: #febc2e;
}
.card-dot:nth-child(3) {
  background: #28c840;
}
.card-title-bar {
  flex: 1;
  height: 20px;
  background: var(--bg3);
  border-radius: 3px;
}
.card-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.card-metric:last-child {
  border-bottom: none;
}
.metric-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
}
.metric-value {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.metric-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 2px;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.08em;
}
.badge-green {
  background: rgba(40, 200, 64, 0.15);
  color: #28c840;
}
.badge-yellow {
  background: rgba(254, 188, 46, 0.15);
  color: #febc2e;
}

/* Planos home */
#hospedagem {
  background: var(--bg2);
  padding: 100px 5%;
}
.planos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  margin-top: 60px;
}
.plano-card {
  background: var(--surface);
  padding: 40px 32px;
  position: relative;
  transition: background 0.3s;
}
.plano-card.destaque {
  background: var(--red);
}
.plano-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.plano-card.destaque .plano-badge {
  background: rgba(255, 255, 255, 0.2);
}
.plano-nome {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.plano-preco {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}
.preco-cifrao {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-mid);
}
.plano-card.destaque .preco-cifrao {
  color: rgba(255, 255, 255, 0.7);
}
.preco-valor {
  font-family: "Bebas Neue", sans-serif;
  font-size: 52px;
  color: var(--white);
  line-height: 1;
}
.preco-period {
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 300;
}
.plano-card.destaque .preco-period {
  color: rgba(255, 255, 255, 0.7);
}
.plano-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.plano-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 300;
  color: var(--text-mid);
}
.plano-card.destaque .plano-features li {
  color: rgba(255, 255, 255, 0.85);
}
.plano-features li::before {
  content: "✓";
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.plano-card.destaque .plano-features li::before {
  color: var(--white);
}
.btn-plano {
  display: block;
  text-align: center;
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px;
  border-radius: 3px;
  transition: all 0.2s;
}
.btn-plano-outline {
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-plano-outline:hover {
  border-color: var(--red);
  color: var(--red);
}
.btn-plano-white {
  background: var(--white);
  color: var(--red);
}
.btn-plano-white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

/* Depoimentos home */
#depoimentos {
  background: var(--bg);
  padding: 100px 5%;
}
.depo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  margin-top: 60px;
}
.depo-card {
  background: var(--surface);
  padding: 36px 32px;
  position: relative;
}
.depo-quote {
  font-size: 48px;
  font-family: "Bebas Neue", sans-serif;
  color: var(--red);
  line-height: 0.8;
  margin-bottom: 16px;
  opacity: 0.6;
}
.depo-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.depo-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.depo-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red-glow);
  border: 2px solid rgba(200, 16, 46, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  color: var(--red);
  flex-shrink: 0;
}
.depo-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.depo-role {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 300;
}
.depo-stars {
  position: absolute;
  top: 32px;
  right: 28px;
  color: #febc2e;
  font-size: 13px;
  letter-spacing: 2px;
}

/* CTA home */
#cta {
  background: var(--bg2);
  padding: 120px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(200, 16, 46, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
#cta .section-title {
  font-size: clamp(42px, 7vw, 90px);
}

/* ══════════════════════════════════════════════════════════════
   SOBRE — sobre.php
   ══════════════════════════════════════════════════════════════ */
.sobre-hero,
.servicos-hero,
.portfolio-hero,
.contato-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  padding: 140px 5% 80px;
  position: relative;
  overflow: hidden;
}
.sobre-hero-bg,
.servicos-hero-bg,
.portfolio-hero-bg,
.contato-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 70% at 100% 40%,
      rgba(200, 16, 46, 0.07) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 30% 50% at 0% 90%,
      rgba(200, 16, 46, 0.04) 0%,
      transparent 60%
    );
}
.sobre-hero-grid,
.servicos-hero-grid,
.portfolio-hero-grid,
.contato-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 20%,
    transparent 80%
  );
}
.sobre-hero-content,
.servicos-hero-content,
.portfolio-hero-content,
.contato-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.sobre-hero-content .hero-tag,
.servicos-hero-content .hero-tag,
.portfolio-hero-content .hero-tag,
.contato-hero-content .hero-tag {
  opacity: 0;
  animation: fadeUp 0.6s ease 0.1s forwards;
}
.sobre-hero-content h1,
.servicos-hero-content h1,
.portfolio-hero-content h1,
.contato-hero-content h1 {
  opacity: 0;
  animation: fadeUp 0.7s ease 0.25s forwards;
}
.sobre-hero-content .hero-sub,
.servicos-hero-content .hero-sub,
.portfolio-hero-content .hero-sub,
.contato-hero-content .hero-sub {
  opacity: 0;
  animation: fadeUp 0.7s ease 0.4s forwards;
  margin-bottom: 0;
}

/* MVV */
.mvv-section {
  background: var(--bg2);
  padding: 100px 5%;
}
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.mvv-card {
  background: var(--surface);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.mvv-card:hover {
  background: #202020;
}
.mvv-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.mvv-card:hover::after {
  transform: scaleX(1);
}
.mvv-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}
.mvv-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.mvv-card p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── FUNDADOR — sobre.php ───────────────────────────────────── */
.fundador-section {
  background: var(--bg);
  padding: 100px 5%;
}

.fundador-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.fundador-img-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid var(--border);
}

.fundador-img-wrap img {
  width: 100%;
  display: block;
  filter: grayscale(15%);
  transition: filter 0.4s ease;
}

.fundador-img-wrap:hover img {
  filter: grayscale(0%);
}

.fundador-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(200, 16, 46, 0.15), transparent 50%);
  pointer-events: none;
}

.fundador-badge {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.badge-cargo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-glow);
  border: 1px solid rgba(200, 16, 46, 0.3);
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
}

.fundador-texto p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}

.fundador-texto p strong {
  color: var(--text);
  font-weight: 600;
}

.fundador-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.ftag {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.ftag:hover {
  border-color: var(--red);
  color: var(--white);
}

.fundador-formacao {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--surface);
  border-left: 3px solid var(--red);
}

.formacao-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.formacao-icone {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.formacao-item strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.formacao-item span {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
}

/* História */
.historia-section {
  background: var(--bg);
  padding: 100px 5%;
}
.historia-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.historia-texto h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.historia-texto h2 em {
  color: var(--red);
  font-style: normal;
}
.historia-texto p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.historia-texto p strong {
  color: var(--text);
  font-weight: 600;
}
.historia-numeros {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 40px;
}
.historia-num-card {
  background: var(--surface);
  padding: 28px 24px;
}
.historia-num-card .num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  color: var(--red);
  line-height: 1;
}
.historia-num-card .num span {
  font-size: 28px;
  color: var(--white);
}
.historia-num-card .label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 6px;
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), transparent);
}
.timeline-item {
  display: flex;
  gap: 24px;
  padding: 0 0 36px 0;
  position: relative;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  font-family: "Bebas Neue", sans-serif;
  font-size: 14px;
  color: var(--red);
  letter-spacing: 0.05em;
}
.timeline-content {
  padding-top: 8px;
}
.timeline-content h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.timeline-content p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Diferenciais */
.diferenciais-section {
  background: var(--bg2);
  padding: 100px 5%;
}
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  margin-top: 60px;
}
.diferencial-card {
  background: var(--surface);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.diferencial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--red);
  transition: height 0.4s ease;
}
.diferencial-card:hover {
  background: #202020;
}
.diferencial-card:hover::before {
  height: 100%;
}
.diferencial-icon {
  width: 52px;
  height: 52px;
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.diferencial-card h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.diferencial-card p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.65;
}

/* CTA sobre */
.sobre-cta {
  background: var(--bg);
  padding: 100px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sobre-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(200, 16, 46, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════
   SERVIÇOS — servicos.php
   ══════════════════════════════════════════════════════════════ */
.filtro-section,
.portfolio-filtro {
  background: var(--bg2);
  padding: 28px 5%;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 50;
  backdrop-filter: blur(16px);
}
.filtro-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.filtro-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-right: 8px;
}
.filtro-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
}
.filtro-btn:hover,
.filtro-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.servicos-grupo {
  padding: 80px 5%;
}
.servicos-grupo:nth-child(even) {
  background: var(--bg2);
}
.servicos-grupo:nth-child(odd) {
  background: var(--bg);
}
.grupo-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}
.servico-detalhe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.servico-detalhe-grid.triple {
  grid-template-columns: repeat(3, 1fr);
}
.servico-detalhe-card {
  background: var(--surface);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.servico-detalhe-card:hover {
  background: #202020;
}
.servico-detalhe-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.servico-detalhe-card:hover::before {
  transform: scaleX(1);
}
.sdc-icon {
  width: 56px;
  height: 56px;
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}
.sdc-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.sdc-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
}
.sdc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.sdc-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.5;
}
.sdc-features li::before {
  content: "→";
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.sdc-footer {
  display: flex;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.btn-orcamento {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 3px;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-orcamento:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

/* FAQ */
.faq-section {
  background: var(--bg);
  padding: 100px 5%;
}
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  background: var(--surface);
  border-left: 3px solid transparent;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-left-color: var(--red);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}
.faq-question h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  font-size: 18px;
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
}
.faq-cta {
  position: sticky;
  top: 140px;
}
.faq-cta-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  padding: 40px 36px;
  border-radius: 2px;
}
.faq-cta-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  line-height: 1.1;
}
.faq-cta-card h3 em {
  color: var(--red);
  font-style: normal;
}
.faq-cta-card p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}
.faq-cta-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.faq-cta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-mid);
  font-weight: 300;
}
.faq-cta-item::before {
  content: "✓";
  color: var(--red);
  font-weight: 700;
  font-size: 12px;
}

/* ══════════════════════════════════════════════════════════════
   PORTFÓLIO — portfolio.php
   ══════════════════════════════════════════════════════════════ */
.portfolio-section {
  background: var(--bg);
  padding: 80px 5%;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2px;
}
.projeto-card {
  background: var(--surface);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}
.projeto-card:hover {
  background: #202020;
}
.projeto-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.projeto-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0.85;
}
.projeto-card:hover .projeto-thumb img {
  transform: scale(1.04);
  opacity: 1;
}
.projeto-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--bg3) 0%, #222 100%);
}
.placeholder-icon {
  font-size: 40px;
  opacity: 0.4;
}
.placeholder-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.projeto-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200, 16, 46, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.projeto-card:hover .projeto-overlay {
  opacity: 1;
}
.overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--red);
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: 3px;
  transition: transform 0.2s;
}
.overlay-btn:hover {
  transform: scale(1.05);
}
.projeto-info {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.projeto-categoria {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
}
.projeto-categoria::before {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: var(--red);
}
.projeto-titulo {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.projeto-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.65;
}
.projeto-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.projeto-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 2px;
}
.projeto-card.destaque {
  grid-column: span 2;
}
.projeto-card.destaque .projeto-thumb {
  aspect-ratio: 21/9;
}
.em-construcao {
  background: var(--bg2);
  padding: 60px 5%;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.construcao-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(254, 188, 46, 0.1);
  border: 1px solid rgba(254, 188, 46, 0.25);
  color: #febc2e;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.construcao-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #febc2e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.em-construcao h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.em-construcao h2 em {
  color: var(--red);
  font-style: normal;
}
.em-construcao p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.portfolio-cta {
  background: var(--bg);
  padding: 100px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.portfolio-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(200, 16, 46, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════
   CONTATO — contato.php
   ══════════════════════════════════════════════════════════════ */
.contato-hero {
  min-height: 45vh;
  padding: 140px 5% 72px;
}
.canais-section {
  background: var(--bg2);
  padding: 60px 5%;
  border-bottom: 1px solid var(--border);
}
.canais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
}
.canal-card {
  background: var(--surface);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.canal-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.canal-card:hover {
  background: #202020;
}
.canal-card:hover::before {
  transform: scaleX(1);
}
.canal-icon {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.canal-icon.whatsapp {
  background: rgba(37, 211, 102, 0.12);
}
.canal-icon.email {
  background: rgba(200, 16, 46, 0.12);
}
.canal-icon.local {
  background: rgba(255, 255, 255, 0.06);
}
.canal-icon.horario {
  background: rgba(254, 188, 46, 0.1);
}
.canal-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.canal-valor {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}
.canal-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.5;
}
.contato-main {
  background: var(--bg);
  padding: 100px 5%;
}
.contato-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contato-info h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.contato-info h2 em {
  color: var(--red);
  font-style: normal;
}
.contato-info > p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 40px;
}
.processo-contato {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.processo-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.processo-num {
  width: 36px;
  height: 36px;
  background: var(--red-glow);
  border: 1px solid rgba(200, 16, 46, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  color: var(--red);
  flex-shrink: 0;
}
.processo-texto h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.processo-texto p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.6;
}
.contato-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  padding: 48px 44px;
  position: sticky;
  top: 100px;
}
.form-titulo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.form-subtitulo {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  margin-bottom: 32px;
}
.form-alert {
  padding: 14px 18px;
  border-radius: 3px;
  font-size: 14px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-alert.success {
  background: rgba(40, 200, 64, 0.1);
  border: 1px solid rgba(40, 200, 64, 0.25);
  color: #28c840;
}
.form-alert.error {
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.25);
  color: #ff6b6b;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-label span {
  color: var(--red);
  margin-left: 2px;
}
.form-input,
.form-select,
.form-textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 12px 16px;
  border-radius: 3px;
  transition:
    border-color 0.2s,
    background 0.2s;
  outline: none;
  width: 100%;
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-dim);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--red);
  background: #1e1e1e;
}
.form-select option {
  background: var(--bg3);
  color: var(--text);
}
.form-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 3px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.form-submit:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.form-lgpd {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-dim);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}
.localizacao-section {
  background: var(--bg2);
  padding: 80px 5%;
}
.localizacao-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}
.localizacao-info h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.localizacao-info h3 em {
  color: var(--red);
  font-style: normal;
}
.localizacao-info p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
}
.localizacao-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.localizacao-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 300;
}
.localizacao-item strong {
  color: var(--text);
  font-weight: 600;
  min-width: 90px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.localizacao-mapa {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mapa-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 32px;
}
.mapa-placeholder .map-icon {
  font-size: 48px;
  opacity: 0.3;
}
.mapa-placeholder p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.6;
}
.mapa-placeholder a {
  color: var(--red);
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(200, 16, 46, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.mapa-placeholder a:hover {
  border-color: var(--red);
}

/* ══════════════════════════════════════════════════════════════
   404 — 404.php
   ══════════════════════════════════════════════════════════════ */
.erro-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 5%;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  text-align: center;
}

.erro-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 60% at 50% 50%,
    rgba(200, 16, 46, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.erro-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 20%,
    transparent 80%
  );
  pointer-events: none;
}

.erro-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.erro-numero {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(120px, 20vw, 200px);
  color: var(--surface);
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: -20px;
  user-select: none;
}

.erro-numero span {
  color: var(--red);
}

.erro-content .hero-tag {
  margin: 0 auto 28px;
}

.erro-content h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.erro-content h1 em {
  color: var(--red);
  font-style: normal;
}

.erro-content .hero-sub {
  margin: 0 auto 40px;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVO
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .servico-detalhe-grid.triple {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mvv-grid {
    grid-template-columns: 1fr;
  }
  .historia-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .processo-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    display: none;
  }
  .faq-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .faq-cta {
    position: static;
  }
  .servico-detalhe-grid {
    grid-template-columns: 1fr;
  }
  .contato-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contato-form-wrap {
    position: static;
  }
  .localizacao-wrap {
    grid-template-columns: 1fr;
  }
  .projeto-card.destaque {
    grid-column: span 1;
  }
  .projeto-card.destaque .projeto-thumb {
    aspect-ratio: 16/9;
  }

  .fundador-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .fundador-img-wrap {
    max-width: 340px;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  nav {
    display: none;
  }
  nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 0 0;
    min-height: calc(100vh - 72px);
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    padding: 40px 5%;
    gap: 28px;
    align-items: flex-start;
    z-index: 99;
  }
  nav.open a {
    font-size: 22px;
  }
  .menu-toggle {
    display: flex;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: 28px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contato-form-wrap {
    padding: 32px 24px;
  }
  .canais-grid {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .historia-numeros {
    grid-template-columns: 1fr 1fr;
  }
}
