/* ═══════════════════════════════════════════
   IGOR PISCINAS — Design System
   Palette: extracted from logo.jpg
   Fonts: Syne (display) + DM Sans (body)
═══════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --blue:        #1565C0;
  --blue-dark:   #0d47a1;
  --blue-mid:    #1976D2;
  --blue-light:  #29B6F6;
  --blue-xlight: #e3f2fd;
  --navy:        #0c2a5e;
  --navy-deep:   #071a3a;
  --white:       #ffffff;
  --off-white:   #f0f6ff;
  --gray-50:     #f8fafd;
  --gray-100:    #eef2f8;
  --gray-200:    #dce6f4;
  --gray-500:    #7a93b8;
  --gray-700:    #3d5577;
  --gray-900:    #0f1e33;
  --green-wa:    #25d366;
  --green-wa-d:  #1da851;
  --red-alert:   #c0392b;
  --red-tint:    #fdf0ee;

  --font-display: 'Barlow Semi Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --ease-out:  cubic-bezier(.22,.68,0,1.2);
  --ease-in:   cubic-bezier(.4,0,1,1);
  --ease-circ: cubic-bezier(.19,1,.22,1);

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 36px;

  --shadow-sm:  0 1px 4px rgba(13,71,161,.08);
  --shadow-md:  0 6px 24px rgba(13,71,161,.14);
  --shadow-lg:  0 16px 48px rgba(13,71,161,.18);
  --shadow-glow:0 0 0 4px rgba(41,182,246,.25);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
strong { font-weight: 600; }

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

/* ── Layout ── */
.wrap {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform .2s var(--ease-out), box-shadow .2s, background .18s, opacity .2s;
  white-space: nowrap;
  line-height: 1;
  padding: 13px 26px;
}
.btn--lg { padding: 17px 34px; font-size: 1.02rem; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--wa {
  background: var(--green-wa);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,.32);
}
.btn--wa:hover { background: var(--green-wa-d); box-shadow: 0 8px 28px rgba(37,211,102,.44); }

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(21,101,192,.32);
}
.btn--primary:hover { background: var(--blue-dark); box-shadow: 0 8px 28px rgba(13,71,161,.42); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.55);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn--white {
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 0 4px 14px rgba(0,0,0,.14);
}
.btn--white:hover { box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px) saturate(1.6);
  -webkit-backdrop-filter: blur(14px) saturate(1.6);
  border-bottom: 1px solid rgba(21,101,192,.1);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(13,71,161,.12); }

.header__inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}

.header__logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .2s var(--ease-out);
}
.header__logo:hover img { transform: scale(1.05); }

.header__nav {
  display: none;
  gap: 28px;
  margin-left: auto;
}
.header__nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color .15s;
  position: relative;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--blue-light);
  border-radius: 2px;
  transition: width .25s var(--ease-circ);
}
.header__nav a:hover { color: var(--blue); }
.header__nav a:hover::after { width: 100%; }

@media (min-width: 768px) {
  .header__nav { display: flex; }
}

.header__cta { margin-left: auto; }
@media (min-width: 768px) { .header__cta { margin-left: 0; } }

.header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.header__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.header__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.open span:nth-child(2) { opacity: 0; }
.header__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 768px) { .header__burger, .header__cta:not(.header__cta) { display: none; } }
@media (min-width: 768px) { .header__burger { display: none; } }

.header__drawer {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease-circ);
  background: #fff;
  border-top: 1px solid var(--gray-100);
}
.header__drawer.open { max-height: 320px; }
.header__drawer a {
  padding: 14px 24px;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  transition: background .15s, color .15s;
}
.header__drawer a:hover { background: var(--blue-xlight); color: var(--blue); }
.header__drawer .btn--wa { margin: 16px 24px 20px; border-radius: 50px; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}
.hero__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.06);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.14) translate(-1%, -1%); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  /* Escuro no lado esquerdo (texto legível), transparente à direita (logo sobre a foto) */
  background: linear-gradient(
    to right,
    rgba(12,42,94,.88) 0%,
    rgba(12,42,94,.78) 40%,
    rgba(12,42,94,.18) 72%,
    rgba(12,42,94,.04) 100%
  );
}

