/* ==========================================================================
   CONFIGURAÇÕES
   Propriedades CSS personalizadas (variáveis)
========================================================================== */
:root {
  --azul: #29235c;
  --azul-escuro: #1e1a47;
  --azul-claro: #3a3280;
  --vermelho: #be1622;
  --vermelho-escuro: #96111b;
  --branco: #ffffff;
  --cinza-claro: #f4f4f8;
  --cinza: #d6d6dd;
  --texto: #1a1a2e;
  --texto-muted: #6b6b8a;
}

/* ==========================================================================
   BASE / RESET
   Reset global e estilos base
========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", sans-serif;
  background: radial-gradient(
    circle at top,
    #f8f9ff 0%,
    #eef2ff 30%,
    #e4e8ff 100%
  );
  color: var(--texto);
  overflow-x: hidden;
}

.active {
  color: var(--vermelho);
}
/* ==========================================================================
   COMPONENTES: Navbar e Navegação
========================================================================== */
.navbar {
  background: var(--azul-escuro);
  padding: 0 clamp(20px, 5vw, 40px);
  height: clamp(68px, 12vh, 74px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--vermelho);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 55px;
  height: 50px;
  background: var(--branco);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--branco);
}

.logo-text span {
  color: var(--vermelho);
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

nav a:hover {
  color: var(--branco);
}

.tag-red {
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--vermelho);
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
.tag-azul {
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--azul);
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.btn-orcamento {
  background: var(--vermelho);
  color: var(--branco);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.btn-orcamento:hover {
  background: var(--vermelho-escuro);
}

/* ── HERO ── */
.hero {
  background: url(../img/contactUs.jpg) no-repeat center center/cover fixed;
  min-height: 100vh;
  padding: 20px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(190, 22, 34, 0.12);
}

.hero::after {
  content: "";
  position: absolute;
  right: 140px;
  bottom: -100px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 92px 40px;
  display: flex;
  align-items: flex-start;
  gap: 70px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
}

/* ── TAG, TÍTULO, SUB E BOTÕES COM ANIMAÇÃO ── */
.hero-tag,
.hero-title,
.hero-sub,
.hero-btns {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: fadeUpModern 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-tag {
  animation-delay: 0.1s;
}
.hero-title {
  animation-delay: 0.3s;
}
.hero-sub {
  animation-delay: 0.5s;
}
.hero-btns {
  animation-delay: 0.7s;
}

.sec-tag span {
  border: solid 1px var(--vermelho);
  border-radius: 12px;
}

.hero-tag {
  display: inline-block;
  background: rgba(190, 22, 34, 0.25);
  color: #f08090;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 70px;
  font-weight: 800;
  color: var(--branco);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.hero-title span {
  color: var(--vermelho);
}

.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 420px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── BOTÃO PRIMÁRIO ── */
.btn-hero-primary {
  background: var(--vermelho);
  color: var(--branco);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Pulso contínuo */
  animation: pulse 2.5s infinite;
}

.btn-hero-primary:hover {
  background: var(--vermelho-escuro);
  transform: translateY(-2px);
}

.btn-hero-primary:active {
  transform: scale(0.97);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* ── BOTÃO SECUNDÁRIO ── */
.btn-hero-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  display: inline-block;
}

.btn-hero-secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

/* ── STATS BAR ── */
.stats {
  background: var(--vermelho);
  padding: clamp(12px, 3vw, 20px) clamp(12px, 4vw, 32px);
  display: flex;
  justify-content: center;
  gap: clamp(4px, 1.5vw, 8px);
  overflow-x: auto;
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.stats::-webkit-scrollbar {
  display: none;
}

.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    var(--vermelho) 20%,
    var(--vermelho) 80%,
    transparent 100%
  );
  animation: marquee-shine 3s linear infinite;
}

@keyframes marquee-shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.stat-item {
  flex: none;
  min-width: clamp(72px, 18vw, 140px);
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0 clamp(6px, 1.5vw, 12px);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(18px, 4.5vw, 24px);
  font-weight: 800;
  color: var(--branco);
  letter-spacing: 0.5px;
  line-height: 1;
}

.stat-lbl {
  font-size: clamp(8px, 2.2vw, 10px);
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 1px;
}

/* ── SEÇÕES ── */
section {
  padding: clamp(60px, 12vh, 80px) clamp(16px, 4vw, 40px);
}
.container {
  max-width: clamp(1000px, 90vw, 1120px);
  margin: 20px auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

.sec-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--vermelho);
  margin-bottom: 10px;
}

.sec-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--azul);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  line-height: 1.1;
}

