/* ============================================
   VARIÁVEIS E CONFIGURAÇÕES GLOBAIS
   ============================================ */

:root {
  /* Cores principais */
  --primary-color: #35499c;
  --primary-dark: #2a3a7a;
  --primary-light: #4a5fb8;

  /* Cores neutras */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Sombras */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Tipografia */
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Inter", sans-serif;

  /* Transições */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Dimensões */
  --topbar-height: 40px;
  --navbar-height: 80px;
  --navbar-height-scrolled: 70px;
  --container-width: 1280px;
}

/* Reset e configurações base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  color: var(--gray-900);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   TOPBAR
   ============================================ */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--topbar-height);
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-secondary);
  font-size: 0.8125rem;
  z-index: 1001;
  display: flex;
  align-items: center;
}

.topbar-container {
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.topbar-item:hover {
  color: var(--color-accent);
}

.topbar-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.topbar-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.topbar-social:hover {
  color: #fff;
}

.topbar-social svg {
  width: 16px;
  height: 16px;
}

.topbar-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 0.25rem;
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
  .navbar {
    top: 0;
  }
  main {
    margin-top: var(--navbar-height);
  }
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  z-index: 1000;
  transition: all var(--transition-base);
}

/* Efeito ao scroll */
.navbar.scrolled {
  height: var(--navbar-height-scrolled);
  box-shadow: var(--shadow-lg);
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

.navbar-container {
  max-width: var(--container-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* ============================================
   LOGOTIPO (Lado Esquerdo)
   ============================================ */

.navbar-brand {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.brand-link:hover {
  transform: scale(1.02);
}

.brand-logo {
  width: 237px;
  height: 57px;
  display: block;
  object-fit: contain;
}

.brand-highlight {
  color: var(--primary-color);
}

/* ============================================
   MENU DE NAVEGAÇÃO (Centro)
   ============================================ */

.navbar-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin: 0 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: all var(--transition-base);
  position: relative;
}

/* Efeito hover nos links */
.nav-link:hover {
  color: var(--primary-color);
}

/* Indicador de link ativo */
.nav-link.active {
  color: var(--primary-color);
  font-weight: 600;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: width var(--transition-base);
}

.nav-link:hover::after {
  width: 100%;
}

/* Efeito underline no hover */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: width var(--transition-base);
}

/* ============================================
   BOTÃO CTA (Lado Direito)
   ============================================ */

.navbar-cta {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(53, 73, 156, 0.3);
  transition: all var(--transition-base);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

/* Ícone WhatsApp */
.whatsapp-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform var(--transition-base);
}

/* Efeito hover no botão CTA */
.cta-button:hover {
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-color)
  );
  box-shadow: 0 6px 20px rgba(53, 73, 156, 0.4);
  transform: scale(1.05) translateY(-2px);
}

.cta-button:hover .whatsapp-icon {
  transform: scale(1.1);
}

/* Efeito active */
.cta-button:active {
  transform: scale(0.98) translateY(0);
  box-shadow: 0 2px 8px rgba(53, 73, 156, 0.3);
}

/* ============================================
   MENU HAMBURGER (Mobile)
   ============================================ */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: all var(--transition-base);
  transform-origin: left center;
}

/* Animação do hamburger para X */
.hamburger.active .hamburger-line:first-child {
  transform: rotate(45deg);
  width: 28px;
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.active .hamburger-line:last-child {
  transform: rotate(-45deg);
  width: 28px;
}

/* ============================================
   CONTEÚDO DE DEMONSTRAÇÃO
   ============================================ */

main {
  margin-top: calc(var(--navbar-height) + var(--topbar-height));
}

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

/* ============================================
   SECÇÃO HERO
   ============================================ */

.hero-section {
  position: relative;
  min-height: calc(100vh - 40px - var(--topbar-height));
  background: linear-gradient(160deg, #ffffff 0%, #eef2ff 55%, #e8eeff 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Layout em 2 colunas */
.hero-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  flex: 1;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ── Bolhas decorativas de fundo ── */

.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(53, 73, 156, 0.1),
    rgba(53, 73, 156, 0.02)
  );
  border: 1px solid rgba(53, 73, 156, 0.07);
  animation: bubbleFloat linear infinite;
}

.bubble-1 {
  width: 80px;
  height: 80px;
  left: 7%;
  top: 18%;
  animation-duration: 9s;
  animation-delay: -2s;
}
.bubble-2 {
  width: 50px;
  height: 50px;
  left: 18%;
  top: 62%;
  animation-duration: 13s;
  animation-delay: -6s;
}
.bubble-3 {
  width: 110px;
  height: 110px;
  left: 58%;
  top: 8%;
  animation-duration: 11s;
  animation-delay: -1.5s;
}
.bubble-4 {
  width: 35px;
  height: 35px;
  right: 8%;
  top: 72%;
  animation-duration: 7s;
  animation-delay: -4s;
}
.bubble-5 {
  width: 65px;
  height: 65px;
  right: 22%;
  top: 28%;
  animation-duration: 10s;
  animation-delay: -7s;
}
.bubble-6 {
  width: 42px;
  height: 42px;
  left: 38%;
  bottom: 22%;
  animation-duration: 12s;
  animation-delay: -3.5s;
}

@keyframes bubbleFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.55;
  }
  33% {
    transform: translateY(-18px) scale(1.05);
    opacity: 0.8;
  }
  66% {
    transform: translateY(9px) scale(0.96);
    opacity: 0.45;
  }
}

