/* ==========================================================================
   Hidrolux Projetos — Design tokens (identidade visual do site original)
   ========================================================================== */
:root {
  --navy-900: #0e2438;
  --navy-800: #102b45;
  --navy-700: #14385a;
  --cyan-600: #1a9eb4;
  --cyan-500: #23b5cc;
  --cyan-400: #43c6d8;
  --cyan-300: #6fd6e3;
  --aqua-100: #cdeef3;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --whatsapp: #25d366;

  --brand-gradient: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 45%, var(--cyan-600) 100%);
  --shadow-brand: 0 18px 40px -18px rgba(20, 56, 90, 0.45);
  --shadow-soft: 0 10px 30px -20px rgba(14, 36, 56, 0.4);

  --font-display: "Poppins", "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--navy-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 640px) { .container { padding-inline: 32px; } }
@media (min-width: 1024px) { .container { padding-inline: 48px; } }

.section { padding-block: 96px; }
@media (min-width: 640px) { .section { padding-block: 112px; } }
.section--tight { padding-block: 80px; }
.bg-white { background: var(--white); }
.bg-slate { background: var(--slate-50); }
.bg-brand { background: var(--brand-gradient); color: var(--white); position: relative; overflow: hidden; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan-600);
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; }
.bg-brand .eyebrow, .eyebrow--light { color: var(--cyan-300); }

.section-head { max-width: 640px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  margin-top: 12px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
@media (min-width: 640px) { .section-head h2 { font-size: 2.25rem; } }
.section-head p {
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(14, 36, 56, 0.7);
}
.bg-brand .section-head p { color: rgba(205, 238, 243, 0.85); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 14px 28px;
  font-size: 1rem;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-primary { background: var(--cyan-500); color: var(--white); box-shadow: 0 10px 25px -10px rgba(35, 181, 204, 0.8); }
.btn-primary:hover { background: var(--cyan-600); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.25); color: var(--white); background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-white { background: var(--white); color: var(--navy-800); }
.btn-white:hover { background: var(--aqua-100); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { filter: brightness(0.95); }
.btn-block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled { background: var(--navy-900); box-shadow: var(--shadow-brand); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 48px; width: 48px; border-radius: 12px; object-fit: contain; background: var(--white); }
.brand-text { display: none; font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; line-height: 1; color: var(--white); }
.brand-text small { display: block; margin-top: 2px; font-size: 10px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.brand-text .accent { color: var(--cyan-300); }
@media (min-width: 640px) { .brand-text { display: block; } }

.main-nav { display: none; align-items: center; gap: 32px; }
@media (min-width: 1024px) { .main-nav { display: flex; } }
.main-nav a {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--cyan-300); }
.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: block; } }

.menu-toggle {
  position: relative;
  z-index: 60;
  display: flex;
  flex-direction: column;
  height: 44px;
  width: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: transparent;
  border: none;
  color: var(--white);
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle span { display: block; width: 24px; height: 2px; background: currentColor; margin: 3px 0; transition: transform 0.3s ease, opacity 0.2s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav.is-open { opacity: 1; pointer-events: auto; }
@media (min-width: 1024px) { .mobile-nav { display: none; } }
.mobile-nav-inner { display: flex; flex-direction: column; justify-content: center; gap: 8px; height: 100%; padding-inline: 32px; }
.mobile-nav a { padding-block: 16px; border-bottom: 1px solid var(--slate-50); font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--navy-900); }
.mobile-nav .btn { margin-top: 24px; align-self: flex-start; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding-top: 128px;
  padding-bottom: 96px;
}
@media (min-width: 640px) { .hero { padding-top: 168px; padding-bottom: 128px; } }
.hero .glow {
  position: absolute;
  right: -96px;
  top: -96px;
  height: 384px;
  width: 384px;
  border-radius: 50%;
  background: rgba(67, 198, 216, 0.2);
  filter: blur(90px);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 760px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--aqua-100);
}
.hero h1 {
  margin-top: 24px;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.5rem; } }