/* Floating bubbles */
.bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.bubbles span {
  position: absolute;
  bottom: -60px;
  display: block;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  animation: rise linear infinite;
}
.bubbles span:nth-child(1)  { width:12px;height:12px;left:10%; animation-duration:9s;animation-delay:0s; }
.bubbles span:nth-child(2)  { width:20px;height:20px;left:28%; animation-duration:13s;animation-delay:2s; }
.bubbles span:nth-child(3)  { width:8px; height:8px; left:45%; animation-duration:7s; animation-delay:4s; }
.bubbles span:nth-child(4)  { width:16px;height:16px;left:62%; animation-duration:11s;animation-delay:1s; }
.bubbles span:nth-child(5)  { width:6px; height:6px; left:78%; animation-duration:8s; animation-delay:3s; }
.bubbles span:nth-child(6)  { width:22px;height:22px;left:90%; animation-duration:15s;animation-delay:6s; }
@keyframes rise {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .6; }
  100% { transform: translateY(-110vh) scale(.8); opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 10;
  padding: 100px 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.hero__left {
  flex: 1;
  min-width: 0;
}

.hero__right {
  flex-shrink: 0;
  display: none;
}
@media (min-width: 900px) {
  .hero__right { display: flex; align-items: center; justify-content: center; }
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(41,182,246,.15);
  border: 1px solid rgba(41,182,246,.3);
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin-bottom: 22px;
  max-width: 720px;
}
.hero__headline em {
  font-style: normal;
  color: var(--blue-light);
}

.hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255,255,255,.82);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-pill {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

/* Hero logo — coluna direita */
.hero__logo {
  width: clamp(220px, 28vw, 360px);
  height: auto;
  object-fit: contain;
  /* multiply dissolve o fundo branco contra a foto da piscina */
  mix-blend-mode: multiply;
  animation: logoFloat 7s ease-in-out infinite;
  filter: drop-shadow(0 8px 32px rgba(41,182,246,.3));
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-12px) rotate(1deg); }
}

/* ── Wave Dividers ── */
.wave-divider {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.wave-divider svg { display: block; width: 100%; }
.wave-divider--hero { position: absolute; }

section { position: relative; }
.section { padding: 88px 0 80px; }

/* Inline wave dividers at bottom of sections */
.section > .wave-divider,
.cta-band > .wave-divider {
  position: absolute;
  bottom: 0; left: 0; right: 0;
}
.wave-divider--up { bottom: auto; top: 0; transform: rotate(180deg); }
.wave-divider--footer { position: static; transform: none; margin-bottom: -1px; }

/* ═══════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════ */
.section__header {
  text-align: center;
  margin-bottom: 56px;
}
.section__header--left { text-align: left; }

.section__eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue);
  background: rgba(21,101,192,.09);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section__eyebrow--light {
  color: var(--blue-light);
  background: rgba(41,182,246,.15);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--gray-900);
}
.accent      { color: var(--blue); }
.accent-light{ color: var(--blue-light); }

.section__sub {
  font-size: 1.02rem;
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--ease-circ), transform .6s var(--ease-circ);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .32s; }
.reveal--delay-4 { transition-delay: .46s; }
.reveal--delay-5 { transition-delay: .60s; }

.js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease-circ), transform .65s var(--ease-circ);
}
.js-reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.section--light { background: var(--off-white); padding-bottom: 100px; }

.services-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.scard {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform .28s var(--ease-out), box-shadow .28s;
}
.scard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-circ);
}
.scard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md), var(--shadow-glow); }
.scard:hover::before { transform: scaleX(1); }

.scard--featured {
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-md);
}
.scard--featured::before { display: none; }
.scard--featured:hover { box-shadow: var(--shadow-lg), 0 0 0 4px rgba(41,182,246,.2); }
.scard--featured .scard__title,
.scard--featured .scard__desc,
.scard--featured .scard__list li { color: rgba(255,255,255,.9); }
.scard--featured .scard__title { color: #fff; }
.scard--featured .scard__list li::before { color: var(--blue-light); }

.scard__badge {
  position: absolute;
  top: 18px; right: 18px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--green-wa);
  color: #fff;
  padding: 4px 10px;
  border-radius: 50px;
}

.scard__icon { font-size: 2.4rem; line-height: 1; }

.scard__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.scard__desc {
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.65;
}

.scard__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.scard__list li {
  font-size: .85rem;
  color: var(--gray-500);
  padding-left: 18px;
  position: relative;
}
.scard__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: .8rem;
}

.scard__btn { align-self: flex-start; }

/* ═══════════════════════════════════════
   CTA BAND
═══════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 55%, var(--blue-mid) 100%);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 500px; height: 500px;
  background: rgba(41,182,246,.1);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.cta-band__logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  /*filter: brightness(0) invert(1);*/
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .cta-band__logo  { height: 88px; }
}

.cta-band__label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue-light);
  margin-bottom: 8px;
}
.cta-band__headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.005em;
}
.cta-band__btn { flex-shrink: 0; }

/* ═══════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════ */
.section--tint { background: var(--gray-50); padding-bottom: 100px; }

.products-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .products-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