/* ── Coluna Esquerda ── */

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  animation: heroSlideRight 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroSlideRight {
  from {
    opacity: 0;
    transform: translateX(-45px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(53, 73, 156, 0.07);
  border: 1px solid rgba(53, 73, 156, 0.18);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-color);
  width: fit-content;
  font-family: var(--font-secondary);
  letter-spacing: 0.02em;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.badge-pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.35);
  animation: badgePulse 2.2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* Título */
.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2.4rem, 4.5vw, 3.9rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--gray-900);
  letter-spacing: -0.025em;
}

.title-accent {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

/* Sublinhado ondulado animado no título */
.title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 5px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 6'%3E%3Cpath d='M0 3 Q15 0 30 3 Q45 6 60 3' stroke='%2335499C' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
    repeat-x;
  background-size: 60px 6px;
  animation: titleWave 3s linear infinite;
  opacity: 0.6;
}

@keyframes titleWave {
  0% {
    background-position: 0px 0;
  }
  100% {
    background-position: 60px 0;
  }
}

/* Descrição */
.hero-description {
  font-family: var(--font-secondary);
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 490px;
}

.hero-description strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Botões CTA */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #4a5fb8 100%);
  color: white;
  font-family: var(--font-secondary);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 6px 22px rgba(53, 73, 156, 0.38);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.hero-btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.hero-btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(53, 73, 156, 0.45);
}

.hero-btn-primary:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 4px 12px rgba(53, 73, 156, 0.3);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: transparent;
  color: var(--primary-color);
  font-family: var(--font-secondary);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(53, 73, 156, 0.28);
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero-btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(53, 73, 156, 0.25);
}

.hero-btn-secondary svg {
  transition: transform 0.3s ease;
}

.hero-btn-secondary:hover svg {
  transform: translateX(4px);
}

/* Estatísticas */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(53, 73, 156, 0.09);
  box-shadow: 0 4px 22px rgba(53, 73, 156, 0.08);
  width: fit-content;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.stat-value {
  font-family: var(--font-primary);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  color: var(--gray-600);
  font-weight: 500;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 34px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* Carrinha de entrega */
.hero-van {
  animation: heroSlideUp 0.9s 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

.van-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  background: white;
  border-radius: 18px;
  border: 1px solid rgba(53, 73, 156, 0.1);
  box-shadow: 0 4px 22px rgba(53, 73, 156, 0.09);
  transition: box-shadow 0.3s ease;
  animation: vanHover 4.5s ease-in-out infinite;
  max-width: 400px;
}

@keyframes vanHover {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.van-card:hover {
  box-shadow: 0 10px 32px rgba(53, 73, 156, 0.16);
  border-color: rgba(53, 73, 156, 0.22);
  animation-play-state: paused;
}

.van-img-wrap {
  flex-shrink: 0;
  width: 150px;
  border-radius: 10px;
  overflow: hidden;
}

.van-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: drop-shadow(0 2px 8px rgba(53, 73, 156, 0.2));
}

.van-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.van-title {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-900);
  white-space: nowrap;
}

.van-subtitle {
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  color: var(--gray-600);
  white-space: nowrap;
}

/* ── Coluna Direita: Visual ── */

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroSlideLeft 0.85s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroSlideLeft {
  from {
    opacity: 0;
    transform: translateX(45px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/5;
}

/* Blob orgânico */
.visual-blob {
  position: absolute;
  inset: -5%;
  background: linear-gradient(
    145deg,
    rgba(53, 73, 156, 0.09) 0%,
    rgba(99, 102, 241, 0.07) 40%,
    rgba(165, 180, 252, 0.1) 100%
  );
  border-radius: 62% 38% 55% 45% / 54% 47% 53% 46%;
  animation: blobMorph 9s ease-in-out infinite;
  z-index: 0;
}

@keyframes blobMorph {
  0%,
  100% {
    border-radius: 62% 38% 55% 45% / 54% 47% 53% 46%;
  }
  25% {
    border-radius: 49% 51% 32% 68% / 54% 44% 56% 46%;
  }
  50% {
    border-radius: 36% 64% 45% 55% / 47% 54% 46% 53%;
  }
  75% {
    border-radius: 49% 51% 63% 37% / 45% 55% 45% 55%;
  }
}

/* Frame da imagem */
.visual-image-frame {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(53, 73, 156, 0.22),
    0 8px 20px rgba(0, 0, 0, 0.1);
  animation: imageHover 6.5s ease-in-out infinite;
  z-index: 1;
}

@keyframes imageHover {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(0.4deg);
  }
}

.visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.visual-image-frame:hover .visual-img {
  transform: scale(1.05);
}

/* Fallback SVG — oculto por padrão, ativa via onerror no img */
.visual-fallback {
  display: none;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #eef2ff, #dde4ff);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1.5rem;
}

.visual-fallback svg {
  width: 100%;
  max-width: 260px;
}

.visual-fallback p {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 1rem;
  text-align: center;
}

/* Cartões flutuantes */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.7rem 1rem;
  background: white;
  border-radius: 14px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.1),
    0 2px 6px rgba(0, 0, 0, 0.06);
  z-index: 10;
  white-space: nowrap;
}

.float-fresh {
  top: 10%;
  left: -14%;
  animation: cardFloat1 5.5s ease-in-out infinite;
}