.sec-sub {
  font-size: 17px;
  color: var(--texto-muted);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.6;
}

/* ── SEGMENTOS ── */
.segmentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.segmento-item {
  background: var(--branco);
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--cinza);
  transition: all 0.3s ease;
}

.segmento-item i {
  font-size: 32px;
  color: var(--vermelho);
  margin-bottom: 12px;
  display: block;
}

.segmento-item span {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--azul);
}

.segmento-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(41, 35, 92, 0.1);
}

/* ── PROCESSO ── */
.processo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.step-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  margin-bottom: -20px;
}

.processo-step h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--branco);
}

.processo-grid {
  position: relative;
}

.processo-line {
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--vermelho) 0%, transparent 100%);
  opacity: 0.3;
  z-index: 0;
}

.processo-step {
  position: relative;
  z-index: 1;
}

/* ── PRODUTOS ── */
#produtos {
  background-color: #f8f9fc;
  background-image: radial-gradient(var(--cinza) 0.8px, transparent 0.8px);
  background-size: 30px 30px;
  position: relative;
  padding-top: 100px;
}
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(clamp(260px, 45vw, 320px), 1fr)
  );
  justify-content: center;
  gap: clamp(16px, 4vw, 24px);
}

.prod-card {
  background: var(--branco);
  border: 1px solid rgba(41, 35, 92, 0.08);
  border-radius: 18px;
  padding: 24px 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(41, 35, 92, 0.06);
}

.prod-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--vermelho), #ff7a84);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.prod-card:hover {
  border-color: rgba(41, 35, 92, 0.18);
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(41, 35, 92, 0.12);
}
.prod-card:hover::before {
  transform: scaleX(1);
}

.prod-info-btn {
  margin-top: 16px;
  width: 100%;
  background: transparent;
  color: var(--azul);
  border: 1px solid rgba(41, 35, 92, 0.12);
  border-radius: 12px;
  padding: 10px 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.prod-info-btn:hover {
  background: rgba(41, 35, 92, 0.04);
  border-color: rgba(41, 35, 92, 0.18);
}

/* ── FILTROS DO CATÁLOGO ── */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 60px;
  flex-wrap: wrap;
  background: rgba(41, 35, 92, 0.05);
  padding: 8px;
  border-radius: 50px;
  width: fit-content;
  border: 1px solid rgba(41, 35, 92, 0.05);
  backdrop-filter: blur(5px);
}

.filter-btn {
  background: transparent;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--azul);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--azul);
  color: var(--branco);
  box-shadow: 0 8px 20px rgba(41, 35, 92, 0.2);
}

/* ── BARRA DE PESQUISA ── */
.search-bar-container {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.search-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  display: flex;
}

.search-input {
  width: 100%;
  padding: 16px 45px 16px 55px;
  border: 1px solid rgba(41, 35, 92, 0.1);
  border-radius: 14px;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  color: var(--texto);
  background: var(--branco);
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.search-input::placeholder {
  color: var(--texto-muted);
}

.search-input:focus {
  outline: none;
  border-color: var(--azul-claro);
  box-shadow: 0 0 0 4px rgba(58, 50, 128, 0.1);
}

.search-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--texto-muted);
  font-size: 16px;
  pointer-events: none;
}

.btn-clear-search {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--texto-muted);
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: color 0.2s;
}

.btn-clear-search:hover {
  color: var(--vermelho);
}

/* ── MENSAGEM DE NENHUM PRODUTO ENCONTRADO ── */
.no-products-message {
  text-align: center;
  color: var(--texto-muted);
  font-size: 18px;
  margin-top: 40px;
  display: none; /* Escondido por padrão */
}