.pcard {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease-out), box-shadow .28s;
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.pcard--safety { border-color: #f5c6c0; }
.pcard--safety:hover { box-shadow: 0 6px 24px rgba(192,57,43,.12); }

.pcard__top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pcard__icon { font-size: 1.9rem; }
.pcard__top h3 {
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 700;
  color: var(--gray-900);
}

.pcard ul { flex: 1; }
.pcard li {
  font-size: .86rem;
  color: var(--gray-700);
  padding: 6px 0 6px 14px;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
}
.pcard li:last-child { border-bottom: none; }
.pcard li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--blue-light);
  font-weight: 700;
}

.pcard__alert {
  font-size: .84rem;
  font-weight: 600;
  color: var(--red-alert);
  background: var(--red-tint);
  border-left: 3px solid var(--red-alert);
  padding: 9px 12px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  line-height: 1.5;
}

.pcard__link {
  font-size: .85rem;
  font-weight: 700;
  color: var(--blue);
  transition: color .15s, gap .15s;
  display: inline-flex;
  align-items: center;
}
.pcard__link:hover { color: var(--blue-dark); text-decoration: underline; }

/* ═══════════════════════════════════════
   DIFERENCIAIS
═══════════════════════════════════════ */
.section--white { background: var(--white); position: relative; overflow: hidden; }

.diff-watermark {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  height: 520px;
  width: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  mix-blend-mode: multiply;
}

.diff-grid {
  display: grid;
  gap: 2px;
  grid-template-columns: 1fr;
  margin-bottom: 52px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
@media (min-width: 640px)  { .diff-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .diff-grid { grid-template-columns: repeat(4, 1fr); } }

.diff-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background .25s, transform .25s var(--ease-out);
}
.diff-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-xlight) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.diff-item:hover { background: var(--off-white); transform: scale(1.02); z-index: 1; }
.diff-item:hover::before { opacity: 1; }

.diff-item__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(21,101,192,.07);
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
  letter-spacing: -.05em;
  user-select: none;
}

.diff-item__icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  position: relative;
}

.diff-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 10px;
  position: relative;
}

.diff-item p {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.65;
  position: relative;
}

.diff-cta { text-align: center; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.section--dark {
  background: var(--navy);
  padding-top: 80px;
  padding-bottom: 80px;
}

.contact-layout {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .contact-layout { grid-template-columns: 1fr 1fr; align-items: start; }
}

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

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 8px 0 32px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  overflow: hidden;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .18s;
}
.contact-item:last-child { border-bottom: none; }
.contact-item:hover { background: rgba(255,255,255,.04); }

.contact-item__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item strong {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue-light);
  margin-bottom: 4px;
}
.contact-item p, .contact-item a {
  font-size: .92rem;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
}
.contact-item a:hover { color: #fff; }

.map-wrapper {
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 340px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
}
.map-wrapper iframe { display: block; }

.map-placeholder {
  width: 100%; height: 100%;
  min-height: 340px;
  background: rgba(255,255,255,.04);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-placeholder__inner {
  text-align: center;
  color: rgba(255,255,255,.4);
  padding: 32px;
}
.map-placeholder__pin { font-size: 3rem; display: block; margin-bottom: 12px; }
.map-placeholder__inner strong { color: rgba(255,255,255,.6); font-size: .95rem; }
.map-placeholder__inner p { margin-top: 6px; font-size: .84rem; line-height: 1.6; }
.map-placeholder__inner code {
  font-family: monospace;
  background: rgba(255,255,255,.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .82rem;
  color: var(--blue-light);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--navy-deep);
  position: relative;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 36px 24px 40px;
}
.footer__logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  /*filter: brightness(0) invert(1);*/
  margin-bottom: 8px;
}
.footer__tagline {
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
}
.footer__copy {
  font-size: .78rem;
  color: rgba(255,255,255,.28);
  margin-top: 4px;
}

/* ═══════════════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 24px; right: 20px;
  z-index: 500;
  width: 60px; height: 60px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 28px rgba(37,211,102,.48);
  transition: transform .22s var(--ease-out), box-shadow .22s;
  animation: waPulse 2.8s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37,211,102,.65);
  animation: none;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 28px rgba(37,211,102,.48); }
  50%      { box-shadow: 0 6px 28px rgba(37,211,102,.7), 0 0 0 10px rgba(37,211,102,.1); }
}

.wa-float__tooltip {
  position: absolute;
  right: 72px;
  background: var(--gray-900);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 7px 13px;
  border-radius: var(--r-sm);
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .2s, transform .2s;
}
.wa-float__tooltip::after {
  content: '';
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: var(--gray-900);
}
.wa-float:hover .wa-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════
   MOBILE
═══════════════════════════════════════ */
@media (max-width: 479px) {
  .hero__ctas { flex-direction: column; }
  .btn--lg { width: 100%; }
  .cta-band__btn { width: 100%; justify-content: center; }
  .diff-cta .btn { width: 100%; }
  .contact-info .btn { width: 100%; justify-content: center; }
}