.float-time {
  bottom: 20%;
  right: -12%;
  animation: cardFloat2 6s ease-in-out infinite;
}

@keyframes cardFloat1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes cardFloat2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.float-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-icon-blue {
  background: #eef2ff;
}
.float-icon-green {
  background: #ecfdf5;
}

.float-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.float-card-text strong {
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gray-900);
  display: block;
}

.float-card-text span {
  font-family: var(--font-secondary);
  font-size: 0.6875rem;
  color: var(--gray-600);
}

/* Gotas de água decorativas */
.water-drops {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.drop {
  position: absolute;
  background: radial-gradient(
    circle at 38% 32%,
    rgba(53, 73, 156, 0.14),
    rgba(53, 73, 156, 0.04)
  );
  border: 1px solid rgba(53, 73, 156, 0.14);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: dropFloat linear infinite;
}

.drop-1 {
  width: 14px;
  height: 20px;
  top: 6%;
  right: 4%;
  animation-duration: 4.5s;
  animation-delay: -0.5s;
}
.drop-2 {
  width: 10px;
  height: 15px;
  top: 28%;
  left: 2%;
  animation-duration: 5.5s;
  animation-delay: -2.5s;
}
.drop-3 {
  width: 18px;
  height: 25px;
  bottom: 8%;
  right: 6%;
  animation-duration: 6.5s;
  animation-delay: -1.2s;
}
.drop-4 {
  width: 8px;
  height: 12px;
  bottom: 32%;
  left: -1%;
  animation-duration: 3.8s;
  animation-delay: -3.5s;
}

@keyframes dropFloat {
  0%,
  100% {
    transform: translateY(-4px) scale(1);
    opacity: 0.65;
  }
  50% {
    transform: translateY(4px) scale(1.12);
    opacity: 1;
  }
}

/* ── Onda de água na base ── */

.hero-wave {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  margin-top: auto;
}

.wave-static {
  display: block;
  width: 100%;
  height: 100px;
  position: relative;
  z-index: 2;
}

.wave-anim-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  width: 200%;
  height: 55px;
  z-index: 1;
  animation: waveScroll 7s linear infinite;
}

.wave-anim-svg {
  flex: 0 0 50%;
  width: 50%;
  height: 100%;
  display: block;
}

@keyframes waveScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── Responsividade Hero — Tablet ── */

@media (max-width: 1100px) {
  .hero-container {
    gap: 2.5rem;
    padding: 4rem 2rem 6rem;
  }

  .float-fresh {
    left: -4%;
  }
  .float-time {
    right: -4%;
  }
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    padding: 3.5rem 2rem 5rem;
    gap: 3rem;
  }

  .hero-content {
    max-width: 560px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    animation-name: heroFadeIn;
  }

  .hero-description {
    max-width: 100%;
  }
  .hero-stats {
    margin: 0 auto;
  }
  .van-card {
    margin: 0 auto;
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    animation-name: heroFadeIn;
  }

  .visual-wrapper {
    max-width: 420px;
    margin: 0 auto;
  }

  .float-fresh {
    left: 0;
    top: -8%;
  }
  .float-time {
    right: 0;
    bottom: -8%;
  }
}

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

/* ── Responsividade Hero — Mobile ── */

@media (max-width: 640px) {
  .hero-container {
    padding: 3rem 1.25rem 4rem;
    gap: 2.5rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 1rem;
    padding: 0.875rem 1.25rem;
  }

  .van-img-wrap {
    width: 120px;
  }

  .visual-wrapper {
    max-width: 320px;
    aspect-ratio: 1 / 1;
  }

  .float-fresh,
  .float-time {
    transform: scale(0.88);
  }

  .float-fresh {
    left: -4%;
    top: -10%;
  }
  .float-time {
    right: -4%;
    bottom: -10%;
  }

  .wave-static {
    height: 65px;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 1.9rem;
  }
  .hero-badge {
    font-size: 0.72rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
  }

  .stat-divider {
    display: none;
  }

  .van-card {
    flex-direction: column;
    text-align: center;
  }

  .float-fresh,
  .float-time {
    display: none;
  }
}

.section {
  padding: 5rem 0;
}

.section h2 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 2rem;
}

.section--cta-final h2 {
  color: #fff;
}

.cta-final__title {
  color: #fff;
}

.section p {
  color: var(--gray-600);
}

.section--laundry-process .process-card__desc {
  color: rgba(255, 255, 255, 0.9);
}

.section--laundry-process .process-card__title {
  color: #fff;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .navbar-container {
    padding: 0 1.5rem;
  }

  .nav-links {
    gap: 0.25rem;
  }

  .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.9375rem;
  }

  .cta-button {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--white);
    overflow: hidden;
    transition: height var(--transition-base);
    box-shadow: var(--shadow-md);
    margin: 0;
    padding: 0;
    display: block;
  }

  .navbar-menu.active {
    height: calc(100vh - var(--navbar-height));
    overflow-y: auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 2rem 0;
    gap: 1rem;
  }

  .nav-item {
    width: 100%;
    text-align: center;
  }

  .nav-link {
    display: block;
    padding: 1rem;
    font-size: 1.125rem;
    width: 100%;
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-link:hover::after {
    display: none;
  }

  .navbar-cta {
    margin-right: 1rem;
  }

  .cta-button span {
    display: none;
  }

  .cta-button {
    padding: 0.625rem;
    border-radius: 50%;
    aspect-ratio: 1;
  }

  .whatsapp-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .navbar-container {
    padding: 0 1rem;
  }

  .brand-text {
    font-size: 1.25rem;
  }

  .brand-icon {
    font-size: 1.5rem;
  }
}