.btn-add-orc {
  margin-top: 10px;
  width: 100%;
  background: var(--vermelho);
  color: var(--branco);
  border: none;
  border-radius: 12px;
  padding: 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-add-orc:hover {
  background: var(--vermelho-escuro);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(190, 22, 34, 0.25);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 11, 31, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
}
.modal-overlay.open {
  display: flex;
}
.modal-content {
  width: min(760px, 100%);
  background: var(--branco);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 40px 100px rgba(16, 24, 88, 0.18);
  position: relative;
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(41, 35, 92, 0.08);
  color: var(--azul);
  font-size: 22px;
  cursor: pointer;
}
.modal-head {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.modal-image {
  width: 250px;
  height: 200px;
  border-radius: 24px;
  overflow: hidden;
  background: #f5f5ff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Agora a imagem cobre todo o container do modal */
}
.modal-head {
  align-items: center;
}
.modal-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--azul);
  margin-bottom: 8px;
  line-height: 1.1;
}
.modal-category {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--vermelho);
  font-weight: 700;
}
.modal-body {
  display: grid;
  gap: 24px;
}
.modal-description {
  min-width: 0;
  padding: 10px;
}
.modal-text {
  font-size: 16px;
  color: var(--texto-muted);
  line-height: 1.8;
  text-align: justify;
  margin: 0;
}
.modal-details h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 12px;
}
@media (min-width: 880px) {
  .modal-body {
    grid-template-columns: 1.45fr 1fr;
    align-items: start;
  }
}
.modal-features {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.modal-features li {
  padding: 12px 16px;
  background: #f4f4f8;
  border-radius: 12px;
  color: var(--texto);
  font-size: 13px;
  line-height: 1.5;
}

.prod-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Faz a imagem preencher todo o espaço do container */
  display: block;
}

.prod-icon {
  margin: -24px -20px 20px -20px; /* Margens negativas para colar no topo e laterais */
  border-radius: 17px 17px 0 0; /* Mantém o arredondamento superior do card */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 220px; /* Altura fixa para padronizar o topo dos cards */
}

.prod-nome {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--azul);
  letter-spacing: 0.4px;
  margin-bottom: 6px;
}

.prod-uso {
  font-size: 13px;
  color: var(--texto-muted);
  line-height: 1.8;
  margin-bottom: 14px;
  min-height: 52px;
}

.prod-badge {
  display: inline-block;
  font-size: 11px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid;
}

.badge-azul {
  background: #eeeeff;
  color: var(--azul);
}
.badge-vermelho {
  background: #fff0f0;
  color: var(--vermelho);
}
.badge-cinza {
  background: var(--cinza-claro);
  color: var(--texto-muted);
  border: 1px solid;
}

/* ── CTA BANNER ── */
.cta-banner {
  background:
    linear-gradient(rgba(30, 26, 71, 0.9), rgba(30, 26, 71, 0.9)),
    url("../img/contactUs.jpg") no-repeat center center/cover;
  padding: 100px 20px;
  text-align: center;
  border-top: 4px solid var(--vermelho);
  border-bottom: 4px solid var(--vermelho);
}

.cta-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 800;
  color: var(--branco);
  margin-bottom: 20px;
  line-height: 1.1;
  text-transform: uppercase;
}

.cta-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── ORÇAMENTO ── */
#orcamento {
  background: var(--cinza);
}

.orc-layout {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 380px);
  gap: clamp(24px, 6vw, 32px);
  align-items: start;
}

.orc-lista {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.orc-header-acoes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.btn-limpar-tudo {
  background: none;
  border: none;
  color: var(--vermelho);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.btn-limpar-tudo:hover {
  opacity: 1;
  text-decoration: underline;
}

.orc-item {
  background: var(--branco);
  border: 1px solid rgba(41, 35, 92, 0.08);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 16px 32px rgba(41, 35, 92, 0.05);
}

.orc-item-thumb {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: var(--cinza-claro);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border-radius: 20%;
  overflow: hidden;
}

.orc-item-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover; /* Agora a imagem cobre todo o círculo na lista */
}

.orc-item-nome {
  flex: 1;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--azul);
  letter-spacing: 0.3px;
}

.orc-item-dim {
  font-size: 13px;
  color: var(--texto-muted);
  margin-top: 1px;
}

.orc-qtd {
  display: flex;
  align-items: center;
  gap: 4px;
}

.qtd-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1.5px solid var(--cinza);
  background: var(--branco);
  font-size: 16px;
  font-weight: 500;
  color: var(--azul);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.qtd-btn:hover {
  background: var(--cinza-claro);
}