.hero h1 .accent { color: var(--cyan-300); }
.hero-lead {
  margin-top: 24px;
  max-width: 560px;
  font-size: 1.125rem;
  line-height: 1.625;
  color: rgba(205, 238, 243, 0.85);
}
.hero-actions { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }

/* Stats */
.stats-wrap { position: relative; z-index: 10; margin-top: -48px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--slate-50);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-brand);
}
@media (max-width: 639px) { .stats-grid { grid-template-columns: 1fr; } }
.stat-card { background: var(--white); padding: 32px 24px; text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--navy-700), var(--cyan-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (min-width: 640px) { .stat-number { font-size: 2.25rem; } }
.stat-label { margin-top: 8px; font-size: 0.875rem; font-weight: 500; color: rgba(14, 36, 56, 0.6); }

/* ==========================================================================
   Services
   ========================================================================== */
.services-grid { margin-top: 56px; display: grid; gap: 24px; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  height: 100%;
  border-radius: 16px;
  border: 1px solid var(--slate-50);
  background: var(--white);
  padding: 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(67, 198, 216, 0.4); box-shadow: var(--shadow-brand); }
.service-icon {
  display: flex;
  height: 56px;
  width: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--aqua-100);
  color: var(--cyan-600);
  transition: background 0.3s ease, color 0.3s ease;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card:hover .service-icon { background: var(--cyan-500); color: var(--white); }
.service-card h3 { margin-top: 20px; font-size: 1.125rem; font-weight: 700; }
.service-card p { margin-top: 12px; font-size: 0.875rem; line-height: 1.625; color: rgba(14, 36, 56, 0.65); }

/* ==========================================================================
   Projects
   ========================================================================== */
.section-head-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
@media (min-width: 640px) { .section-head-row { flex-direction: row; align-items: flex-end; } }
.carousel-hint { margin-top: 12px; font-size: 0.875rem; color: rgba(14,36,56,0.5); }
.carousel-hint svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 4px; }
.carousel-wrap { position: relative; margin-top: 32px; }
.carousel { overflow-x: auto; overflow-y: hidden; scroll-snap-type: x proximate; scrollbar-width: none; -ms-overflow-style: none; }
.carousel::-webkit-scrollbar { display: none; }
.carousel-track { display: flex; gap: 20px; padding: 4px 4px 16px; }
.carousel-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 250px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--navy-800);
  border: none;
  padding: 0;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 640px) { .carousel-card { width: 290px; } }
.carousel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-brand); }
.carousel-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.carousel-card:hover img { transform: scale(1.06); }
.carousel-card .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  text-align: left;
  background: linear-gradient(to top, rgba(14,36,56,0.88) 0%, rgba(14,36,56,0.35) 45%, transparent 75%);
}
.carousel-card h3 { color: var(--white); font-size: 1.0625rem; font-weight: 700; line-height: 1.25; }
.carousel-card .loc { margin-top: 4px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; color: var(--cyan-300); }
.carousel-card .expand {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  height: 32px;
  width: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
  color: var(--white);
}
.carousel-card .expand svg { width: 16px; height: 16px; }
.carousel-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  height: 44px;
  width: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--navy-900);
  box-shadow: var(--shadow-brand);
}
@media (min-width: 900px) { .carousel-arrow { display: flex; } }
.carousel-arrow svg { width: 20px; height: 20px; }
.carousel-arrow.prev { left: -22px; }
.carousel-arrow.next { right: -22px; }
.disclaimer { margin-top: 32px; text-align: center; font-size: 0.75rem; color: rgba(14, 36, 56, 0.4); }