/* ============================================
   ANIMAÇÕES ADICIONAIS
   ============================================ */

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

.navbar {
  animation: fadeInDown 0.5s ease;
}

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

/* ============================================
   HERO — MELHORIAS VISUAIS
   ============================================ */

/* ── Orbe decorativo de fundo ── */
.hero-bg-orb {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70vw;
  max-width: 820px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(53, 73, 156, 0.08) 0%,
    rgba(99, 102, 241, 0.05) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* ── Título com gradiente na palavra de destaque ── */
.title-accent {
  background: linear-gradient(130deg, #35499c 0%, #5b73d4 45%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* fallback override */
}

/* O sublinhado ondulado mantém cor azul principal */
.title-accent::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 6'%3E%3Cpath d='M0 3 Q15 0 30 3 Q45 6 60 3' stroke='%235b73d4' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  opacity: 0.55;
}

/* ── Pills de features ── */
.hero-features {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.hero-feature {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-family: var(--font-secondary);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: default;
}

.hero-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-feature--green {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.hero-feature--blue {
  background: #eef2ff;
  color: var(--primary-color);
  border: 1px solid rgba(53, 73, 156, 0.18);
}

.hero-feature--amber {
  background: #fffbeb;
  color: #d97706;
  border: 1px solid rgba(217, 119, 6, 0.2);
}

/* ── CTA principal: efeito shimmer/brilho ── */
.hero-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: btnShimmer 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 10;
}

@keyframes btnShimmer {
  0% {
    left: -100%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  50% {
    left: 160%;
    opacity: 1;
  }
  51% {
    opacity: 0;
  }
  100% {
    left: 160%;
    opacity: 0;
  }
}

/* ── Anel decorativo na coluna visual ── */
.visual-ring {
  position: absolute;
  inset: -18%;
  z-index: 0;
  pointer-events: none;
  animation: ringRotate 40s linear infinite;
}

.visual-ring svg {
  width: 100%;
  height: 100%;
}

@keyframes ringRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ── Frame da imagem: formato circular (squircle) ── */
.visual-wrapper {
  aspect-ratio: 1 / 1; /* quadrado para imagem circular */
}

.visual-image-frame {
  border-radius: 50%;
  box-shadow:
    0 0 0 6px rgba(53, 73, 156, 0.07),
    0 0 0 14px rgba(53, 73, 156, 0.04),
    0 28px 70px rgba(53, 73, 156, 0.25),
    0 8px 22px rgba(0, 0, 0, 0.1);
}

/* Brilho suave que percorre a imagem */
.visual-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.18) 0%,
    transparent 55%
  );
  z-index: 3;
  pointer-events: none;
}

/* ── Onda de 3 camadas ── */
.hero-wave {
  height: auto;
  position: relative;
}

/* Camada de fundo animada (azul suave, mais lenta) */
.wave-anim-deep {
  animation-duration: 12s !important;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  opacity: 0.8;
}

/* Camada média estática */
.wave-mid {
  position: relative;
  z-index: 1;
  height: 80px;
  display: block;
  width: 100%;
}

/* Onda estática principal (branca) */
.wave-static {
  position: relative;
  z-index: 2;
  height: 80px;
}

/* Onda animada (shimmer, no topo) */
.wave-anim-wrap {
  z-index: 3;
}

/* ── Ajustes de responsividade para novas features ── */
@media (max-width: 900px) {
  .hero-features {
    justify-content: center;
  }

  .visual-ring {
    inset: -12%;
  }
}

@media (max-width: 640px) {
  .hero-features {
    gap: 0.5rem;
  }

  .hero-feature {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
  }

  .visual-wrapper {
    max-width: 280px;
    aspect-ratio: 1 / 1;
  }

  .visual-ring {
    inset: -8%;
  }
}

@media (max-width: 400px) {
  .hero-features {
    gap: 0.35rem;
  }
}

/* ── Efeito hover nos cartões flutuantes ── */
.float-card {
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.float-card:hover {
  transform: translateY(-4px) scale(1.03) !important;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.14),
    0 4px 10px rgba(0, 0, 0, 0.08) !important;
}

/* ── Animação de entrada do van-card mais elegante ── */
.van-card {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(238, 242, 255, 0.7) 100%
  );
  border: 1px solid rgba(53, 73, 156, 0.12);
  backdrop-filter: blur(6px);
}

/* ── Badge melhorado ── */
.hero-badge {
  background: linear-gradient(
    135deg,
    rgba(53, 73, 156, 0.08) 0%,
    rgba(99, 102, 241, 0.06) 100%
  );
  border: 1px solid rgba(53, 73, 156, 0.15);
  box-shadow: 0 2px 10px rgba(53, 73, 156, 0.08);
}

/* Focus states para acessibilidade */
.nav-link:focus,
.cta-button:focus,
.hamburger:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.hamburger:focus {
  outline-offset: 4px;
}

/* ============================================
   NOVAS VARIÁVEIS DE DESIGN SYSTEM
   ============================================ */

:root {
  --color-primary: #35499c;
  --color-primary-dark: #1e2f6e;
  --color-accent: #4fc3f7;
  --color-surface: #f8faff;
  --color-dark: #0d1b2a;
  --color-muted: #6b7a99;
  --font-heading: "Plus Jakarta Sans", sans-serif;
  --font-body: "Inter", sans-serif;
}