.qtd-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--texto);
  width: 52px;
  height: 28px;
  text-align: center;
  border: 1.5px solid var(--cinza);
  border-radius: 6px;
  background: var(--branco);
}

.qtd-num:focus {
  outline: none;
  border-color: var(--azul);
  box-shadow: 0 0 0 3px rgba(41, 35, 92, 0.1);
}

.qtd-num::-webkit-outer-spin-button,
.qtd-num::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qtd-num[type="number"] {
  -moz-appearance: textfield;
}

.orc-preco {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--vermelho);
  min-width: 80px;
  text-align: right;
}

.orc-item.zero-quantity {
  background: var(--cinza);
  border-color: rgba(41, 35, 92, 0.04);
  opacity: 0.7;
}

.btn-remove {
  background: transparent;
  border: none;
  color: var(--texto-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-remove:hover {
  background: rgba(190, 22, 34, 0.1);
  color: var(--vermelho);
}

.orc-vazio-container {
  text-align: center;
  padding: 80px 20px;
  background: var(--cinza);
  border-radius: 24px;
  border: 2px dashed rgba(41, 35, 92, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.orc-vazio-icon-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  margin-bottom: 30px;
  animation: float 3s ease-in-out infinite;
}

.orc-vazio-icon-wrapper i.main-icon {
  font-size: 100px;
  color: #cbd5e1; /* Um cinza mais sólido e moderno */
  opacity: 1;
}

.orc-vazio-icon-wrapper i.plus-icon {
  position: absolute;
  bottom: 15px;
  right: 5px;
  font-size: 24px; /* Tamanho reduzido para caber melhor no círculo */
  color: var(--vermelho);
  background: var(--branco);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(190, 22, 34, 0.25);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orc-vazio-titulo {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--azul);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.orc-vazio-texto {
  color: var(--texto-muted);
  margin-bottom: 30px;
  max-width: 320px;
  line-height: 1.6;
}

.orc-resumo {
  background: linear-gradient(
    180deg,
    rgba(41, 35, 92, 1),
    rgba(35, 30, 82, 0.95)
  );
  border-radius: 24px;
  padding: 32px;
  position: sticky;
  top: 96px;
  box-shadow: 0 32px 60px rgba(41, 35, 92, 0.16);
}

.orc-resumo-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--branco);
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.resumo-linha {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.resumo-linha:last-of-type {
  border-bottom: none;
}
.resumo-val {
  color: var(--branco);
  font-weight: 500;
}

.resumo-total {
  background: var(--vermelho);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 16px 0;
}

.resumo-total-lbl {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.resumo-total-val {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--branco);
}

.orc-nome-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 16px; /* Evita zoom no iOS ao focar */
  color: var(--branco);
  margin-bottom: 10px;
  outline: none;
  font-family: "Barlow", sans-serif;
}

.orc-nome-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.orc-nome-input:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-whatsapp {
  width: 100%;
  background: #25d366;
  color: var(--branco);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition:
    background 0.2s,
    transform 0.1s,
    box-shadow 0.2s;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.24);
}

.btn-whatsapp:hover {
  background: #20bb5a;
  transform: translateY(-1px);
}

/* ── DIFERENCIAIS MODERNOS ── */
.feature-modern-section {
  background: var(--branco);
  overflow: hidden;
}

.feature-modern-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.feature-visual {
  flex: 1;
  position: relative;
}

.feature-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 40px;
  box-shadow: 30px 30px 80px rgba(41, 35, 92, 0.15);
}

.feature-experience-card {
  position: absolute;
  bottom: 40px;
  right: -30px;
  background: var(--azul-escuro);
  padding: 30px;
  border-radius: 24px;
  color: var(--branco);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.exp-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--vermelho);
  display: block;
  line-height: 1;
}
.exp-text {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.feature-content {
  flex: 1.2;
}

.feature-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.feature-card-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #f8f9ff;
  border-radius: 20px;
  border-left: 5px solid var(--azul);
  transition: all 0.3s ease;
}

.feature-card-item:hover {
  transform: translateX(10px);
  background: var(--branco);
  box-shadow: 0 15px 40px rgba(41, 35, 92, 0.08);
}