/* Project modal (lightbox) */
.project-modal { position: fixed; inset: 0; z-index: 70; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; }
.project-modal.is-open { opacity: 1; pointer-events: auto; }
.project-modal-backdrop { position: absolute; inset: 0; background: rgba(14,36,56,0.7); backdrop-filter: blur(2px); }
.project-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-brand);
  display: flex;
  flex-direction: column;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s ease;
}
.project-modal.is-open .project-modal-panel { transform: translateY(0) scale(1); }
@media (min-width: 768px) { .project-modal-panel { flex-direction: row; } }
.project-modal-image { flex: 0 0 auto; }
@media (min-width: 768px) { .project-modal-image { width: 45%; } }
.project-modal-image img { width: 100%; height: 100%; max-height: 40vh; object-fit: cover; }
@media (min-width: 768px) { .project-modal-image img { max-height: 88vh; } }
.project-modal-body { padding: 28px; flex: 1; }
.project-modal-body .project-chips { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 6px; }
.project-modal-body .project-chip { font-size: 0.75rem; font-weight: 600; color: var(--navy-800); background: var(--slate-50); border-radius: 999px; padding: 4px 10px; }
.project-modal-body h3 { font-size: 1.375rem; font-weight: 700; }
.project-modal-body .loc { margin-top: 6px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; color: var(--cyan-600); }
.project-modal-body .desc { margin-top: 16px; font-size: 0.9375rem; line-height: 1.65; color: rgba(14, 36, 56, 0.75); }
.project-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  height: 36px;
  width: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: rgba(14,36,56,0.6);
  color: var(--white);
}
@media (min-width: 768px) { .project-modal-close { background: rgba(255,255,255,0.85); color: var(--navy-900); } }

/* ==========================================================================
   Onde atuamos / map
   ========================================================================== */
.atuacao-grid { display: grid; gap: 56px; align-items: center; }
@media (min-width: 1024px) { .atuacao-grid { grid-template-columns: repeat(2, 1fr); } }
.atuacao-stats { margin-top: 40px; display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 639px) { .atuacao-stats { grid-template-columns: 1fr; } }
.atuacao-stat {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  padding: 20px;
  text-align: center;
}
@media (min-width: 640px) { .atuacao-stat { text-align: left; } }
.atuacao-stat .num { font-family: var(--font-display); font-size: 2.25rem; font-weight: 800; line-height: 1; color: var(--cyan-300); }
.atuacao-stat .lbl { margin-top: 8px; font-size: 0.875rem; color: rgba(205,238,243,0.75); }

.map-wrap { position: relative; margin-inline: auto; aspect-ratio: 1 / 1; width: 100%; max-width: 34rem; }
.map-wrap svg { width: 100%; height: 100%; filter: drop-shadow(0 18px 30px rgba(14,36,56,0.18)); }
.map-pin { position: absolute; transform: translate(-50%, -50%); z-index: 10; }
.map-pin button { position: relative; display: block; background: none; border: none; padding: 0; }
.map-pin .dot { position: relative; display: block; height: 12px; width: 12px; border-radius: 50%; background: var(--cyan-500); box-shadow: 0 0 0 4px rgba(67,198,216,0.35); border: 2px solid var(--white); transition: transform 0.2s ease; }
.map-pin.is-hq .dot { height: 18px; width: 18px; background: var(--cyan-300); }
.map-pin.is-hq .ping { position: absolute; left: 50%; top: 50%; height: 20px; width: 20px; transform: translate(-50%,-50%); border-radius: 50%; background: rgba(111,214,227,0.7); animation: ping 1.6s cubic-bezier(0,0,0.2,1) infinite; }
.map-pin:hover .dot { transform: scale(1.25); }
.map-tip {
  pointer-events: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-bottom: 8px;
  width: max-content;
  max-width: 12rem;
  transform: translateX(-50%) scale(0.95);
  border-radius: 8px;
  background: var(--navy-900);
  padding: 8px 12px;
  text-align: left;
  opacity: 0;
  box-shadow: var(--shadow-brand);
  transition: all 0.15s ease;
}
.map-pin:hover .map-tip { opacity: 1; transform: translateX(-50%) scale(1); }
.map-tip p { font-size: 0.75rem; font-weight: 700; line-height: 1.2; color: var(--white); }
.map-tip p.uf { margin-top: 2px; font-weight: 500; color: var(--cyan-300); }
@keyframes ping { 75%, 100% { transform: translate(-50%,-50%) scale(2); opacity: 0; } }