/* ============================================
   ANIMAÇÕES DE ENTRADA (REVEAL)
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================
   BOTÕES GLOBAIS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 14px rgba(53, 73, 156, 0.3);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(53, 73, 156, 0.4);
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-dark);
  border-color: var(--color-accent);
  box-shadow: 0 4px 14px rgba(79, 195, 247, 0.35);
}

.btn--accent:hover {
  background: #29b6f6;
  border-color: #29b6f6;
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn--white:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* ============================================
   SECTIONS GLOBAIS
   ============================================ */

.section {
  padding: 5rem 0;
}

.section--light {
  background: var(--color-surface);
}

.section--dark {
  background: var(--color-dark);
  color: #fff;
}

.section--rfid-highlight {
  background: linear-gradient(135deg, #0a1628 0%, #132040 40%, #1a2d6e 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.section--rfid-highlight::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(79, 195, 247, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.section--rfid-highlight .section-eyebrow {
  color: #67d4ff;
  background: rgba(79, 195, 247, 0.12);
}

.section--cta-final {
  background: linear-gradient(135deg, #0a1628 0%, #132040 40%, #1a2d6e 100%);
  position: relative;
  overflow: hidden;
}

.section--cta-final::before {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(53, 73, 156, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.section--cta-final::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(79, 195, 247, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(53, 73, 156, 0.08);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.section-eyebrow--light {
  color: var(--color-accent);
  background: rgba(79, 195, 247, 0.12);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title--white {
  color: #fff;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--color-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section--dark .section-subtitle,
.section--rfid-highlight .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.section--dark .section-title,
.section--rfid-highlight .section-title {
  color: #fff;
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================
   GRID
   ============================================ */

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

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

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

/* ============================================
   PAGE HERO (páginas internas)
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, #f0f4ff 0%, var(--color-surface) 100%);
  padding: 7rem 0 4rem;
  border-bottom: 1px solid #e8eeff;
}

.page-hero--dark {
  background: linear-gradient(
    135deg,
    var(--color-dark) 0%,
    var(--color-primary-dark) 100%
  );
  color: #fff;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.2;
  margin: 1rem 0;
}

.page-hero--dark .page-hero__title {
  color: #fff;
}

.page-hero__desc {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--color-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-top: 0.75rem;
}

.page-hero--dark .page-hero__desc {
  color: rgba(255, 255, 255, 0.75);
}

.title-accent {
  color: var(--color-primary);
}

.page-hero--dark .title-accent {
  color: #67d4ff;
}

.page-hero--dark .breadcrumb {
  color: rgba(255, 255, 255, 0.55);
}

.page-hero--dark .breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
}

.page-hero--dark .breadcrumb a:hover {
  color: #fff;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-muted);
}

.breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ============================================
   SEGMENT CARDS
   ============================================ */

.segment-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8eeff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: var(--color-dark);
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(53, 73, 156, 0.06);
}

.segment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(53, 73, 156, 0.14);
  border-color: var(--color-primary);
}

.segment-card__icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.segment-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.segment-card p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.6;
  flex: 1;
}

.segment-card__link {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* ============================================
   SERVICE CARDS (index.html summary)
   ============================================ */

.service-card {
  background: #fff;
  border: 1px solid rgba(53, 73, 156, 0.06);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 20px rgba(53, 73, 156, 0.06);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(53, 73, 156, 0.13);
}

.service-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.service-card h3 {
  font-family: var(--font-primary);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  padding: 1.25rem 1.5rem 0;
}

.service-card p {
  font-family: var(--font-secondary);
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.65;
  padding: 0 1.5rem 1.5rem;
}

/* ============================================
   SERVICE DETAIL — V2 CARD GRID (servicos.html)
   ============================================ */

.services-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, #fff 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card-v2 {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(53, 73, 156, 0.07);
  border: 1px solid rgba(53, 73, 156, 0.06);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card-v2:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 48px rgba(53, 73, 156, 0.14),
    0 8px 16px rgba(53, 73, 156, 0.06);
}

/* Image */
.service-card-v2__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-card-v2__image-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(53, 73, 156, 0.08), transparent);
  pointer-events: none;
  z-index: 1;
}

.service-card-v2__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card-v2:hover .service-card-v2__image {
  transform: scale(1.06);
}

/* Body */
.service-card-v2__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.75rem 1.75rem 2rem;
}

.service-card-v2__title {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.service-card-v2__desc {
  font-family: var(--font-secondary);
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}

/* Tags */
.service-card-v2__tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.service-card-v2__tags li {
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary-color);
  background: rgba(53, 73, 156, 0.06);
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.service-card-v2:hover .service-card-v2__tags li {
  background: rgba(53, 73, 156, 0.1);
}

/* Responsive: Tablet → 2 columns */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Responsive: Mobile → 1 column */
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-card-v2__body {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .service-card-v2__title {
    font-size: 1.125rem;
  }
}

/* ============================================
   QUALITY GRID
   ============================================ */

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.quality-item {
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8eeff;
  transition: all 0.3s ease;
}

.quality-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(53, 73, 156, 0.1);
}

.quality-item__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(53, 73, 156, 0.15);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.quality-item h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.quality-item p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.65;
}

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

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

/* ============================================
   RFID HIGHLIGHT
   ============================================ */

.rfid-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.rfid-highlight__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rfid-highlight__desc {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 520px;
}

.rfid-highlight__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 0.25rem;
}