.f-icon-box {
  width: 50px;
  height: 50px;
  background: var(--azul);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.f-text h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--azul);
  margin-bottom: 4px;
}

.f-text p {
  font-size: 15px;
  color: var(--texto-muted);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .feature-modern-wrapper {
    flex-direction: column;
    gap: 60px;
  }
  .feature-visual {
    width: 100%;
  }
  .feature-img {
    height: 400px;
  }
  .feature-experience-card {
    right: 20px;
    bottom: -20px;
  }
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
  padding: 40px 0;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--branco);
  border: 1px solid var(--cinza);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item[open] {
  border-color: var(--vermelho);
  box-shadow: 0 10px 30px rgba(41, 35, 92, 0.08);
}

.faq-item summary {
  padding: 24px 30px;
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--azul);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "\ea5f"; /* chevron-down from tabler-icons */
  font-family: "tabler-icons";
  font-size: 20px;
  color: var(--vermelho);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 30px 24px 30px;
  color: var(--texto-muted);
  line-height: 1.6;
  font-size: 16px;
}

/* ── SEÇÃO COMO TRABALHAMOS (PÁGINA SOBRE) ── */
.trabalho-section {
  background: #161331; /* Azul levemente mais profundo */
  color: var(--branco);
  padding: 120px 20px;
  position: relative;
}

.trabalho-flow {
  max-width: 1000px;
  margin: 60px auto 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.trabalho-flow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--vermelho),
    transparent
  );
  opacity: 0.3;
  transform: translateX(-50%);
}

.trabalho-step {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  position: relative;
}

.trabalho-step:nth-child(even) {
  flex-direction: row-reverse;
}

.trabalho-img-box {
  flex: 1;
  border-radius: 30px;
  overflow: hidden;
  height: 250px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.trabalho-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.trabalho-step:hover .trabalho-img-box img {
  transform: scale(1.1);
}

.trabalho-text-box {
  flex: 1;
  text-align: left;
}

.trabalho-step:nth-child(even) .trabalho-text-box {
  text-align: right;
}

.trabalho-num {
  font-size: 60px;
  font-weight: 800;
  font-family: "Barlow Condensed", sans-serif;
  color: var(--vermelho);
  line-height: 0.8;
  margin-bottom: 10px;
  opacity: 0.8;
  position: sticky;
  top: 110px; /* Mantém o número visível logo abaixo da navbar fixa */
  z-index: 5;
}

.trabalho-step h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.trabalho-icon {
  width: 40px;
  height: 40px;
  background: var(--vermelho);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--branco);
  flex-shrink: 0;
}

.trabalho-step p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  font-size: 16px;
}

@media (max-width: 768px) {
  .trabalho-flow::before {
    left: 20px;
  }
  .trabalho-step,
  .trabalho-step:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    text-align: left !important;
  }
  .trabalho-img-box {
    width: 100%;
    height: 200px;
  }
  .trabalho-text-box {
    padding-left: 40px;
  }
  .trabalho-num {
    font-size: 40px;
  }
}

.faq-footer {
  text-align: center;
  margin-top: 20px;
  font-family: "Barlow Condensed", sans-serif;
}

.faq-footer p {
  color: var(--texto-muted);
  margin-bottom: 10px;
  font-size: 18px;
}

.faq-footer a {
  color: var(--vermelho);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.faq-footer a:hover {
  gap: 12px;
  text-decoration: underline;
}
/* DEPOIMENTOS */
#depoimentos {
  background: url("https://images.unsplash.com/photo-1553413077-190dd305871c?q=80&w=1600&auto=format&fit=crop")
    no-repeat center center/cover fixed;
  position: relative;
  padding: 60px 20px;
  padding: 100px 20px;
  color: var(--branco);
}

#depoimentos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(41, 35, 92, 0.8); /* overlay azul */
  background: linear-gradient(
    135deg,
    rgba(30, 26, 71, 0.95) 0%,
    rgba(41, 35, 92, 0.85) 100%
  );
  z-index: 0;
}

#depoimentos .container {
  position: relative;
  z-index: 1;
}

/* Carrossel */
.depo-swiper {
  width: 100%;
  max-width: 900px;
  margin: auto;
  padding: 20px 0 60px;
}

.swiper-slide {
  background: transparent;
  height: auto;
}