/* Google Maps embed (used standalone or inside .sobre-visual as a panel) */
.map-embed { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-brand); aspect-ratio: 4 / 3; background: var(--navy-800); }
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-embed--panel { border-radius: 24px; aspect-ratio: 4 / 5; box-shadow: 0 30px 60px -30px rgba(14,36,56,0.45); }
.map-caption { margin-top: 16px; display: flex; align-items: flex-start; gap: 8px; font-size: 0.875rem; color: rgba(205,238,243,0.8); }
.map-caption svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; color: var(--cyan-300); }
.map-caption.on-light { color: rgba(14,36,56,0.6); }
.map-caption.on-light svg { color: var(--cyan-600); }

/* ==========================================================================
   Clients marquee
   ========================================================================== */
.marquee { position: relative; overflow: hidden; margin-top: 48px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8% 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8% 92%, transparent); }
.marquee-track { width: max-content; display: flex; gap: 24px; padding-right: 24px; animation: marquee-scroll 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.client-card {
  display: flex;
  height: 110px;
  width: 220px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--slate-50);
  background: rgba(248, 250, 252, 0.6);
  padding: 16px 20px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.client-card:hover { border-color: rgba(67,198,216,0.4); background: var(--white); }
.client-card img { max-height: 70px; max-width: 100%; object-fit: contain; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   Sobre
   ========================================================================== */
.sobre-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .sobre-grid { grid-template-columns: repeat(2, 1fr); gap: 64px; } }
.sobre-text p { margin-top: 20px; font-size: 1rem; line-height: 1.625; color: rgba(14, 36, 56, 0.7); }
.sobre-list { margin-top: 40px; display: grid; gap: 16px; }
@media (min-width: 640px) { .sobre-list { grid-template-columns: repeat(2, 1fr); } }
.sobre-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 12px;
  background: var(--white);
  padding: 12px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(14,36,56,0.8);
  box-shadow: 0 8px 24px -18px rgba(14,36,56,0.4);
}
.sobre-list .check {
  margin-top: 2px;
  display: flex;
  height: 20px;
  width: 20px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cyan-500);
  color: var(--white);
}
.sobre-list .check svg { width: 12px; height: 12px; }

.sobre-visual { position: relative; }
.sobre-panel {
  border-radius: 24px;
  aspect-ratio: 4 / 5;
  background: var(--brand-gradient);
  box-shadow: 0 30px 60px -30px rgba(14,36,56,0.45);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sobre-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.sobre-panel .mark { position: relative; color: rgba(255,255,255,0.9); }
.sobre-panel .mark svg { width: 96px; height: 96px; }
.sobre-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  display: none;
  border-radius: 16px;
  background: var(--cyan-500);
  padding: 20px 24px;
  color: var(--white);
  box-shadow: var(--shadow-brand);
}
@media (min-width: 640px) { .sobre-badge { display: block; } }
.sobre-badge p:first-child { font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; line-height: 1; }
.sobre-badge p:last-child { margin-top: 4px; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.85); }
.sobre-badge2 {
  position: absolute;
  top: -20px;
  right: -16px;
  border-radius: 16px;
  background: var(--white);
  padding: 16px 20px;
  box-shadow: var(--shadow-brand);
}
.sobre-badge2 p:first-child { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; line-height: 1; color: var(--navy-900); }
.sobre-badge2 p:last-child { margin-top: 4px; font-size: 0.75rem; font-weight: 500; color: rgba(14,36,56,0.6); }

/* ==========================================================================
   Equipe
   ========================================================================== */