.rfid-highlight__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.rfid-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(79, 195, 247, 0.15);
  color: #4fc3f7;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 1px;
}

.btn--rfid-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
  color: #0a1628;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(79, 195, 247, 0.25);
  align-self: flex-start;
  margin-top: 0.5rem;
}

.btn--rfid-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(79, 195, 247, 0.4);
  background: linear-gradient(135deg, #67d4ff 0%, #4fc3f7 100%);
}

.rfid-highlight__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rfid-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(79, 195, 247, 0.1);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.rfid-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(79, 195, 247, 0.15);
  pointer-events: none;
}

.rfid-image-wrapper:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(79, 195, 247, 0.2),
    0 0 40px rgba(79, 195, 247, 0.08);
}

.rfid-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@media (max-width: 992px) {
  .rfid-highlight {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .rfid-highlight__content {
    align-items: center;
  }
  .rfid-highlight__desc {
    max-width: 600px;
    margin: 0 auto;
  }
  .rfid-highlight__list {
    align-items: flex-start;
    max-width: 420px;
    margin: 0 auto;
  }
  .btn--rfid-cta {
    align-self: center;
  }
  .rfid-image-wrapper {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .rfid-highlight {
    gap: 2rem;
  }
  .rfid-image-wrapper {
    max-width: 100%;
    border-radius: 16px;
  }
  .rfid-image-wrapper::after {
    border-radius: 16px;
  }
  .btn--rfid-cta {
    width: 100%;
    justify-content: center;
    max-width: 360px;
  }
}

/* ============================================
   RFID — 4 PASSOS (CARDS COM IMAGEM)
   ============================================ */

.section--rfid-steps {
  background: var(--gray-50);
}

.rfid-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.rfid-step-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.rfid-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(53, 73, 156, 0.12);
}

.rfid-step-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.rfid-step-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.rfid-step-card:hover .rfid-step-card__image img {
  transform: scale(1.05);
}

.rfid-step-card__number {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--primary-color);
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 0.8125rem;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(53, 73, 156, 0.3);
}

.rfid-step-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.rfid-step-card__body h3 {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.4rem;
}

.rfid-step-card__body p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* Responsivo — RFID Steps */
@media (max-width: 1024px) {
  .rfid-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .rfid-steps-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ============================================
   PROCESSO DE LAVANDARIA
   ============================================ */

.section--laundry-process {
  position: relative;
  background: url("../images/how-works.jpg") center / cover no-repeat fixed;
  overflow: hidden;
  padding: 6rem 0;
}

.laundry-process-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(26, 38, 82, 0.88) 0%,
    rgba(53, 73, 156, 0.78) 40%,
    rgba(53, 73, 156, 0.72) 100%
  );
  z-index: 1;
}

.laundry-process-container {
  position: relative;
  z-index: 2;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.process-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.process-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.process-card:hover .process-card__icon {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.process-card__title {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.process-card__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 1);
  line-height: 1.55;
}

/* Responsivo — Processo */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .section--laundry-process {
    padding: 4rem 0;
  }
}

@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-card {
    padding: 1.5rem 1.25rem;
  }
}

/* ============================================
   HOW WORKS SECTION BACKGROUND
   ============================================ */

.section--how-works {
  position: relative;
  background: url("../images/how-works.jpg") center / cover no-repeat fixed;
  overflow: hidden;
}

.section--how-works::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(26, 38, 82, 0.88) 0%,
    rgba(53, 73, 156, 0.78) 40%,
    rgba(53, 73, 156, 0.72) 100%
  );
  z-index: 0;
}

.section--how-works > .container {
  position: relative;
  z-index: 1;
}

/* ============================================
   STEPPER
   ============================================ */

.stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.stepper__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 2rem 1.5rem 1.75rem;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.4s ease,
    box-shadow 0.4s ease;
}

.stepper__item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.32);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.stepper__number {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.stepper__connector {
  position: absolute;
  top: 82px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
  z-index: 0;
}

.stepper__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.stepper__icon svg {
  stroke: #fff;
}

.stepper__item:hover .stepper__icon {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  transform: scale(1.08);
}

.stepper__title {
  font-family: var(--font-primary);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.stepper__desc {
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .stepper {
    grid-template-columns: repeat(2, 1fr);
  }
  .stepper__connector {
    display: none;
  }
}

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

/* ============================================
   CTA FINAL (com formulário)
   ============================================ */

.cta-final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-final__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cta-final__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}

.cta-final__desc {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 480px;
}

.cta-final__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.cta-final__actions .btn--outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-final__actions .btn--outline-white svg {
  flex-shrink: 0;
}

.cta-final__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
}

.trust-item svg {
  color: rgba(79, 195, 247, 0.7);
  flex-shrink: 0;
}

/* ── Formulário dentro do CTA ── */