.depo-card {
  background: var(--branco);
  padding: 40px;
  border-radius: 24px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.depo-quote {
  position: absolute;
  top: 15px;
  right: 30px;
  font-size: 32px;
  color: rgba(41, 35, 92, 0.1);
}

.rating-stars {
  color: #ffb800;
  margin-bottom: 20px;
  font-size: 18px;
}

.swiper-slide p {
  font-style: italic;
  font-size: clamp(16px, 4vw, 20px);
  color: var(--texto-muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.depo-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-top: 1px solid var(--cinza-claro);
  padding-top: 20px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--cinza-claro);
  flex-shrink: 0;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-info strong {
  display: block;
  font-size: 18px;
  color: var(--azul);
  font-family: "Barlow Condensed", sans-serif;
}

.user-info span {
  font-size: 14px;
  color: var(--texto-muted);
}

/* Botões de navegação */
.swiper-button-next,
.swiper-button-prev {
  color: var(--branco); /* cor da seta */
  background: var(--vermelho); /* fundo */
  width: 40px;
  height: 40px;
  border-radius: 50%; /* deixa redondo */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--vermelho-escuro);
}

/* Paginação (bolinhas) */
.swiper-pagination-bullet {
  background: var(--cinza-claro);
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: var(--vermelho);
  opacity: 1;
}

/* ── CONTATO / MAPA ── */
#contato {
  background: var(--azul-escuro);
}

.contato-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}