.team-list { margin-top: 64px; display: flex; flex-direction: column; gap: 64px; }
.team-member { display: flex; flex-direction: column; align-items: center; gap: 32px; }
@media (min-width: 768px) { .team-member { flex-direction: row; } .team-member.reverse { flex-direction: row-reverse; } }
.team-avatar-wrap { width: 100%; max-width: 320px; flex-shrink: 0; }
@media (min-width: 768px) { .team-avatar-wrap { width: 42%; max-width: none; } }
.team-avatar {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background: var(--brand-gradient);
  box-shadow: 0 20px 50px -25px rgba(14,36,56,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.team-avatar span { font-family: var(--font-display); font-size: 4rem; font-weight: 700; color: rgba(255,255,255,0.92); }
.team-info { flex: 1; text-align: center; }
@media (min-width: 768px) { .team-info { text-align: left; } }
.team-info h3 { font-size: 1.5rem; font-weight: 700; }
@media (min-width: 640px) { .team-info h3 { font-size: 1.875rem; } }
.team-role { margin-top: 8px; font-size: 1rem; font-weight: 600; color: var(--cyan-600); }
.team-info p.bio { margin-top: 20px; font-size: 1rem; line-height: 1.625; color: rgba(14,36,56,0.75); }
.team-info p.bio + p.bio { margin-top: 14px; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { text-align: center; }
.cta-band h2 { font-size: 1.875rem; font-weight: 700; }
@media (min-width: 640px) { .cta-band h2 { font-size: 2.25rem; } }
.cta-band p { margin: 12px auto 0; max-width: 32rem; color: rgba(205,238,243,0.85); }
.cta-band .btn { margin-top: 28px; }

/* ==========================================================================
   Contato
   ========================================================================== */
.contact-panel { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-brand); }
@media (min-width: 1024px) { .contact-panel { display: grid; grid-template-columns: repeat(2, 1fr); } }
.contact-info { position: relative; padding: 32px; }
@media (min-width: 640px) { .contact-info { padding: 48px; } }
.contact-list { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; font-size: 0.875rem; }
.contact-list .label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cyan-300); }
.contact-list .value { margin-top: 4px; display: block; line-height: 1.5; color: rgba(205,238,243,0.9); }
.contact-list a.value:hover { color: var(--white); }
.contact-info .btn { margin-top: 32px; }

.contact-form { background: var(--slate-50); padding: 32px; }
@media (min-width: 640px) { .contact-form { padding: 48px; } }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; margin-bottom: 6px; font-size: 0.875rem; font-weight: 500; color: rgba(14,36,56,0.8); }
.form-field label .req { color: var(--cyan-600); }
.form-field input, .form-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(20,56,90,0.15);
  background: var(--white);
  padding: 12px 16px;
  font-size: 0.875rem;
  color: var(--navy-900);
  font-family: inherit;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(14,36,56,0.35); }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--cyan-500); box-shadow: 0 0 0 3px rgba(35,181,204,0.2); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--brand-gradient); color: var(--white); }
.footer-grid { display: grid; gap: 48px; padding-block: 64px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 48px; width: 48px; border-radius: 12px; object-fit: contain; background: var(--white); }
.footer-brand span { font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; }
.footer-brand .accent { color: var(--cyan-300); }
.footer-col p.desc { margin-top: 16px; max-width: 20rem; font-size: 0.875rem; line-height: 1.625; color: rgba(205,238,243,0.8); }
.footer-social { margin-top: 24px; display: flex; gap: 12px; }
.footer-social a { display: flex; height: 40px; width: 40px; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.1); transition: background 0.2s ease; }
.footer-social a:hover { background: rgba(255,255,255,0.2); }
.footer-col h3 { font-family: var(--font-display); font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cyan-300); }
.footer-col ul { margin-top: 16px; display: flex; flex-direction: column; gap: 12px; font-size: 0.875rem; color: rgba(205,238,243,0.8); }
.footer-col ul a:hover, .footer-col a.value:hover { color: var(--white); }
.footer-col p.value { line-height: 1.625; }
.footer-col p.small { margin-top: 16px; font-size: 0.875rem; color: rgba(205,238,243,0.8); }
.footer-col .btn { margin-top: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-block: 24px;
  font-size: 0.75rem;
  color: rgba(205,238,243,0.6);
  text-align: center;
}
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; text-align: left; } }

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 40;
  display: flex;
  height: 56px;
  width: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 12px 30px -8px rgba(37,211,102,0.7);
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.06); }
.whatsapp-float svg { width: 28px; height: 28px; position: relative; }
.whatsapp-float .ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  opacity: 0.3;
  animation: ping 1.8s cubic-bezier(0,0,0.2,1) infinite;
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); }
.reveal.is-visible { animation: fade-up 0.7s cubic-bezier(0.22,1,0.36,1) forwards; }
@keyframes fade-up { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; animation: none; }
  .marquee-track { animation: none; }
}