.cta-final__form {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.cta-final__form .form-group label {
  color: rgba(255, 255, 255, 0.85);
}

.cta-final__form .form-input,
.cta-final__form .form-select,
.cta-final__form .form-textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.cta-final__form .form-input::placeholder,
.cta-final__form .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cta-final__form .form-input:focus,
.cta-final__form .form-select:focus,
.cta-final__form .form-textarea:focus {
  border-color: #4fc3f7;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.15);
}

.cta-final__form .form-select {
  color: rgba(255, 255, 255, 0.6);
}

.cta-final__form .form-select option {
  background: #132040;
  color: #fff;
}

.cta-final__form .form-submit {
  background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
  color: #0a1628;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(79, 195, 247, 0.3);
}

.cta-final__form .form-submit:hover {
  background: linear-gradient(135deg, #67d4ff 0%, #4fc3f7 100%);
  box-shadow: 0 8px 32px rgba(79, 195, 247, 0.45);
}

.cta-final__form .form-success h3 {
  color: #fff;
}

.cta-final__form .form-success p {
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 992px) {
  .cta-final-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .cta-final__content {
    align-items: center;
  }
  .cta-final__desc {
    max-width: 560px;
    margin: 0 auto;
  }
  .cta-final__actions {
    justify-content: center;
  }
  .cta-final__trust {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .cta-final-grid {
    gap: 2rem;
  }
  .cta-final__form {
    padding: 1.75rem;
    border-radius: 20px;
  }
  .cta-final__form .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}

/* ── Footer Soap Bubbles ── */

.footer-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.footer-bubble {
  position: absolute;
  bottom: -20px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.35),
    rgba(79, 195, 247, 0.18) 60%,
    transparent 70%
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.08);
  animation: footerBubbleRise linear infinite;
  will-change: transform, opacity;
}

@keyframes footerBubbleRise {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  50% {
    transform: translateY(-50vh) translateX(15px) scale(0.85);
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) translateX(-10px) scale(0.5);
    opacity: 0;
  }
}

.footer-container {
  position: relative;
  z-index: 1;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-col--brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo-link {
  display: inline-block;
}

.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-contact {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

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

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ============================================
   TABS (segmentos.html)
   ============================================ */

.tabs__nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid #e0e7ff;
  background: #fff;
  color: var(--color-muted);
  transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.tab-btn.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 14px rgba(53, 73, 156, 0.3);
}

.tab-panel {
  display: none;
  animation: tabFadeIn 0.4s ease;
}

.tab-panel.active {
  display: block;
}

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

.segment-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: #fff;
  border: 1px solid #e8eeff;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 4px 24px rgba(53, 73, 156, 0.08);
}

.segment-detail__body h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.segment-detail__pains,
.segment-detail__benefits {
  margin-bottom: 1.5rem;
}

.segment-detail__pains h4,
.segment-detail__benefits h4 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.segment-detail__pains ul,
.segment-detail__benefits ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.segment-detail__pains ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-muted);
}

.segment-detail__pains ul li::before {
  content: "·";
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.segment-detail__benefits ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-dark);
  font-weight: 500;
}

.segment-detail__benefits ul li::before {
  content: "✓";
  color: #059669;
  font-weight: 700;
  flex-shrink: 0;
}

.segment-detail__impact {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  border-radius: 16px;
  border-left: 4px solid var(--color-primary);
}

.segment-detail__impact p {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
}

.segment-detail__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.segment-detail__icon-large {
  font-size: 5rem;
  line-height: 1;
}

.segment-detail__solution {
  background: #1e2d42;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 1.5rem;
  width: 100%;
}

.segment-detail__solution h4 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.segment-detail__solution p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .segment-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.case-card {
  background: #fff;
  border: 1px solid #e8eeff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(53, 73, 156, 0.06);
  transition: all 0.3s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(53, 73, 156, 0.12);
}

.case-card__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.case-card__label {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.5;
}

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

/* ============================================
   RFID STEPPER + BENEFIT CARDS + DASHBOARD
   ============================================ */

.rfid-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.rfid-intro__content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.rfid-intro__content p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.rfid-intro__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.rfid-stepper {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.rfid-stepper__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  position: relative;
}

.rfid-stepper__item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 39px;
  top: 70px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--color-primary) 0%,
    rgba(53, 73, 156, 0.2) 100%
  );
}

.rfid-stepper__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(53, 73, 156, 0.3);
}

.rfid-stepper__content h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.375rem;
  padding-top: 0.75rem;
}

.rfid-stepper__content p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.65;
}

.benefit-card {
  background: #fff;
  border: 1px solid #e8eeff;
  border-radius: 16px;
  padding: 1.75rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(53, 73, 156, 0.05);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(53, 73, 156, 0.12);
  border-color: var(--color-primary);
}