.contato-info .sec-title {
  color: var(--branco);
}
.contato-info .sec-sub {
  color: rgba(255, 255, 255, 0.55);
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contato-item:last-child {
  border-bottom: none;
}

.contato-icone {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contato-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.5px;
}
.contato-val {
  font-size: 14px;
  color: var(--branco);
  font-weight: 500;
  margin-top: 2px;
}
.contato-val span {
  display: inline-block;
  margin-right: 18px;
}
.contato-val span:last-child {
  margin-right: 0;
}

.mapa-placeholder {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
  height: clamp(350px, 50vh, 450px);
  display: flex;
  flex-direction: column;
}

.mapa-header {
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mapa-header-txt {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.mapa-header-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.mapa-embed {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.mapa-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.mapa-embed-txt {
  font-size: 12px;
  letter-spacing: 0.5px;
}

/* ── FOOTER ── */
footer {
  background: #0d0c1f;
  padding: 80px 0 40px 0;
  color: var(--branco);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col .logo {
  margin-bottom: 24px;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 20px;
}

.footer-socials a:hover {
  background: var(--vermelho);
  transform: translateY(-3px);
}

.footer-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
  color: var(--branco);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--vermelho);
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.footer-contact i {
  color: var(--vermelho);
  font-size: 18px;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}

/* Estilos para a página Sobre */
.zoom-container {
  overflow: hidden;
  position: relative;
}

.zoom-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.zoom-container:hover img {
  transform: scale(1.08);
}

.mvv-bento-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 40px;
}

.bento-card {
  background: var(--branco);
  padding: 40px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-missao {
  grid-row: span 2;
  background: linear-gradient(135deg, var(--branco) 0%, #f9f9ff 100%);
}

.card-visao {
  background: var(--azul-escuro);
  color: var(--branco);
}

.card-valores {
  background: var(--branco);
  display: flex;
  flex-direction: row;
  align-items: center;
}

.bento-card i {
  font-size: 40px;
  color: var(--vermelho);
}

/* ── LOCALIZAÇÃO FLUTUANTE ── */
.map-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 90px; /* acima do WhatsApp */
  right: 28px; /* alinhado com o WhatsApp */
  background-color: var(--vermelho);
  color: var(--branco);
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 16px rgb(190, 22, 34, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: background 0.3s;
  transition: transform 0.2s;
  cursor: pointer;
}

.map-float:hover {
  transform: scale(1.1);
  background-color: var(--vermelho-escuro);
}

/* ── REVISAR ORÇAMENTO FLUTUANTE ── */
.quote-float {
  position: fixed;
  height: 50px;
  bottom: 152px; /* Posicionado acima do botão de mapa */
  right: 28px;
  background-color: var(--azul);
  color: var(--branco);
  border-radius: 30px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 1000;
  box-shadow: 0 4px 16px rgba(41, 35, 92, 0.4);
  transition:
    transform 0.2s,
    background 0.3s;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.quote-float i {
  font-size: 22px;
}

.quote-float:hover {
  transform: scale(1.1);
  background-color: var(--azul-claro);
}

/* ── WHATSAPP FLUTUANTE ── */
.wpp-float {
  position: fixed;
  bottom: 28px; /* canto inferior */
  right: 28px; /* mesmo alinhamento horizontal */
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
  z-index: 999;
  text-decoration: none;
}

.wpp-float:hover {
  transform: scale(1.1);
}

/* ── ANIMAÇÕES ── */
@keyframes fadeUpModern {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  50% {
    opacity: 0.7;
    transform: translateY(10px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollReveal {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > * {
  animation: fadeUpModern 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* SCROLL REVEAL */
.scroll-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.scroll-reveal.stagger {
  transition-delay: calc(var(--stagger-index, 0) * 0.1s + 0.2s);
}

.dif-card.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
}

/* ── RESPONSIVE ── */

/* Hamburger styles */
.hamburger {
  display: none;
  flex-direction: column;
  width: 24px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 4px;
  z-index: 101;
}

.hamburger span {
  height: 3px;
  background: var(--branco);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Tablet & Mobile */
@media (max-width: 1024px) {
  .container {
    max-width: 90%;
    padding: 0 20px;
  }

  .contato-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mapa-placeholder {
    height: clamp(220px, 30vh, 250px);
  }

  nav {
    gap: 24px;
  }

  nav a {
    font-size: 13px;
  }

  .produtos-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }

  .prod-card {
    padding-bottom: 25px;
  }

  .prod-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
  }

  .prod-icon img {
    padding: 0;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  body {
    font-size: clamp(14px, 4vw, 16px);
  }

  .sec-title {
    font-size: clamp(28px, 8vw, 38px);
  }

  .sec-tag {
    font-size: 11px;
    letter-spacing: 2px;
  }

  section {
    padding: 60px 16px;
  }

  /* Navbar */
  .navbar {
    padding: 0 16px;
    height: 68px;
  }

  .hamburger {
    display: flex;
  }

  .btn-orcamento {
    padding: 8px 16px;
    font-size: 12px;
  }

  nav {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    height: calc(100vh - 68px);
    background: var(--azul-escuro);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 40px 20px;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  nav.mobile-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  nav a {
    font-size: 20px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    text-align: center;
  }

  /* Hero */
  .hero {
    height: 100vh;
  }

  .hero-inner {
    flex-direction: column;
    gap: 32px;
    padding: 100px 20px 60px;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(36px, 10vw, 52px);
    line-height: 1.1;
  }

  .hero-sub {
    font-size: clamp(16px, 4vw, 18px);
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 280px;
    padding: 16px 24px;
    font-size: clamp(14px, 4vw, 16px);
  }

  /* Stats */
  .stats {
    padding: 24px 20px;
    gap: 12px;
  }

  .stat-item {
    flex: none;
    max-width: none;
    min-width: 90px;
  }

  .stat-num {
    font-size: clamp(20px, 6vw, 26px);
  }

  /* Grids */
  .dif-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .produtos-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  .orc-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .orc-resumo {
    position: static;
    order: -1;
  }

  .orc-item {
    padding: 20px;
    gap: 16px;
  }

  .orc-item-nome {
    font-size: 16px;
  }

  .qtd-btn {
    width: 36px;
    height: 36px;
  }

  /* Contato */
  .contato-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mapa-placeholder {
    height: 300px;
  }

  /* Modal */
  .modal-content {
    margin: 16px;
    padding: 24px 20px;
  }

  .modal-head {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
  }

  .modal-image {
    width: 160px;
    height: 120px;
  }

  .modal-title {
    font-size: clamp(22px, 6vw, 28px);
  }

  .modal-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Depoimentos */
  .depo-swiper {
    height: auto;
    padding-bottom: 50px;
  }

  .swiper-slide {
    padding: 10px 5px;
  }

  .swiper-slide p {
    font-size: clamp(16px, 5vw, 18px);
  }
  .container .sec-title h2 {
    color: var(--branco);
  }
  /* Floats - mobile mais próximos */
  .wpp-float,
  .map-float {
    width: 56px;
    height: 56px;
  }

  .map-float {
    bottom: clamp(80px, 15vh, 100px);
  }

  .quote-float {
    bottom: clamp(140px, 22vh, 170px);
    width: 55px;
    padding: 0;
    border-radius: 50%;
  }
  .quote-float span {
    display: none;
  }

  .cta-banner {
    padding: 70px 20px;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .cta-btns .btn-hero-primary,
  .cta-btns .btn-hero-secondary {
    width: 100%;
    max-width: 320px;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .footer-col .logo,
  .footer-socials,
  .footer-contact li {
    justify-content: center;
  }
  .footer-desc {
    margin: 0 auto 24px auto;
  }
  .mvv-bento-container {
    grid-template-columns: 1fr;
  }
  .card-valores {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .produtos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .orc-item {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  .orc-qtd {
    justify-content: center;
  }

  nav {
    padding: 40px 16px;
  }
}

/* ── PÁGINA DE CONTATO ── */
.contact-template {
  background:
    linear-gradient(rgba(30, 26, 71, 0.7), rgba(30, 26, 71, 0.7)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=1600&auto=format&fit=crop")
      no-repeat center center/cover fixed;
  padding: 60px 0 100px 0; /* Altura da imagem do contato reduzida ligeiramente */
  text-align: center;
}
.contact-tamplete .sec-tag {
  background: #ff3b58; /* Badge rosa/vermelho igual ao da imagem */
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
.container h1 {
  font-size: 3rem;
  font-family: "Barlow Condensed", sans-serif;
  color: var(--cinza-claro);
}

/* CARD DE INFORMAÇÃO CONSOLIDADO */
.contact-grid {
  max-width: 1120px;
  margin: -100px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  background: var(--branco);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(41, 35, 92, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 10;
  border-top: 5px solid var(--vermelho);
  padding: 0;
}

.contact-detail {
  text-align: center;
  transition: background 0.3s ease;
  padding: 30px 20px;
}

.contact-detail:not(:last-child) {
  border-right: 1px solid var(--cinza-claro);
}

@media (max-width: 890px) {
  .contact-detail:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--cinza-claro);
  }
}

.contact-detail:hover {
  background: rgba(41, 35, 92, 0.02);
}

.contact-detail i {
  font-size: 28px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.contact-detail:nth-child(odd) i {
  background: rgba(190, 22, 34, 0.1);
  color: var(--vermelho);
}

.contact-detail:nth-child(even) i {
  background: rgba(41, 35, 92, 0.1);
  color: var(--azul);
}

.contact-detail h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  color: var(--azul);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-submit {
  background: var(--vermelho);
  width: 100%;
  color: var(--branco);
  border: none;
  padding: 1.25rem 2.5rem;
  border-radius: 3rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
  background-color: var(--vermelho-escuro);
}

.contact-detail a,
.contact-detail p {
  display: block;
  color: var(--texto-muted);
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
}

/* SEÇÃO DO FORMULÁRIO E MAPA */
.form-map-wrapper {
  max-width: 1200px;
  margin: 80px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 0 20px;
}

.contact-modern-form {
  text-align: left;
}

.contact-col-title {
  font-size: 24px;
  color: var(--azul-claro);
  margin-bottom: 20px;
  margin-top: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  font-size: 16px; /* Prevenção de zoom mobile */
  border: 1px solid var(--cinza);
  border-radius: 12px;
  background: var(--branco);
  outline: none;
  transition: all 0.3s ease;
  font-family: "Barlow", sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--vermelho);
  box-shadow: 0 0 0 4px rgba(190, 22, 34, 0.1);
}

/* MAPA */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(41, 35, 92, 0.12);
  border: 2px solid var(--branco);
}

/* Responsividade */
@media (max-width: 768px) {
  .form-map-wrapper {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .contact-column {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-hero-modern {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
  }
}

/* ── TOAST NOTIFICATION ── */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--azul-escuro);
  color: var(--branco);
  padding: 16px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  transform: translateX(150%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-left: 4px solid var(--vermelho);
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  pointer-events: none;
}

.toast-notification.show {
  transform: translateX(0);
}

.toast-notification i {
  color: var(--vermelho);
  font-size: 22px;
}