.benefit-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--color-primary);
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.dashboard-mockup {
  background: var(--color-dark);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-mockup__bar {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-mockup__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dashboard-mockup__dot--red {
  background: #ff5f57;
}
.dashboard-mockup__dot--yellow {
  background: #ffbd2e;
}
.dashboard-mockup__dot--green {
  background: #28ca41;
}

.dashboard-mockup__title {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 0.5rem;
}

.dashboard-mockup__body {
  padding: 1.5rem;
}

.dashboard-mockup__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dashboard-stat {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-stat__value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #67d4ff;
}

.dashboard-stat__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.dashboard-mockup__table {
  width: 100%;
  border-collapse: collapse;
}

.dashboard-mockup__table th {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.5rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-mockup__table td {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.625rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.status-badge {
  display: inline-block;
  padding: 0.2rem 0.625rem;
  border-radius: 50px;
  font-size: 0.6875rem;
  font-weight: 600;
}

.status-badge--ok {
  background: rgba(40, 202, 65, 0.2);
  color: #28ca41;
}
.status-badge--washing {
  background: rgba(79, 195, 247, 0.2);
  color: var(--color-accent);
}
.status-badge--transit {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid #e8eeff;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(53, 73, 156, 0.04);
}

.faq-item.open {
  border-color: rgba(53, 73, 156, 0.3);
  box-shadow: 0 4px 20px rgba(53, 73, 156, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-question span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
}

.faq-question__arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(53, 73, 156, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  color: var(--color-primary);
}

.faq-item.open .faq-question__arrow {
  background: var(--color-primary);
  color: #fff;
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer__inner {
  padding: 0 1.5rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* ============================================
   SOBRE — TIMELINE
   ============================================ */

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--color-primary) 0%,
    rgba(53, 73, 156, 0.1) 100%
  );
  transform: translateX(-50%);
}

.timeline__item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.timeline__item:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline__item:nth-child(even) .timeline__content {
  text-align: right;
}

.timeline__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(53, 73, 156, 0.2);
  flex-shrink: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0.25rem;
  z-index: 1;
}

.timeline__content {
  width: calc(50% - 2rem);
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #e8eeff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(53, 73, 156, 0.06);
  transition: all 0.3s ease;
}

.timeline__item:nth-child(even) .timeline__content {
  margin-left: auto;
}

.timeline__content:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(53, 73, 156, 0.12);
}

.timeline__year {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--color-primary);
  background: rgba(53, 73, 156, 0.08);
  padding: 0.2rem 0.625rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
  letter-spacing: 0.06em;
}

.timeline__content h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.375rem;
}

.timeline__content p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }
  .timeline__item,
  .timeline__item:nth-child(even) {
    flex-direction: row;
  }
  .timeline__dot {
    left: 20px;
  }
  .timeline__content,
  .timeline__item:nth-child(even) .timeline__content {
    width: calc(100% - 60px);
    margin-left: 60px;
    text-align: left;
  }
}

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

.mission-card {
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.mission-card--primary {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
}

.mission-card--light {
  background: var(--color-surface);
  border: 1px solid #e8eeff;
}

.mission-card--accent {
  background: linear-gradient(135deg, #0d1b2a, #1a2c4e);
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(53, 73, 156, 0.2);
}

.mission-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.mission-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.mission-card--primary h3,
.mission-card--accent h3 {
  color: #fff;
}
.mission-card--light h3 {
  color: var(--color-dark);
}

.mission-card p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.mission-card--primary p,
.mission-card--accent p {
  color: rgba(255, 255, 255, 0.8);
}
.mission-card--light p {
  color: var(--color-muted);
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: #fff;
  border: 1px solid #e8eeff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(53, 73, 156, 0.06);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(53, 73, 156, 0.12);
}

.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 1rem;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-muted);
}

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

.certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.5rem;
  background: #fff;
  border: 1px solid #e0e7ff;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(53, 73, 156, 0.08);
  transition: all 0.3s ease;
}

.cert-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(53, 73, 156, 0.15);
  border-color: var(--color-primary);
}

.cert-badge__icon {
  font-size: 1.5rem;
}

/* ============================================
   CONTACTO
   ============================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  background: #fff;
  border: 1px solid #e8eeff;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(53, 73, 156, 0.08);
}

.contact-form h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.contact-form > p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}

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

.form-input,
.form-select,
.form-textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid #e0e7ff;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-dark);
  background: var(--color-surface);
  transition: all 0.3s ease;
  outline: none;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(53, 73, 156, 0.1);
}

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

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(53, 73, 156, 0.3);
}

.form-submit:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(53, 73, 156, 0.4);
}

/* RGPD / Privacy checkbox */
.form-group--checkbox {
  margin-top: 0.5rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-body);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
  cursor: pointer;
  flex-shrink: 0;
}

.form-checkbox a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 500;
}

.form-checkbox a:hover {
  color: var(--color-primary-dark);
}

.form-rgpd {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-muted);
  line-height: 1.4;
}

.form-rgpd a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Privacy policy page */
.privacy-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 2.5rem 0 1rem;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-dark);
  margin: 1.5rem 0 0.5rem;
}

.privacy-content p {
  margin-bottom: 1rem;
}

.privacy-content a {
  color: var(--color-primary);
  text-decoration: underline;
}

.privacy-content a:hover {
  color: var(--color-primary-dark);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success.visible {
  display: block;
}

.form-success__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.form-success p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info__card {
  background: #fff;
  border: 1px solid #e8eeff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(53, 73, 156, 0.06);
}

.contact-info__card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1.25rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f4ff;
}

.contact-detail:last-child {
  border-bottom: none;
}

.contact-detail__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(53, 73, 156, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-detail__text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.125rem;
}

.contact-detail__text span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-muted);
}

.map-placeholder {
  width: 100%;
  height: 200px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px dashed #c7d2fe;
}

.map-placeholder__pin {
  font-size: 2.5rem;
}

.contact-quick-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

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

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.whatsapp-float.visible {
  opacity: 1;
  transform: scale(1);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* ============================================
   MOBILE NAVBAR MENU
   ============================================ */

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    background: #fff;
    padding: 1.5rem 2rem;
    border-top: 1px solid #e8eeff;
    box-shadow: 0 10px 30px rgba(53, 73, 156, 0.1);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    z-index: 999;
  }

  .navbar-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
  }
  .nav-link {
    padding: 0.75rem 0;
    width: 100%;
  }
  .navbar-cta {
    display: none;
  }
}
