:root {
  --surface: #071c2d;
  --surface-low: #082235;
  --surface-blue: #093454;
  --surface-card: rgba(255,255,255,.070);
  --surface-card-hover: rgba(255,255,255,.105);
  --text: #e8f7ff;
  --muted: #c5d7e4;
  --pool: #00aeef;
  --pool-soft: #82cfff;
  --yellow: #ffd700;
  --green: #25d366;
  --border: rgba(130,207,255,.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(0,174,239,.20), transparent 34%),
    radial-gradient(circle at 8% 28%, rgba(130,207,255,.12), transparent 32%),
    linear-gradient(180deg, #071927 0%, #082941 42%, #092e49 100%);
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  overflow-x: hidden;
}

main {
  position: relative;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 8%, rgba(0,174,239,.15), transparent 28%),
    radial-gradient(circle at 78% 36%, rgba(130,207,255,.10), transparent 30%),
    linear-gradient(180deg, #09283f 0%, #08314f 38%, #092941 100%);
}

img,
video {
  max-width: 100%;
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 22%, rgba(0,174,239,.18), transparent 30%),
    linear-gradient(135deg, #06121f, #101415);
  transition: opacity .8s ease, visibility .8s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-wave {
  position: absolute;
  inset: auto -10% -12% -10%;
  height: 42%;
  background:
    radial-gradient(ellipse at center, rgba(0,174,239,.22), transparent 55%),
    repeating-radial-gradient(ellipse at center, rgba(130,207,255,.08) 0 2px, transparent 2px 28px);
  transform: perspective(700px) rotateX(58deg);
  transform-origin: bottom;
}

.loader-card {
  position: relative;
  z-index: 2;
  width: min(88vw, 430px);
  padding: 34px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  text-align: center;
  box-shadow: 0 30px 90px rgba(0,0,0,.38);
}

.loader-card img {
  width: 260px;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.35));
  animation: logoPulse 1.8s ease-in-out infinite;
}

.loader-card strong {
  display: block;
  margin-top: 14px;
  color: var(--pool-soft);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.loader-card span {
  display: block;
  margin-top: 6px;
  color: rgba(224,227,229,.72);
  font-size: 13px;
}

.loader-bar {
  height: 6px;
  width: 100%;
  max-width: 280px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}

.loader-bar i {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left center;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pool-soft), var(--pool), var(--green));
  animation: progress 1.4s ease-in-out infinite;
}

.bg-bubble-container {
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 6;
}

#heroBubbles {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 3;
}

.bubble {
  position: absolute;
  bottom: -90px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.78), rgba(130,207,255,.24) 52%, transparent 74%);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 0 18px rgba(130,207,255,.16);
  opacity: 0;
  animation: bubbleUp linear infinite;
}

.page-bubble {
  z-index: 6;
}

.hero-bubble {
  z-index: 3;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px 24px;
  transition: .25s ease;
}

.site-header.scrolled {
  padding: 10px 24px;
}

.header-inner {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 0 18px;
  border-radius: 0 0 28px 28px;
  background: rgba(7,25,39,.70);
  border: 1px solid rgba(130,207,255,.14);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
}

.site-header.scrolled .header-inner {
  background: rgba(6,24,38,.94);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
  text-decoration: none;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  transition: transform .25s ease, filter .25s ease;
}

.brand:hover {
  transform: translateY(-2px) scale(1.015);
  filter: drop-shadow(0 0 18px rgba(130,207,255,.22));
}

.brand-logo {
  display: grid;
  place-items: center;
  width: 76px;
  min-width: 76px;
  padding: 7px;
  border-radius: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(130,207,255,.16);
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

.brand:hover .brand-logo {
  transform: rotate(-2deg) scale(1.06);
  background: rgba(130,207,255,.12);
  box-shadow: 0 0 28px rgba(0,174,239,.22);
}

.brand-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand strong {
  color: var(--pool-soft);
  font-weight: 900;
  letter-spacing: -.02em;
  transition: color .25s ease, text-shadow .25s ease;
}

.brand:hover strong {
  color: white;
  text-shadow: 0 0 16px rgba(130,207,255,.52);
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-menu a {
  position: relative;
  overflow: hidden;
  color: var(--muted);
  text-decoration: none;
  font-weight: 900;
  padding: 10px 14px;
  border-radius: 12px;
  transition: .25s ease;
}

.main-menu a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pool), var(--pool-soft));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.main-menu a:hover,
.main-menu a.active {
  color: white;
  background: rgba(130,207,255,.105);
  transform: translateY(-2px);
  text-shadow: 0 0 14px rgba(130,207,255,.38);
}

.main-menu a:hover::after,
.main-menu a.active::after {
  transform: scaleX(1);
}

.whatsapp-top,
.btn,
.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 18px;
  color: white;
  text-decoration: none;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-weight: 900;
  transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
  border: 0;
}

.whatsapp-top,
.btn-green,
.floating-whatsapp {
  background: linear-gradient(135deg, var(--green), #2ee878);
  box-shadow: 0 16px 34px rgba(37,211,102,.22);
}

.btn-blue {
  background: linear-gradient(135deg, var(--pool), #29d1ff);
  box-shadow: 0 16px 34px rgba(0,174,239,.22);
}

.btn:hover,
.whatsapp-top:hover,
.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.035);
  filter: brightness(1.08);
}

.btn:hover span,
.whatsapp-top:hover span {
  animation: iconPop .5s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 24px 84px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 240px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(9,40,63,0) 0%, rgba(9,40,63,.82) 70%, #09283f 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg video,
.hero-bg .hero-slide-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: .72;
  transform: scale(1);
  animation: slowZoom 30s linear infinite alternate;
  transition: opacity 1s ease, transform 1s ease, visibility 1s ease;
}

.hero-bg img.is-changing,
.hero-bg video.is-changing,
.hero-bg .hero-slide-media.is-changing {
  opacity: 0;
}

.media-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.hero-dark-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,25,39,.96) 0%, rgba(7,31,50,.72) 38%, rgba(7,31,50,.25) 100%),
    linear-gradient(0deg, rgba(7,25,39,.52), rgba(7,25,39,.12));
  z-index: 1;
}

.hero-blue-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 32%, rgba(0,174,239,.20), transparent 35%),
    rgba(0, 44, 78, .42);
  backdrop-filter: blur(1.5px);
  z-index: 1;
}

.hero-ripple {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  filter: blur(90px);
  background: radial-gradient(circle, rgba(0,174,239,.18), transparent 70%);
  animation: ripple 8s ease-in-out infinite;
}

.ripple-a {
  width: 780px;
  height: 780px;
  top: 18%;
  left: 14%;
}

.ripple-b {
  width: 560px;
  height: 560px;
  bottom: -120px;
  right: 0;
  animation-delay: -2.5s;
}

.light-ray {
  position: absolute;
  top: 0;
  z-index: 2;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,.10), transparent);
  clip-path: polygon(0 0, 100% 0, 60% 100%, 40% 100%);
  filter: blur(12px);
  opacity: .22;
  animation: raySwing 10s ease-in-out infinite alternate;
}

.ray-a {
  width: 92px;
  left: 36%;
}

.ray-b {
  width: 132px;
  left: 64%;
  animation-delay: -4s;
}

.hero-content {
  position: relative;
  z-index: 8;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.hero-copy {
  max-width: 860px;
}

.hero-kicker,
.section-title span,
.benefit-copy span,
.promo-banner span,
.contact-cta span {
  display: inline-block;
  color: var(--pool);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: .30em;
  text-transform: uppercase;
  font-size: 13px;
  transition: color .25s ease, text-shadow .25s ease, transform .25s ease;
}

.hero-kicker:hover,
.section-title span:hover,
.benefit-copy span:hover,
.promo-banner span:hover,
.contact-cta span:hover {
  color: var(--pool-soft);
  transform: translateY(-2px);
  text-shadow: 0 0 18px rgba(0,174,239,.45);
}

.hero h1 {
  min-height: 182px;
  margin: 18px 0;
  max-width: 920px;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: clamp(58px, 8vw, 104px);
  line-height: .96;
  letter-spacing: -.065em;
  color: white;
  transition: text-shadow .25s ease, transform .25s ease;
}

.hero h1:hover {
  transform: translateX(4px);
  text-shadow: 0 0 26px rgba(130,207,255,.24);
}

#typewriter::after {
  content: "|";
  color: var(--pool);
  margin-left: 6px;
  animation: blink .75s infinite;
}

.hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

.hero p strong {
  color: var(--pool);
}

.hero p mark {
  color: var(--yellow);
  background: transparent;
  font-weight: 900;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 30px 0 0;
}

.hero-mini-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 14px;
  margin-top: 46px;
  max-width: 820px;
}

.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,.078), rgba(255,255,255,.048));
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
}

.hero-mini-cards article {
  min-height: 112px;
  padding: 20px;
  border-radius: 24px;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.hero-mini-cards article:hover,
.category-grid article:hover,
.product-card:hover,
.gallery-card:hover,
.benefit-card:hover,
.promo-banner:hover,
.contact-cta:hover {
  transform: translateY(-7px);
  border-color: rgba(130,207,255,.38);
  background: linear-gradient(180deg, rgba(255,255,255,.115), rgba(255,255,255,.065));
  box-shadow: 0 28px 82px rgba(0,0,0,.22), 0 0 34px rgba(0,174,239,.09);
}

.hero-mini-cards span {
  display: block;
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--pool);
  transition: transform .28s ease, color .28s ease, text-shadow .28s ease;
}

.hero-mini-cards article:hover span,
.category-grid article:hover span {
  transform: translateY(-3px) scale(1.18) rotate(-5deg);
  color: var(--pool-soft);
  text-shadow: 0 0 18px rgba(0,174,239,.45);
}

.hero-mini-cards strong {
  font-family: "Hanken Grotesk", Arial, sans-serif;
  transition: color .25s ease;
}

.hero-mini-cards article:hover strong,
.category-grid article:hover strong {
  color: white;
}

.section {
  position: relative;
  z-index: 8;
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 108px 24px;
}

.section-title {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}

.section-title h2,
.benefit-copy h2,
.promo-banner h2,
.contact-cta h2 {
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -.055em;
  margin: 12px 0;
  color: white;
  transition: transform .25s ease, text-shadow .25s ease;
}

.section-title h2:hover,
.benefit-copy h2:hover,
.promo-banner h2:hover,
.contact-cta h2:hover {
  transform: translateY(-3px);
  text-shadow: 0 0 24px rgba(130,207,255,.20);
}

.section-title p,
.benefit-copy p,
.promo-banner p,
.contact-cta p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.categories,
.products-section,
.gallery-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(0,174,239,.10), transparent 32%),
    radial-gradient(circle at 82% 72%, rgba(130,207,255,.07), transparent 34%);
  border-radius: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.category-grid article {
  min-height: 150px;
  border-radius: 30px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.category-grid article span {
  display: block;
  font-size: 36px;
  margin-bottom: 10px;
}

.product-grid,
.gallery-grid {
  display: grid;
  gap: 22px;
}

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

.product-card,
.gallery-card {
  overflow: hidden;
  border-radius: 32px;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.product-img {
  position: relative;
  overflow: hidden;
  height: 235px;
  background: rgba(0,174,239,.10);
}

.product-img::after,
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.18) 48%, transparent 64%);
  transform: translateX(-130%);
  transition: transform .65s ease;
}

.product-card:hover .product-img::after,
.gallery-card:hover::after {
  transform: translateX(130%);
}

.product-img img,
.gallery-card img,
.gallery-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.16, 1, .3, 1), filter .35s ease;
}

.product-card:hover .product-img img,
.gallery-card:hover img,
.gallery-card:hover video {
  transform: scale(1.08);
  filter: brightness(1.08) saturate(1.08);
}

.product-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--pool-soft);
  font-weight: 900;
}

.product-body {
  padding: 22px;
}

.product-body span {
  color: var(--pool-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.product-body h3 {
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 24px;
  margin: 10px 0 8px;
  transition: color .25s ease, text-shadow .25s ease, transform .25s ease;
}

.product-card:hover .product-body h3 {
  color: white;
  transform: translateX(3px);
  text-shadow: 0 0 14px rgba(130,207,255,.24);
}

.product-body p {
  color: var(--muted);
  line-height: 1.6;
}

.product-body strong {
  display: block;
  color: var(--yellow);
  margin: 14px 0;
}

.product-body a {
  color: white;
  text-decoration: none;
  font-weight: 900;
  transition: color .25s ease, text-shadow .25s ease;
}

.product-body a:hover {
  color: var(--pool-soft);
  text-shadow: 0 0 14px rgba(0,174,239,.32);
}

.benefit-section {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: center;
}

.benefit-card,
.promo-banner,
.contact-cta,
.empty-box {
  border-radius: 42px;
  padding: 46px;
}

.benefit-card {
  text-align: center;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.benefit-card img {
  width: 240px;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.34));
  transition: transform .45s ease, filter .35s ease;
}

.benefit-card:hover img,
.contact-cta:hover img {
  transform: scale(1.055) rotate(-1deg);
  filter: drop-shadow(0 22px 40px rgba(0,174,239,.24));
}

.benefit-card h3 {
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 30px;
}

.promo-banner {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(0,174,239,.24), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.082), rgba(255,255,255,.050));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

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

.gallery-card {
  position: relative;
}

.gallery-card img,
.gallery-card video {
  height: 300px;
}

.gallery-card div {
  padding: 22px;
}

.gallery-card h3 {
  font-family: "Hanken Grotesk", Arial, sans-serif;
  margin: 0 0 8px;
  transition: color .25s ease, text-shadow .25s ease;
}

.gallery-card:hover h3 {
  color: white;
  text-shadow: 0 0 14px rgba(130,207,255,.22);
}

.gallery-card p {
  color: var(--muted);
  margin: 0;
}

.empty-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-cta {
  text-align: center;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.contact-cta img {
  width: 230px;
  margin-bottom: 16px;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.34));
  transition: transform .45s ease, filter .35s ease;
}













.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
}

.mobile-nav {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: .8s cubic-bezier(.16, 1, .3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes logoPulse {
  50% { transform: scale(1.035); }
}

@keyframes progress {
  0% { transform: scaleX(.08); opacity: .85; }
  60% { transform: scaleX(.78); opacity: 1; }
  100% { transform: scaleX(1); opacity: .92; }
}

@keyframes bubbleUp {
  0% { transform: translateY(0) scale(.6); opacity: 0; }
  12% { opacity: .38; }
  78% { opacity: .30; }
  100% { transform: translateY(-122vh) scale(1.16); opacity: 0; }
}

@keyframes ripple {
  50% { transform: scale(1.35) translate(18px, -18px); opacity: .72; }
}

@keyframes raySwing {
  from { transform: rotate(-10deg) translateX(-20%); }
  to { transform: rotate(10deg) translateX(20%); }
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.045); }
}

@keyframes blink {
  50% { opacity: 0; }
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 0 0 22px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@keyframes iconPop {
  0%, 100% { transform: scale(1) rotate(0deg); }
  45% { transform: scale(1.22) rotate(-8deg); }
}

/* =========================================================
   MOBILE POLISH 2026-06
   Acabamento exclusivo para celular. Desktop permanece igual.
   ========================================================= */
@media (max-width: 820px) {
  html {
    scroll-padding-top: 82px;
  }

  body {
    padding-bottom: 76px !important;
  }

  .site-header,
  .site-header.scrolled {
    padding: 8px 10px !important;
  }

  .header-inner {
    min-height: 60px !important;
    padding: 0 9px !important;
    gap: 8px !important;
    border-radius: 18px !important;
  }

  .brand-logo {
    width: 48px !important;
    min-width: 48px !important;
  }

  .brand strong {
    font-size: 11px !important;
  }

  .whatsapp-top {
    min-height: 40px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
  }

  .hero {
    padding: 96px 16px 62px !important;
  }

  .hero h1 {
    min-height: 112px !important;
    margin: 14px 0 !important;
    font-size: clamp(37px, 11.5vw, 48px) !important;
    line-height: 1.02 !important;
    letter-spacing: -.045em !important;
  }

  .hero p {
    color: #d8e8f2 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  .hero-mini-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    margin-top: 26px !important;
  }

  .hero-mini-cards article {
    min-height: 106px !important;
    padding: 17px 14px !important;
  }

  .section,
  .products-section,
  .gallery-section,
  .categories,
  .catalog-products-section,
  .promocoes-list-section,
  .piscinas-modelos-section,
  .sobre-info-section {
    padding: 64px 16px !important;
  }

  .section-title {
    margin-bottom: 30px !important;
  }

  .section-title h2,
  .benefit-copy h2,
  .promo-banner h2,
  .contact-cta h2 {
    font-size: clamp(31px, 9vw, 42px) !important;
    line-height: 1.08 !important;
    letter-spacing: -.04em !important;
  }

  .section-title p,
  .benefit-copy p,
  .promo-banner p,
  .contact-cta p {
    color: #d3e4ef !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .category-grid article,
  .category-card-link {
    min-height: 126px !important;
    padding: 16px 10px !important;
  }

  .product-body,
  .gallery-card div {
    padding: 20px !important;
  }

  .product-body h3 {
    font-size: 22px !important;
  }

  .benefit-section,
  .promo-banner {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .benefit-card,
  .promo-banner,
  .contact-cta,
  .empty-box {
    padding: 30px 20px !important;
    border-radius: 26px !important;
  }

  .contact-cta .btn,
  .promo-banner .btn,
  .benefit-copy .btn {
    width: 100% !important;
  }

  .site-footer {
    padding-bottom: 34px !important;
  }

  .footer-grid {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .floating-whatsapp {
    right: 14px !important;
    bottom: 76px !important;
    width: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    padding: 0 !important;
    border-radius: 18px !important;
  }

  .floating-whatsapp-text {
    display: none !important;
  }

  .floating-whatsapp {
    font-size: 0 !important;
    line-height: 0 !important;
    overflow: hidden !important;
  }

  .floating-whatsapp .wa-icon {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    margin: 0 !important;
  }

  .mobile-nav {
    left: 6px !important;
    right: 6px !important;
    bottom: 6px !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 2px !important;
    min-height: 54px !important;
    padding: 6px 4px !important;
    border-radius: 18px !important;
    background: rgba(5, 23, 37, .97) !important;
    border-color: rgba(130, 207, 255, .24) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .42) !important;
  }

  .mobile-nav a,
  .mobile-nav button {
    min-height: 40px !important;
    padding: 0 2px !important;
    border-radius: 11px !important;
    color: #dcecf5 !important;
    font-size: 9.2px !important;
    line-height: 1.05 !important;
    letter-spacing: -.02em !important;
  }

  .mobile-nav a:active,
  .mobile-nav button:active {
    background: rgba(0, 174, 239, .18) !important;
  }
}

/* Desktop premium home polish. Mobile is untouched. */
@media (min-width: 821px) {
  .hero {
    min-height: 88vh;
    padding-top: 132px;
    padding-bottom: 68px;
  }

  .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-kicker {
    padding: 8px 12px;
    border: 1px solid rgba(130, 207, 255, .18);
    border-radius: 999px;
    background: rgba(5, 27, 43, .48);
    letter-spacing: .24em;
  }

  .hero h1 {
    min-height: 118px;
    max-width: 860px;
    margin: 22px 0 18px;
    font-size: clamp(58px, 6.5vw, 88px);
    line-height: .98;
    letter-spacing: -.055em;
  }

  .hero p {
    max-width: 690px;
    font-size: 19px;
  }

  .hero-buttons {
    gap: 14px;
    margin-top: 28px;
  }

  .hero-buttons .btn {
    min-width: 184px;
    border-radius: 999px;
  }

  .hero-mini-cards {
    max-width: 880px;
    margin-top: 34px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-mini-cards article {
    position: relative;
    min-height: 104px;
    padding: 18px 18px 18px 20px;
    border-radius: 22px;
  }

  .hero-mini-cards span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
    border-radius: 12px;
    color: var(--pool-soft);
    background: rgba(0, 174, 239, .12);
    font-size: 18px;
  }

  .hero-mini-cards strong {
    display: block;
    color: #f5fbff;
    font-size: 15px;
    line-height: 1.25;
  }

  .section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .section-title {
    margin-bottom: 38px;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .category-grid article,
  .category-card-link {
    position: relative;
    min-height: 128px;
    justify-items: start;
    place-items: initial;
    align-content: center;
    text-align: left;
    padding: 24px;
    border-radius: 24px;
  }

  .category-grid article span,
  .category-card-link span {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin: 0 0 14px;
    border-radius: 16px;
    background: rgba(0, 174, 239, .12);
    font-size: 24px;
  }

  .category-grid article strong,
  .category-card-link strong {
    font-size: 20px;
  }

  .products-section .section-title {
    max-width: 760px;
  }

  .product-card {
    border-radius: 28px;
  }

  .product-img {
    height: 220px;
    margin: 10px 10px 0;
    border-radius: 22px;
    background:
      radial-gradient(circle at 50% 28%, rgba(130, 207, 255, .16), transparent 45%),
      linear-gradient(145deg, rgba(4, 27, 44, .96), rgba(8, 60, 91, .66));
  }

  .product-img img {
    object-fit: contain;
    padding: 10px;
    filter: drop-shadow(0 16px 22px rgba(0, 0, 0, .22));
  }

  .product-body {
    padding: 20px 22px 24px;
  }

  .product-body h3 {
    font-size: 22px;
    line-height: 1.18;
  }

  .product-body a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(0, 174, 239, .13);
  }

  .contact-cta {
    max-width: 1180px;
  }
}

/* Mobile action menu */
@media (max-width: 820px) {
  body {
    padding-bottom: 82px !important;
  }

  .mobile-menu-toggle {
    position: fixed;
    left: 14px;
    bottom: 14px;
    z-index: 102;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 104px;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid rgba(130, 207, 255, .28);
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(145deg, #073858, #05243a);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .38);
    font: inherit;
    font-size: 14px;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease;
  }

  .mobile-menu-toggle-icon {
    display: grid;
    gap: 4px;
    width: 19px;
  }

  .mobile-menu-toggle-icon i {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 99px;
    background: #27c9ff;
    transition: transform .25s ease, opacity .2s ease;
  }

  .mobile-menu-open .mobile-menu-toggle-icon i:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .mobile-menu-open .mobile-menu-toggle-icon i:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-open .mobile-menu-toggle-icon i:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 98;
    display: block;
    border: 0;
    background: rgba(2, 15, 25, .68);
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(4px);
    transition: opacity .3s ease, visibility .3s ease;
  }

  .mobile-menu-open .mobile-menu-backdrop {
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav {
    left: 14px !important;
    right: 14px !important;
    bottom: 82px !important;
    z-index: 101 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    min-height: 0 !important;
    padding: 16px !important;
    border-radius: 26px !important;
    background: rgba(5, 29, 47, .98) !important;
    border: 1px solid rgba(130, 207, 255, .25) !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .5) !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px) scale(.96);
    transform-origin: bottom left;
    pointer-events: none;
    transition: opacity .28s ease, transform .32s cubic-bezier(.16, 1, .3, 1), visibility .28s ease;
  }

  .mobile-menu-open .mobile-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .mobile-nav a,
  .mobile-nav button {
    display: flex !important;
    flex-direction: column !important;
    gap: 7px !important;
    min-height: 74px !important;
    padding: 12px 8px !important;
    border-radius: 17px !important;
    color: #e9f7ff !important;
    background: rgba(130, 207, 255, .07) !important;
    border: 1px solid rgba(130, 207, 255, .1) !important;
    font-size: 12px !important;
    letter-spacing: 0 !important;
    transition: background .2s ease, transform .2s ease !important;
  }

  .mobile-nav a:active {
    transform: scale(.97) !important;
    background: rgba(0, 174, 239, .2) !important;
  }

  .mobile-menu-icon {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    color: #2bd0ff;
    background: rgba(0, 174, 239, .13);
    font-size: 18px;
    line-height: 1;
  }

  .floating-whatsapp {
    right: 14px !important;
    bottom: 14px !important;
    z-index: 102 !important;
  }
}

/* Final premium mobile product image override. */
@media (max-width: 820px) {
  .product-card,
  .catalog-product-card {
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 18px 46px rgba(0, 0, 0, .24) !important;
  }

  .product-img,
  .catalog-product-media {
    height: 190px !important;
    margin: 10px 10px 0 !important;
    border-radius: 20px !important;
    background:
      radial-gradient(circle at 50% 28%, rgba(130, 207, 255, .18), transparent 44%),
      linear-gradient(145deg, rgba(3, 28, 46, .92), rgba(8, 61, 92, .72)) !important;
  }

  .product-img img,
  .catalog-product-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    padding: 8px !important;
    filter: drop-shadow(0 14px 20px rgba(0, 0, 0, .22)) !important;
  }

  .product-body,
  .catalog-product-body {
    padding: 18px 20px 20px !important;
  }

  .product-body h3,
  .catalog-product-body h2 {
    font-size: 21px !important;
    line-height: 1.18 !important;
  }
}

/* Premium mobile product cards */
@media (max-width: 820px) {
  .product-grid,
  .catalog-product-grid {
    gap: 18px !important;
  }

  .product-card,
  .catalog-product-card {
    border-radius: 24px !important;
    overflow: hidden !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .045)) !important;
    box-shadow: 0 18px 46px rgba(0, 0, 0, .24) !important;
  }

  .product-img,
  .catalog-product-media {
    height: 190px !important;
    margin: 10px 10px 0 !important;
    border-radius: 20px !important;
    background:
      radial-gradient(circle at 50% 28%, rgba(130, 207, 255, .18), transparent 44%),
      linear-gradient(145deg, rgba(3, 28, 46, .92), rgba(8, 61, 92, .72)) !important;
  }

  .product-img img,
  .catalog-product-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    padding: 8px !important;
    filter: drop-shadow(0 14px 20px rgba(0, 0, 0, .22)) !important;
  }

  .product-body,
  .catalog-product-body {
    padding: 18px 20px 20px !important;
  }

  .product-body span,
  .catalog-product-category {
    font-size: 11px !important;
    letter-spacing: .14em !important;
  }

  .product-body h3,
  .catalog-product-body h2 {
    margin-top: 9px !important;
    font-size: 21px !important;
    line-height: 1.18 !important;
  }

  .product-body p,
  .catalog-product-body p {
    margin: 10px 0 !important;
    font-size: 14.5px !important;
    line-height: 1.55 !important;
  }
}

@media (min-width: 821px) {
  .mobile-menu-toggle,
  .mobile-menu-backdrop {
    display: none !important;
  }
}

@media (max-width: 380px) {
  .brand strong {
    display: none !important;
  }

  .mobile-nav a,
  .mobile-nav button {
    font-size: 10.5px !important;
  }
}

.pulse-whatsapp {
  animation: pulse-whatsapp 2s infinite;
}

@media (max-width: 1120px) {
  .main-menu {
    display: none;
  }

  .hero h1 {
    min-height: 150px;
  }

  .hero-mini-cards,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-grid,
  .benefit-section {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 10px 10px;
  }

  .header-inner {
    min-height: 64px;
    padding: 0 10px;
    border-radius: 0 0 22px 22px;
  }

  .brand strong {
    display: none;
  }

  .brand-logo {
    width: 62px;
    min-width: 62px;
  }

  .whatsapp-top {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero {
    min-height: 100svh;
    padding: 112px 16px 78px;
  }

  .hero-dark-overlay {
    background:
      linear-gradient(90deg, rgba(7,25,39,.94), rgba(7,31,50,.66)),
      linear-gradient(0deg, rgba(7,25,39,.72), rgba(7,25,39,.14));
  }

  .hero h1 {
    min-height: 126px;
    font-size: 43px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons,
  .promo-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-mini-cards,
  .category-grid,
  .product-grid,
  .gallery-grid,
  .benefit-section {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 16px;
  }

  .benefit-card,
  .promo-banner,
  .contact-cta {
    padding: 32px 22px;
    border-radius: 32px;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-nav {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 10px;
    border-radius: 22px;
    background: rgba(7,25,39,.90);
    border: 1px solid rgba(130,207,255,.16);
    backdrop-filter: blur(18px);
  }

  .mobile-nav a {
    color: var(--muted);
    text-decoration: none;
    text-align: center;
    font-size: 12px;
    font-weight: 900;
  }


}


/* ===============================
   WHATSAPP OFICIAL
   =============================== */

.wa-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: #ffffff;
  line-height: 1;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.wa-icon svg {
  width: 78%;
  height: 78%;
  display: block;
  fill: currentColor;
}

.wa-icon-small {
  width: 22px;
  height: 22px;
  min-width: 22px;
}

.wa-icon-floating {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: rgba(255,255,255,.18);
  box-shadow: 0 0 0 8px rgba(255,255,255,.06);
}

.whatsapp-top:hover .wa-icon,
.btn:hover .wa-icon,
.product-body a:hover .wa-icon,
.site-footer a:hover .wa-icon,
.floating-whatsapp:hover .wa-icon {
  transform: scale(1.12) rotate(-6deg);
  background: rgba(255,255,255,.24);
  box-shadow: 0 0 22px rgba(255,255,255,.22);
}

.product-body a,
.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.floating-whatsapp {
  min-height: 66px;
  padding: 0 20px 0 16px;
  border-radius: 999px;
  gap: 12px;
}

.floating-whatsapp-text {
  font-weight: 900;
}

@media (max-width: 720px) {
  .floating-whatsapp-text {
    display: none;
  }

  .floating-whatsapp {
    display: inline-flex;
    width: 62px;
    height: 62px;
    min-height: 62px;
    padding: 0;
    right: 18px;
    bottom: 82px;
  }

  .wa-icon-floating {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
}

/* =========================
   RODAPÉ ORGANIZADO
========================= */
.site-footer {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0 104px;
  border-top: 1px solid rgba(130, 207, 255, .14);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 54px;
  align-items: flex-start;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-column strong {
  display: block;
  margin: 0 0 8px;
  color: var(--pool-soft);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 17px;
}

.footer-column p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 17px;
}

.footer-column a {
  color: var(--muted);
  text-decoration: none;
  transition: color .22s ease, transform .22s ease, text-shadow .22s ease;
}

.footer-column a:hover {
  color: var(--pool-soft);
  transform: translateX(4px);
  text-shadow: 0 0 14px rgba(130, 207, 255, .24);
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  text-decoration: none;
  font-size: 17px;
  line-height: 1;
}

.footer-social-links .whatsapp-icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(37, 211, 102, .14);
  border: 1px solid rgba(37, 211, 102, .42);
}

.footer-social-links .whatsapp-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footer-bottom {
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid rgba(130, 207, 255, .12);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(197, 215, 228, .82);
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .site-footer {
    width: min(100% - 32px, 720px);
    padding: 46px 0 104px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }

  .footer-column {
    align-items: center;
  }

  .footer-social-links {
    align-items: center;
  }

  .footer-column a:hover {
    transform: translateY(-2px);
  }

  .footer-bottom {
    margin-top: 38px;
  }
}

/* =========================
   PÁGINA DE PRODUTOS + CARRINHO
========================= */
.catalog-header {
  position: fixed;
}

.catalog-page {
  min-height: 100vh;
  padding: 142px 24px 120px;
  background:
    radial-gradient(circle at 18% 8%, rgba(0, 174, 239, .16), transparent 28%),
    radial-gradient(circle at 82% 28%, rgba(130, 207, 255, .10), transparent 30%),
    linear-gradient(180deg, #07233a 0%, #08314f 44%, #092941 100%);
}

.catalog-hero {
  width: min(1280px, 100%);
  margin: 0 auto 34px;
  padding: 36px 0 18px;
}

.catalog-hero h1 {
  max-width: 940px;
  margin: 16px 0;
  color: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: clamp(42px, 6.4vw, 82px);
  line-height: .98;
  letter-spacing: -.06em;
}

.catalog-hero p {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.catalog-actions-top {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.catalog-tools {
  width: min(1280px, 100%);
  margin: 0 auto 26px;
  padding: 24px;
  border-radius: 30px;
}

.catalog-search {
  display: grid;
  gap: 10px;
}

.catalog-search label {
  color: var(--pool-soft);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 13px;
}

.catalog-search input {
  width: 100%;
  height: 58px;
  border: 1px solid rgba(130, 207, 255, .17);
  border-radius: 18px;
  padding: 0 18px;
  color: #ffffff;
  background: rgba(4, 20, 34, .72);
  outline: none;
  font: inherit;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.catalog-search input:focus {
  border-color: rgba(130, 207, 255, .55);
  background: rgba(4, 20, 34, .92);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, .10);
}

.catalog-category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.category-chip {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(130, 207, 255, .18);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, .055);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-weight: 900;
  cursor: pointer;
  transition: .22s ease;
}

.category-chip:hover,
.category-chip.active {
  color: #ffffff;
  border-color: rgba(0, 174, 239, .55);
  background: linear-gradient(135deg, rgba(0, 174, 239, .24), rgba(130, 207, 255, .12));
  transform: translateY(-2px);
}

.catalog-products-section {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.catalog-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.catalog-product-card {
  overflow: hidden;
  border-radius: 32px;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.catalog-product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(130, 207, 255, .38);
  background: linear-gradient(180deg, rgba(255,255,255,.115), rgba(255,255,255,.065));
  box-shadow: 0 28px 82px rgba(0,0,0,.22), 0 0 34px rgba(0,174,239,.09);
}

.catalog-product-media {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: rgba(0, 174, 239, .10);
}

.catalog-product-media img,
.catalog-product-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.16, 1, .3, 1), filter .35s ease;
}

.catalog-product-card:hover .catalog-product-media img,
.catalog-product-card:hover .catalog-product-media video {
  transform: scale(1.08);
  filter: brightness(1.08) saturate(1.08);
}

.catalog-product-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--pool-soft);
  font-weight: 900;
  background:
    radial-gradient(circle at center, rgba(0, 174, 239, .20), transparent 55%),
    rgba(255, 255, 255, .035);
}

.catalog-featured-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  color: #071c2d;
  background: linear-gradient(135deg, #ffd700, #fff1a5);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-weight: 900;
  font-size: 12px;
}

.catalog-product-body {
  padding: 22px;
}

.catalog-product-category {
  color: var(--pool-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.catalog-product-body h2 {
  margin: 10px 0 8px;
  color: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 25px;
  line-height: 1.08;
}

.catalog-product-body p {
  min-height: 76px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.catalog-product-price {
  display: block;
  margin: 16px 0;
  color: var(--yellow);
  font-size: 18px;
  font-weight: 900;
}

.add-to-cart-btn {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 17px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pool), #29d1ff);
  box-shadow: 0 16px 34px rgba(0, 174, 239, .20);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-weight: 900;
  cursor: pointer;
  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
}

.add-to-cart-btn:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.08);
  box-shadow: 0 18px 38px rgba(0, 174, 239, .30);
}

.catalog-empty-filter {
  padding: 42px;
  border-radius: 30px;
  text-align: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 120;
  width: min(440px, 94vw);
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 12%, rgba(0, 174, 239, .18), transparent 28%),
    linear-gradient(180deg, rgba(7, 28, 45, .98), rgba(6, 22, 36, .98));
  border-left: 1px solid rgba(130, 207, 255, .18);
  box-shadow: -28px 0 80px rgba(0, 0, 0, .34);
  transform: translateX(104%);
  transition: transform .34s cubic-bezier(.16, 1, .3, 1);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(130, 207, 255, .12);
}

.cart-drawer-header span {
  color: var(--pool-soft);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
}

.cart-drawer-header h2 {
  margin: 4px 0 0;
  color: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 28px;
}

.cart-close-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(130, 207, 255, .18);
  border-radius: 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, .07);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 18px 2px;
  display: grid;
  gap: 12px;
}

.cart-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(130, 207, 255, .13);
  border-radius: 20px;
  background: rgba(255, 255, 255, .055);
}

.cart-item-img {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  object-fit: cover;
  background: rgba(0, 174, 239, .12);
}

.cart-item-info h3 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.2;
}

.cart-item-info p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
}

.cart-qty-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-qty-row button {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(130, 207, 255, .16);
  border-radius: 10px;
  color: #ffffff;
  background: rgba(0, 174, 239, .13);
  cursor: pointer;
  font-weight: 900;
}

.cart-qty-row strong {
  min-width: 22px;
  text-align: center;
  color: #ffffff;
}

.cart-remove-btn {
  margin-left: auto;
  color: #ffb7b7 !important;
  background: rgba(255, 80, 80, .12) !important;
  border-color: rgba(255, 80, 80, .24) !important;
  font-size: 13px;
}

.cart-empty {
  display: none;
  margin: 22px 0;
  padding: 24px;
  border-radius: 24px;
  text-align: center;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(130, 207, 255, .13);
}

.cart-empty.show {
  display: block;
}

.cart-empty h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
}

.cart-empty p {
  margin: 0;
  color: var(--muted);
}

.cart-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(130, 207, 255, .12);
}

.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--muted);
}

.cart-summary strong {
  color: #ffffff;
  font-size: 22px;
}

.cart-whatsapp-btn,
.cart-continue-btn,
.cart-clear-btn {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-weight: 900;
  cursor: pointer;
  transition: transform .22s ease, filter .22s ease;
}

.cart-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), #2ee878);
  box-shadow: 0 16px 34px rgba(37, 211, 102, .20);
}

.cart-clear-btn {
  margin-top: 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(130, 207, 255, .14);
}

.cart-continue-btn {
  margin-top: 10px;
  color: #e8f7ff;
  background: rgba(0, 174, 239, .13);
  border: 1px solid rgba(130, 207, 255, .20);
}

.cart-whatsapp-btn:hover,
.cart-continue-btn:hover,
.cart-clear-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.floating-cart-btn {
  position: fixed;
  right: 24px;
  bottom: 98px;
  z-index: 70;
  min-height: 58px;
  padding: 0 14px 0 12px;
  border: 0;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #00aeef, #25d366);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .28), 0 0 0 1px rgba(255,255,255,.14) inset;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: translateY(10px) scale(.96);
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease, filter .22s ease;
}

.floating-cart-btn.has-items {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-cart-total,
.cart-count-badge {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  color: #071c2d;
  background: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.floating-cart-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .18);
}

.floating-cart-label {
  white-space: nowrap;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(0, 0, 0, .46);
  opacity: 0;
  visibility: hidden;
  transition: .28s ease;
}

.cart-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.mobile-nav button {
  border: 0;
  background: transparent;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  font-family: inherit;
}

@media (max-width: 1120px) {
  .catalog-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .catalog-page {
    padding: 112px 16px 108px;
  }

  .catalog-hero h1 {
    font-size: 42px;
  }

  .catalog-actions-top {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-tools {
    padding: 18px;
    border-radius: 24px;
  }

  .catalog-category-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .category-chip {
    white-space: nowrap;
  }

  .catalog-product-grid {
    grid-template-columns: 1fr;
  }

  .catalog-product-body p {
    min-height: auto;
  }

  .floating-cart-btn {
    right: 14px;
    bottom: 74px;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 16px;
  }

  .cart-drawer {
    width: 100vw;
    padding: 18px;
  }
}

/* =========================
   AJUSTES FINAIS SOLICITADOS
   - Nome azul maior
   - Logo da chamada centralizada
   - Botão retirar do carrinho melhor
========================= */
.hero-kicker {
  font-size: 26px;
  letter-spacing: .22em;
  margin-bottom: 10px;
  text-shadow: 0 0 18px rgba(0, 174, 239, .30);
}

.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-cta img {
  display: block;
  margin: 0 auto 18px !important;
  transform: none;
  align-self: center;
}

.contact-cta span,
.contact-cta h2,
.contact-cta p {
  text-align: center;
}

.contact-cta .btn {
  align-self: center;
}

.cart-qty-row {
  flex-wrap: nowrap;
}

.cart-remove-btn {
  margin-left: auto;
  width: 34px !important;
  min-width: 34px !important;
  height: 34px !important;
  border-radius: 12px !important;
  display: inline-grid !important;
  place-items: center !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, rgba(255, 80, 80, .38), rgba(255, 80, 80, .18)) !important;
  border: 1px solid rgba(255, 120, 120, .42) !important;
  font-size: 22px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  overflow: hidden !important;
  padding: 0 !important;
  cursor: pointer;
  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease !important;
}

.cart-remove-btn:hover {
  transform: translateY(-2px) scale(1.06);
  filter: brightness(1.1);
  box-shadow: 0 10px 24px rgba(255, 80, 80, .18);
}

.cart-item {
  grid-template-columns: 70px minmax(0, 1fr);
}

.cart-item-info {
  min-width: 0;
}

.cart-item-info h3,
.cart-item-info p {
  padding-right: 4px;
}

@media (max-width: 720px) {
  .hero-kicker {
    font-size: 16px;
    letter-spacing: .18em;
    margin-bottom: 8px;
  }

  .cart-item {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .cart-remove-btn {
    width: 32px !important;
    min-width: 32px !important;
    height: 32px !important;
  }
}

/* =========================
   ABA PISCINAS
========================= */
.category-card-link {
  color: var(--text);
  text-decoration: none;
}

.piscinas-page {
  min-height: 100vh;
  padding: 142px 24px 120px;
  background:
    radial-gradient(circle at 18% 8%, rgba(0, 174, 239, .16), transparent 28%),
    radial-gradient(circle at 82% 28%, rgba(130, 207, 255, .10), transparent 30%),
    linear-gradient(180deg, #07233a 0%, #08314f 44%, #092941 100%);
}

.piscinas-hero {
  width: min(1280px, 100%);
  margin: 0 auto;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: center;
}

.piscinas-hero-copy h1 {
  max-width: 900px;
  margin: 16px 0;
  color: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .96;
  letter-spacing: -.065em;
}

.piscinas-hero-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.piscinas-hero-card {
  padding: 36px;
  border-radius: 38px;
  text-align: center;
  transform: none;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.piscinas-hero-card:hover {
  transform: translateY(-6px);
  border-color: rgba(130, 207, 255, .38);
  box-shadow: 0 28px 82px rgba(0,0,0,.22), 0 0 34px rgba(0,174,239,.12);
}

.piscinas-hero-card img {
  width: min(320px, 100%);
  display: block;
  margin: 0 auto 22px;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.34));
}

.piscinas-hero-card h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.piscinas-hero-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.piscinas-benefits {
  width: min(1280px, 100%);
  margin: -34px auto 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.piscinas-benefits article {
  padding: 26px;
  border-radius: 28px;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.piscinas-benefits article:hover {
  transform: translateY(-7px);
  border-color: rgba(130, 207, 255, .38);
  background: linear-gradient(180deg, rgba(255,255,255,.115), rgba(255,255,255,.065));
  box-shadow: 0 28px 82px rgba(0,0,0,.22), 0 0 34px rgba(0,174,239,.09);
}

.piscinas-benefits span {
  display: block;
  font-size: 34px;
  margin-bottom: 16px;
}

.piscinas-benefits strong {
  display: block;
  color: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 22px;
  margin-bottom: 8px;
}

.piscinas-benefits p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.piscinas-modelos-section {
  padding-top: 72px;
}

.piscinas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.piscina-card {
  overflow: hidden;
  border-radius: 34px;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.piscina-card:hover {
  transform: translateY(-7px);
  border-color: rgba(130, 207, 255, .38);
  background: linear-gradient(180deg, rgba(255,255,255,.115), rgba(255,255,255,.065));
  box-shadow: 0 28px 82px rgba(0,0,0,.22), 0 0 34px rgba(0,174,239,.09);
}

.piscina-media {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: rgba(0, 174, 239, .10);
}

.piscina-media img,
.piscina-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.16, 1, .3, 1), filter .35s ease;
}

.piscina-card:hover .piscina-media img,
.piscina-card:hover .piscina-media video {
  transform: scale(1.08);
  filter: brightness(1.08) saturate(1.08);
}

.piscina-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--pool-soft);
  font-weight: 900;
}

.piscina-body {
  padding: 26px;
}

.piscina-body span {
  color: var(--pool-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.piscina-body h3 {
  margin: 10px 0 10px;
  color: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 30px;
  line-height: 1.03;
  letter-spacing: -.035em;
}

.piscina-body p {
  color: var(--muted);
  line-height: 1.62;
  margin: 0 0 16px;
}

.piscina-body strong {
  display: block;
  color: var(--yellow);
  font-size: 19px;
  margin: 0 0 18px;
}

.piscina-body .btn {
  width: 100%;
  min-height: 54px;
}

.piscinas-info-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.piscinas-info-card,
.piscinas-info-list article {
  padding: 34px;
  border-radius: 34px;
}

.piscinas-info-card span {
  display: inline-block;
  color: var(--pool);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: .20em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}

.piscinas-info-card h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.piscinas-info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.piscinas-info-list {
  display: grid;
  gap: 16px;
}

.piscinas-info-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
}

.piscinas-info-list strong {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #071c2d;
  background: linear-gradient(135deg, var(--pool), var(--pool-soft));
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 24px;
}

.piscinas-info-list h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 24px;
}

.piscinas-info-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .piscinas-hero,
  .piscinas-info-section {
    grid-template-columns: 1fr;
  }

  .piscinas-hero-card {
    transform: none;
  }

  .piscinas-benefits,
  .piscinas-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .piscinas-page {
    padding: 112px 16px 108px;
  }

  .piscinas-hero {
    min-height: auto;
    gap: 24px;
  }

  .piscinas-hero-copy h1 {
    font-size: 44px;
  }

  .piscinas-hero-copy p {
    font-size: 16px;
  }

  .piscinas-benefits {
    grid-template-columns: 1fr;
    margin: 36px auto 0;
  }

  .piscinas-grid {
    grid-template-columns: 1fr;
  }

  .piscina-media {
    height: 250px;
  }

  .piscinas-info-list article {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .piscinas-info-list strong {
    margin: 0 auto;
  }
}

/* =========================
   CORREÇÃO FINAL
   - Card da aba Piscinas reto
   - Categorias da home bonitas quando viram links
========================= */
.piscinas-hero-card {
  transform: none !important;
  text-align: center !important;
}

.piscinas-hero-card:hover {
  transform: translateY(-6px) !important;
}

.piscinas-hero-card img {
  display: block !important;
  margin: 0 auto 22px !important;
  transform: none !important;
  rotate: 0deg !important;
}

.piscinas-hero-card h2,
.piscinas-hero-card p {
  text-align: center !important;
}

.category-grid .category-card-link {
  min-height: 150px;
  border-radius: 30px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  color: var(--text);
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255,255,255,.078), rgba(255,255,255,.048));
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.category-grid .category-card-link span {
  display: block;
  font-size: 36px;
  line-height: 1;
  margin: 0 0 12px;
  transition: transform .28s ease, color .28s ease, text-shadow .28s ease;
}

.category-grid .category-card-link strong {
  display: block;
  color: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  transition: color .25s ease, text-shadow .25s ease;
}

.category-grid .category-card-link:hover {
  transform: translateY(-7px);
  border-color: rgba(130,207,255,.38);
  background: linear-gradient(180deg, rgba(255,255,255,.115), rgba(255,255,255,.065));
  box-shadow: 0 28px 82px rgba(0,0,0,.22), 0 0 34px rgba(0,174,239,.09);
}

.category-grid .category-card-link:hover span {
  transform: translateY(-3px) scale(1.18) rotate(-5deg);
  color: var(--pool-soft);
  text-shadow: 0 0 18px rgba(0,174,239,.45);
}

.category-grid .category-card-link:hover strong {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(130,207,255,.24);
}

@media (max-width: 720px) {
  .category-grid .category-card-link {
    min-height: 124px;
    border-radius: 24px;
  }
}

/* =========================
   AJUSTE PROFISSIONAL
   - Seção "Como funciona" da aba Piscinas
   - Nome GALERIA maior na página inicial
========================= */
.piscinas-info-section {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 24px !important;
  align-items: stretch !important;
}

.piscinas-info-card {
  position: relative;
  overflow: hidden;
  padding: 46px !important;
  border-radius: 38px !important;
  min-height: auto !important;
  background:
    radial-gradient(circle at 84% 14%, rgba(0, 174, 239, .20), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.045)) !important;
}

.piscinas-info-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 310px;
  height: 310px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(130,207,255,.18), transparent 68%);
  pointer-events: none;
}

.piscinas-info-card span {
  display: inline-block !important;
  color: var(--pool) !important;
  font-family: "Hanken Grotesk", Arial, sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  font-size: 16px !important;
  margin-bottom: 14px !important;
}

.piscinas-info-card h2 {
  max-width: 760px;
  margin: 0 0 16px !important;
  color: #ffffff !important;
  font-family: "Hanken Grotesk", Arial, sans-serif !important;
  font-size: clamp(38px, 4.6vw, 64px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.055em !important;
}

.piscinas-info-card p {
  max-width: 850px;
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 18px !important;
  line-height: 1.75 !important;
}

.piscinas-info-list {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.piscinas-info-list article {
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 30px !important;
  min-height: 230px !important;
  border-radius: 32px !important;
  text-align: left !important;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease !important;
}

.piscinas-info-list article:hover {
  transform: translateY(-7px);
  border-color: rgba(130, 207, 255, .38);
  background: linear-gradient(180deg, rgba(255,255,255,.115), rgba(255,255,255,.065));
  box-shadow: 0 28px 82px rgba(0,0,0,.22), 0 0 34px rgba(0,174,239,.09);
}

.piscinas-info-list strong {
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  display: grid !important;
  place-items: center !important;
  margin: 0 0 6px !important;
  border-radius: 18px !important;
  color: #071c2d !important;
  background: linear-gradient(135deg, var(--pool), var(--pool-soft)) !important;
  font-family: "Hanken Grotesk", Arial, sans-serif !important;
  font-size: 24px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  box-shadow: 0 16px 34px rgba(0,174,239,.20);
}

.piscinas-info-list h3 {
  margin: 0 !important;
  color: #ffffff !important;
  font-family: "Hanken Grotesk", Arial, sans-serif !important;
  font-size: 26px !important;
  line-height: 1.08 !important;
  letter-spacing: -.025em !important;
}

.piscinas-info-list p {
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
}

.gallery-section .section-title span {
  font-size: 26px !important;
  letter-spacing: .28em !important;
  margin-bottom: 8px !important;
  text-shadow: 0 0 18px rgba(0, 174, 239, .30);
}

@media (max-width: 1024px) {
  .piscinas-info-list {
    grid-template-columns: 1fr !important;
  }

  .piscinas-info-list article {
    min-height: auto !important;
  }
}

@media (max-width: 720px) {
  .piscinas-info-card {
    padding: 32px 22px !important;
    border-radius: 30px !important;
  }

  .piscinas-info-card span,
  .gallery-section .section-title span {
    font-size: 16px !important;
    letter-spacing: .18em !important;
  }

  .piscinas-info-card h2 {
    font-size: 36px !important;
  }

  .piscinas-info-card p {
    font-size: 16px !important;
  }

  .piscinas-info-list article {
    padding: 24px !important;
    border-radius: 26px !important;
    text-align: left !important;
    align-items: flex-start !important;
  }
}

/* =========================
   AUMENTAR NOME PRODUTOS NA HOME
========================= */
.products-section .section-title span {
  font-size: 26px !important;
  letter-spacing: .28em !important;
  margin-bottom: 8px !important;
  text-shadow: 0 0 18px rgba(0, 174, 239, .30);
}

@media (max-width: 720px) {
  .products-section .section-title span {
    font-size: 16px !important;
    letter-spacing: .18em !important;
  }
}

/* =========================
   AUMENTAR NOME NOSSAS CATEGORIAS NA HOME
========================= */
.categories .section-title span {
  font-size: 26px !important;
  letter-spacing: .28em !important;
  margin-bottom: 8px !important;
  text-shadow: 0 0 18px rgba(0, 174, 239, .30);
}

@media (max-width: 720px) {
  .categories .section-title span {
    font-size: 16px !important;
    letter-spacing: .18em !important;
  }
}

/* =========================
   ABA PROMOÇÕES
   Não altera slides/banners
========================= */
.promocoes-page {
  min-height: 100vh;
  padding: 142px 24px 120px;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 215, 0, .14), transparent 28%),
    radial-gradient(circle at 82% 28%, rgba(0, 174, 239, .12), transparent 30%),
    linear-gradient(180deg, #07233a 0%, #08314f 44%, #092941 100%);
}

.promocoes-hero {
  width: min(1280px, 100%);
  margin: 0 auto;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: center;
}

.promocoes-hero-copy h1 {
  max-width: 980px;
  margin: 16px 0;
  color: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .96;
  letter-spacing: -.065em;
}

.promocoes-hero-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.promocoes-hero-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 38px;
  text-align: center;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 215, 0, .20), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.promocoes-hero-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 215, 0, .38);
  box-shadow: 0 28px 82px rgba(0,0,0,.22), 0 0 34px rgba(255,215,0,.10);
}

.promocoes-hero-card img {
  width: min(280px, 100%);
  display: block;
  margin: 22px auto;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.34));
}

.promocoes-hero-card h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.promocoes-hero-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.promo-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  color: #071c2d;
  background: linear-gradient(135deg, #ffd700, #fff1a5);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .10em;
  font-size: 12px;
  box-shadow: 0 14px 30px rgba(255, 215, 0, .18);
}

.promocoes-strip {
  width: min(1280px, 100%);
  margin: -24px auto 36px;
  padding: 24px 30px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.promocoes-strip span {
  font-size: 32px;
}

.promocoes-strip strong {
  color: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 24px;
}

.promocoes-strip p {
  margin: 0 0 0 auto;
  color: var(--muted);
}

.promocoes-list-section {
  padding-top: 72px;
}

.promocoes-list-section .section-title span {
  font-size: 26px !important;
  letter-spacing: .28em !important;
  margin-bottom: 8px !important;
  text-shadow: 0 0 18px rgba(255, 215, 0, .25);
}

.promocoes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.promocao-card {
  overflow: hidden;
  border-radius: 34px;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.promocao-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 215, 0, .36);
  background: linear-gradient(180deg, rgba(255,255,255,.115), rgba(255,255,255,.065));
  box-shadow: 0 28px 82px rgba(0,0,0,.22), 0 0 34px rgba(255,215,0,.09);
}

.promocao-media {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: rgba(255, 215, 0, .08);
}

.promocao-media img,
.promocao-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.16, 1, .3, 1), filter .35s ease;
}

.promocao-card:hover .promocao-media img,
.promocao-card:hover .promocao-media video {
  transform: scale(1.08);
  filter: brightness(1.08) saturate(1.08);
}

.promocao-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--pool-soft);
  font-weight: 900;
}

.promocao-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  color: #071c2d;
  background: linear-gradient(135deg, #ffd700, #fff1a5);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-weight: 900;
  font-size: 12px;
}

.promocao-body {
  padding: 26px;
}

.promocao-body span {
  color: var(--pool-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.promocao-body h3 {
  margin: 10px 0 10px;
  color: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 30px;
  line-height: 1.03;
  letter-spacing: -.035em;
}

.promocao-body p {
  color: var(--muted);
  line-height: 1.62;
  margin: 0 0 16px;
}

.promocao-body strong {
  display: block;
  color: var(--yellow);
  font-size: 19px;
  margin: 0 0 18px;
}

.promocao-body .btn {
  width: 100%;
  min-height: 54px;
}

.promocoes-info-section {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

.promocoes-info-card {
  position: relative;
  overflow: hidden;
  padding: 46px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 215, 0, .18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
}

.promocoes-info-card span {
  display: inline-block;
  color: var(--pool);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 14px;
}

.promocoes-info-card h2 {
  max-width: 760px;
  margin: 0 0 16px;
  color: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.promocoes-info-card p {
  max-width: 850px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.promocoes-info-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.promocoes-info-list article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 30px;
  min-height: 210px;
  border-radius: 32px;
  text-align: left;
}

.promocoes-info-list strong {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #071c2d;
  background: linear-gradient(135deg, #ffd700, #fff1a5);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 24px;
}

.promocoes-info-list h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 26px;
  line-height: 1.08;
}

.promocoes-info-list p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .promocoes-hero,
  .promocoes-info-section {
    grid-template-columns: 1fr;
  }

  .promocoes-grid,
  .promocoes-info-list {
    grid-template-columns: 1fr 1fr;
  }

  .promocoes-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .promocoes-strip p {
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .promocoes-page {
    padding: 112px 16px 108px;
  }

  .promocoes-hero {
    min-height: auto;
    gap: 24px;
  }

  .promocoes-hero-copy h1 {
    font-size: 44px;
  }

  .promocoes-hero-copy p,
  .promocoes-info-card p {
    font-size: 16px;
  }

  .promocoes-hero-card,
  .promocoes-info-card {
    padding: 32px 22px;
    border-radius: 30px;
  }

  .promocoes-grid,
  .promocoes-info-list {
    grid-template-columns: 1fr;
  }

  .promocao-media {
    height: 250px;
  }

  .promocoes-list-section .section-title span,
  .promocoes-info-card span {
    font-size: 16px !important;
    letter-spacing: .18em !important;
  }

  .promocoes-info-list article {
    min-height: auto;
  }
}

/* =========================
   MELHORIA DO AVISO DA ABA PROMOÇÕES
========================= */
.promocoes-strip {
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.promocoes-strip-badge {
  min-width: 164px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #071c2d;
  background: linear-gradient(135deg, #ffd700, #fff1a5);
  box-shadow: 0 14px 30px rgba(255, 215, 0, .18);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  white-space: nowrap;
}

.promocoes-strip-copy {
  flex: 1;
  display: grid;
  gap: 6px;
}

.promocoes-strip-copy strong {
  color: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 25px;
  line-height: 1.1;
}

.promocoes-strip-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 720px) {
  .promocoes-strip {
    align-items: flex-start;
  }

  .promocoes-strip-badge {
    min-width: auto;
  }

  .promocoes-strip-copy strong {
    font-size: 22px;
  }
}

/* =========================
   ABA SOBRE NÓS
========================= */
.sobre-page {
  min-height: 100vh;
  padding: 142px 24px 120px;
  background:
    radial-gradient(circle at 18% 8%, rgba(0, 174, 239, .16), transparent 28%),
    radial-gradient(circle at 82% 28%, rgba(130, 207, 255, .10), transparent 30%),
    linear-gradient(180deg, #07233a 0%, #08314f 44%, #092941 100%);
}

.sobre-hero {
  width: min(1280px, 100%);
  margin: 0 auto;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: center;
}

.sobre-hero-copy h1 {
  max-width: 980px;
  margin: 16px 0;
  color: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .96;
  letter-spacing: -.065em;
}

.sobre-hero-copy p {
  max-width: 780px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.sobre-hero-card {
  padding: 38px;
  border-radius: 38px;
  text-align: center;
  background:
    radial-gradient(circle at 84% 14%, rgba(0, 174, 239, .18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.sobre-hero-card:hover {
  transform: translateY(-6px);
  border-color: rgba(130, 207, 255, .38);
  box-shadow: 0 28px 82px rgba(0,0,0,.22), 0 0 34px rgba(0,174,239,.12);
}

.sobre-hero-card img {
  width: min(300px, 100%);
  display: block;
  margin: 0 auto 22px;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.34));
}

.sobre-hero-card span,
.sobre-story-card span,
.sobre-location-card span,
.sobre-cta-card span {
  display: inline-block;
  color: var(--pool);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: .20em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}

.sobre-hero-card h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.sobre-hero-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.sobre-proof-grid {
  width: min(1280px, 100%);
  margin: -24px auto 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sobre-proof-grid article {
  padding: 28px;
  border-radius: 30px;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.sobre-proof-grid article:hover,
.sobre-services-grid article:hover,
.sobre-study-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(130, 207, 255, .38);
  background: linear-gradient(180deg, rgba(255,255,255,.115), rgba(255,255,255,.065));
  box-shadow: 0 28px 82px rgba(0,0,0,.22), 0 0 34px rgba(0,174,239,.09);
}

.sobre-proof-grid article span,
.sobre-services-grid article span {
  display: block;
  font-size: 36px;
  margin-bottom: 16px;
}

.sobre-proof-grid strong,
.sobre-services-grid strong {
  display: block;
  color: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 22px;
  margin-bottom: 8px;
}

.sobre-proof-grid p,
.sobre-services-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.sobre-story-section {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: stretch;
}

.sobre-story-card,
.sobre-location-card,
.sobre-cta-card {
  padding: 42px;
  border-radius: 38px;
}

.sobre-story-card h2,
.sobre-cta-card h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.sobre-story-card p,
.sobre-location-card p,
.sobre-cta-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.sobre-location-card h3 {
  margin: 0 0 18px;
  color: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.sobre-location-card .btn {
  margin-top: 20px;
  width: 100%;
}

.sobre-study-section .section-title span,
.sobre-services-section .section-title span {
  font-size: 26px !important;
  letter-spacing: .28em !important;
  margin-bottom: 8px !important;
  text-shadow: 0 0 18px rgba(0, 174, 239, .30);
}

.sobre-study-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sobre-study-grid article {
  padding: 30px;
  border-radius: 32px;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.sobre-study-grid strong {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  color: #071c2d;
  background: linear-gradient(135deg, var(--pool), var(--pool-soft));
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 24px;
}

.sobre-study-grid h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 25px;
  line-height: 1.08;
}

.sobre-study-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.sobre-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sobre-services-grid article {
  padding: 28px;
  border-radius: 30px;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.sobre-cta-section {
  padding-bottom: 20px;
}

.sobre-cta-card {
  width: min(1180px, 100%);
  margin: 0 auto;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(130, 207, 255, .18), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
}

.sobre-cta-card img {
  width: min(280px, 100%);
  display: block;
  margin: 0 auto 22px;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.30));
}

.sobre-cta-card .btn {
  margin-top: 18px;
}

@media (max-width: 1024px) {
  .sobre-hero,
  .sobre-story-section {
    grid-template-columns: 1fr;
  }

  .sobre-proof-grid,
  .sobre-study-grid,
  .sobre-services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .sobre-page {
    padding: 112px 16px 108px;
  }

  .sobre-hero {
    min-height: auto;
    gap: 24px;
  }

  .sobre-hero-copy h1 {
    font-size: 44px;
  }

  .sobre-hero-copy p,
  .sobre-story-card p,
  .sobre-location-card p,
  .sobre-cta-card p {
    font-size: 16px;
  }

  .sobre-proof-grid {
    margin: 36px auto 0;
  }

  .sobre-proof-grid,
  .sobre-study-grid,
  .sobre-services-grid {
    grid-template-columns: 1fr;
  }

  .sobre-story-card,
  .sobre-location-card,
  .sobre-cta-card,
  .sobre-hero-card {
    padding: 30px 22px;
    border-radius: 30px;
  }

  .sobre-study-section .section-title span,
  .sobre-services-section .section-title span {
    font-size: 16px !important;
    letter-spacing: .18em !important;
  }
}

/* =========================
   AJUSTE SOBRE NÓS LIMPO
   - Remove sobreposição dos cards
   - Página somente com informações da loja
========================= */
.sobre-page-clean {
  padding-top: 178px !important;
  padding-bottom: 110px !important;
}

.sobre-hero-clean {
  min-height: auto !important;
  padding-bottom: 42px !important;
  align-items: center !important;
}

.sobre-hero-clean .sobre-hero-copy h1 {
  font-size: clamp(46px, 5.8vw, 82px) !important;
}

.sobre-proof-grid-clean {
  margin: 0 auto 42px !important;
  position: relative !important;
  z-index: 2 !important;
}

.sobre-proof-grid-clean article {
  min-height: 205px !important;
}

.sobre-story-section-clean {
  padding-top: 34px !important;
  align-items: stretch !important;
}

.sobre-info-section {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding-top: 70px;
}

.sobre-info-section .section-title span {
  font-size: 26px !important;
  letter-spacing: .28em !important;
  margin-bottom: 8px !important;
  text-shadow: 0 0 18px rgba(0, 174, 239, .30);
}

.sobre-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sobre-info-grid article {
  padding: 30px;
  border-radius: 32px;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.sobre-info-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(130, 207, 255, .38);
  background: linear-gradient(180deg, rgba(255,255,255,.115), rgba(255,255,255,.065));
  box-shadow: 0 28px 82px rgba(0,0,0,.22), 0 0 34px rgba(0,174,239,.09);
}

.sobre-info-grid strong {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  color: #071c2d;
  background: linear-gradient(135deg, var(--pool), var(--pool-soft));
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.sobre-info-grid h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 25px;
  line-height: 1.08;
}

.sobre-info-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.sobre-location-card strong {
  color: #ffffff;
}

.sobre-study-section,
.sobre-services-section,
.sobre-cta-section {
  display: none !important;
}

@media (max-width: 1024px) {
  .sobre-page-clean {
    padding-top: 145px !important;
  }

  .sobre-proof-grid-clean,
  .sobre-info-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 720px) {
  .sobre-page-clean {
    padding-top: 116px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .sobre-hero-clean {
    padding-bottom: 28px !important;
  }

  .sobre-hero-clean .sobre-hero-copy h1 {
    font-size: 42px !important;
  }

  .sobre-proof-grid-clean,
  .sobre-info-grid {
    grid-template-columns: 1fr !important;
  }

  .sobre-info-section .section-title span {
    font-size: 16px !important;
    letter-spacing: .18em !important;
  }
}

/* =========================
   ANIMAÇÃO FINAL SEM MODO PARADO
   Corrige digitação parada, cards parados e reveal parado.
========================= */
.bg-bubble-container,
#heroBubbles {
  display: block !important;
  visibility: visible !important;
  pointer-events: none !important;
}

.bubble {
  position: absolute;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.82), rgba(130,207,255,.36) 42%, rgba(0,174,239,.10) 70%, transparent 100%);
  border: 1px solid rgba(255,255,255,.20);
  box-shadow:
    inset 0 0 10px rgba(255,255,255,.20),
    0 0 18px rgba(130,207,255,.15);
  pointer-events: none;
  will-change: transform, opacity;
}

.page-bubble,
.hero-bubble {
  display: block !important;
  visibility: visible !important;
  animation-name: patosBubbleUpFinal !important;
  animation-timing-function: linear !important;
  animation-iteration-count: infinite !important;
}

.page-bubble {
  bottom: -90px;
  z-index: 6;
}

.hero-bubble {
  bottom: -90px;
  z-index: 3;
}

@keyframes patosBubbleUpFinal {
  0% {
    transform: translate3d(0, 0, 0) scale(.60);
    opacity: 0;
  }

  12% {
    opacity: .42;
  }

  82% {
    opacity: .32;
  }

  100% {
    transform: translate3d(0, -128vh, 0) scale(1.14);
    opacity: 0;
  }
}

.hero h1::after {
  animation: patosCursorBlinkFinal .85s steps(2, start) infinite !important;
}

@keyframes patosCursorBlinkFinal {
  0%, 50% {
    opacity: 1;
  }

  51%, 100% {
    opacity: 0;
  }
}

/* Reveal: ícones/cards voltam a aparecer com movimento ao descer a página */
.reveal {
  opacity: 0 !important;
  transform: translate3d(0, 34px, 0) scale(.985) !important;
  transition:
    opacity .72s cubic-bezier(.16, 1, .3, 1),
    transform .72s cubic-bezier(.16, 1, .3, 1) !important;
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
}

/* Botões e cards com vida no desktop */
.btn,
.whatsapp-top,
.floating-whatsapp,
.hero-mini-cards article,
.category-grid article,
.category-card-link,
.catalog-product-card,
.promocao-card,
.piscina-card,
.gallery-card,
.sobre-proof-grid article,
.sobre-info-grid article,
.glass-card {
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease,
    background .28s ease,
    opacity .28s ease !important;
}

.btn:hover,
.whatsapp-top:hover,
.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.02) !important;
}

.hero-mini-cards article:hover,
.category-grid article:hover,
.category-card-link:hover,
.catalog-product-card:hover,
.promocao-card:hover,
.piscina-card:hover,
.gallery-card:hover,
.sobre-proof-grid article:hover,
.sobre-info-grid article:hover {
  transform: translateY(-8px) scale(1.015) !important;
  border-color: rgba(130, 207, 255, .42) !important;
  box-shadow: 0 28px 70px rgba(0,0,0,.22), 0 0 30px rgba(0,174,239,.12) !important;
}

/* Movimento sutil nos ícones dos cards */
.hero-mini-cards article > span,
.category-grid article > span,
.category-card-link > span,
.sobre-proof-grid article > span,
.sobre-info-grid article > strong {
  display: inline-grid;
  animation: patosIconFloatFinal 3.4s ease-in-out infinite !important;
}

@keyframes patosIconFloatFinal {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -5px, 0);
  }
}

/* WhatsApp pulsando */
.pulse-whatsapp,
.floating-whatsapp {
  animation: patosWhatsappPulseFinal 2.5s ease-in-out infinite !important;
}

@keyframes patosWhatsappPulseFinal {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow: 0 12px 28px rgba(37, 211, 102, .24);
  }

  50% {
    transform: translate3d(0, -2px, 0) scale(1.025);
    box-shadow: 0 18px 38px rgba(37, 211, 102, .34);
  }
}

/* Mobile: mantém animação, mas tira só o peso que dava lag */
@media (max-width: 820px), (hover: none) and (pointer: coarse) {
  .header-inner,
  .glass-card,
  .hero-mini-cards article,
  .category-grid article,
  .category-card-link,
  .catalog-product-card,
  .promocao-card,
  .gallery-card,
  .footer-cta,
  .site-footer {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .hero-bg video {
    display: none !important;
  }

  .site-header {
    padding: 10px 12px !important;
  }

  .site-header.scrolled {
    padding: 7px 12px !important;
  }

  .header-inner {
    min-height: 62px !important;
    padding: 0 12px !important;
    border-radius: 0 0 22px 22px !important;
    background: rgba(7,25,39,.88) !important;
  }

  .brand {
    gap: 9px !important;
  }

  .brand-logo {
    width: 58px !important;
    min-width: 58px !important;
    padding: 5px !important;
    border-radius: 13px !important;
  }

  .brand-logo img {
    max-height: 36px !important;
  }

  .brand strong {
    font-size: 13px !important;
    letter-spacing: 0 !important;
  }

  .whatsapp-top {
    min-height: 44px !important;
    padding: 0 14px !important;
    border-radius: 16px !important;
    font-size: 13px !important;
  }

  .hero {
    min-height: auto !important;
    padding: 96px 16px 76px !important;
  }

  .hero-content {
    min-height: auto !important;
    padding-top: 0 !important;
  }

  .hero-copy {
    max-width: 100% !important;
  }

  .hero h1 {
    min-height: 150px !important;
    font-size: clamp(42px, 13vw, 58px) !important;
    line-height: .97 !important;
  }

  .hero-buttons {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .hero-buttons .btn {
    width: 100% !important;
  }

  .hero-mini-cards,
  .category-grid,
  .product-grid,
  .catalog-products-grid,
  .promocoes-grid,
  .piscinas-modelos-grid,
  .gallery-grid,
  .sobre-proof-grid,
  .sobre-proof-grid-clean,
  .sobre-info-grid,
  .sobre-story-section,
  .sobre-story-section-clean {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .section,
  .products-section,
  .gallery-section,
  .categories,
  .catalog-products-section,
  .promocoes-list-section,
  .piscinas-modelos-section,
  .sobre-info-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
    content-visibility: auto !important;
    contain-intrinsic-size: 760px !important;
  }

  .floating-whatsapp {
    right: 14px !important;
    bottom: 78px !important;
  }

  .btn:hover,
  .whatsapp-top:hover,
  .floating-whatsapp:hover,
  .hero-mini-cards article:hover,
  .category-grid article:hover,
  .category-card-link:hover,
  .catalog-product-card:hover,
  .promocao-card:hover,
  .piscina-card:hover,
  .gallery-card:hover {
    transform: none !important;
  }

  .btn:active,
  .whatsapp-top:active,
  .floating-whatsapp:active,
  .hero-mini-cards article:active,
  .category-grid article:active,
  .category-card-link:active,
  .catalog-product-card:active,
  .promocao-card:active,
  .piscina-card:active,
  .gallery-card:active {
    transform: scale(.985) !important;
  }
}

/* Cart pill final override: mostra o carrinho quando houver itens. */
@media (max-width: 820px), (hover: none) and (pointer: coarse) {
  .floating-cart-btn.has-items {
    position: fixed !important;
    left: auto !important;
    right: 14px !important;
    bottom: 16px !important;
    z-index: 104 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    width: 62px !important;
    min-width: 62px !important;
    max-width: 62px !important;
    height: 62px !important;
    min-height: 62px !important;
    padding: 0 !important;
    border-radius: 22px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #00aeef, #25d366) !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .34), 0 0 0 1px rgba(255,255,255,.12) inset !important;
  }

  body.cart-open .floating-cart-btn.has-items {
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* Carrinho profissional: desktop refinado e mobile sem tela presa. */
body.cart-open {
  overflow: hidden !important;
}

.cart-drawer {
  max-width: 460px;
}

.cart-items {
  scrollbar-width: thin;
  scrollbar-color: rgba(130, 207, 255, .42) rgba(255, 255, 255, .06);
}

.cart-item {
  align-items: start;
}

.cart-remove-btn {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  border-radius: 12px !important;
  font-size: 20px !important;
  line-height: 1 !important;
}

@media (min-width: 821px) {
  .cart-drawer {
    top: 18px;
    right: 18px;
    height: calc(100vh - 36px);
    border: 1px solid rgba(130, 207, 255, .20);
    border-radius: 30px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .42);
  }

  .cart-backdrop {
    backdrop-filter: blur(3px);
  }
}

@media (max-width: 820px), (hover: none) and (pointer: coarse) {
  .cart-backdrop {
    z-index: 160 !important;
    background: rgba(1, 12, 20, .62) !important;
    backdrop-filter: none !important;
    transition: opacity .2s ease, visibility .2s ease !important;
  }

  .cart-drawer {
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 170 !important;
    width: 100% !important;
    max-width: none !important;
    height: min(86vh, 760px) !important;
    padding: 0 !important;
    border-left: 0 !important;
    border-top: 1px solid rgba(130, 207, 255, .22) !important;
    border-radius: 28px 28px 0 0 !important;
    background:
      radial-gradient(circle at 18% 0%, rgba(0, 174, 239, .16), transparent 30%),
      linear-gradient(180deg, rgba(7, 31, 50, .99), rgba(5, 19, 31, .99)) !important;
    box-shadow: 0 -18px 56px rgba(0, 0, 0, .48) !important;
    transform: translateY(104%) !important;
    transition: transform .28s cubic-bezier(.16, 1, .3, 1) !important;
  }

  .cart-drawer.open {
    transform: translateY(0) !important;
  }

  .cart-drawer::before {
    content: "";
    width: 52px;
    height: 5px;
    margin: 10px auto 2px;
    border-radius: 999px;
    background: rgba(232, 247, 255, .30);
    flex: 0 0 auto;
  }

  .cart-drawer-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 2 !important;
    align-items: center !important;
    padding: 10px 14px 12px !important;
    background: rgba(7, 31, 50, .98) !important;
    border-bottom-color: rgba(130, 207, 255, .16) !important;
  }

  .cart-drawer-header span {
    font-size: 10px !important;
    letter-spacing: .18em !important;
  }

  .cart-drawer-header h2 {
    margin-top: 2px !important;
    font-size: 22px !important;
    line-height: 1.05 !important;
  }

  .cart-close-btn {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, .10) !important;
  }

  .cart-items {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    padding: 12px 12px 10px !important;
    gap: 10px !important;
  }

  .cart-item {
    grid-template-columns: 54px 1fr !important;
    min-height: auto !important;
    padding: 10px !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, .07) !important;
    box-shadow: none !important;
  }

  .cart-item-img {
    width: 54px !important;
    height: 54px !important;
    border-radius: 14px !important;
  }

  .cart-item-info {
    min-width: 0 !important;
  }

  .cart-item-info h3 {
    font-size: 14px !important;
    line-height: 1.2 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .cart-item-info p {
    margin-bottom: 8px !important;
    font-size: 12px !important;
  }

  .cart-qty-row {
    gap: 7px !important;
    flex-wrap: nowrap !important;
  }

  .cart-qty-row button {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    border-radius: 12px !important;
  }

  .cart-remove-btn {
    margin-left: auto !important;
    background: rgba(255, 80, 80, .22) !important;
  }

  .cart-empty {
    margin: 14px 12px !important;
    padding: 22px 16px !important;
  }

  .cart-footer {
    flex: 0 0 auto !important;
    padding: 12px 12px calc(12px + env(safe-area-inset-bottom)) !important;
    background: rgba(5, 19, 31, .99) !important;
    border-top-color: rgba(130, 207, 255, .16) !important;
  }

  .cart-summary {
    margin-bottom: 10px !important;
    font-size: 14px !important;
  }

  .cart-summary strong {
    font-size: 20px !important;
  }

  .cart-whatsapp-btn,
  .cart-continue-btn,
  .cart-clear-btn {
    min-height: 48px !important;
    border-radius: 16px !important;
    font-size: 13px !important;
  }

  .cart-clear-btn {
    min-height: 44px !important;
  }

  .floating-cart-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    left: auto !important;
    right: 14px !important;
    bottom: 16px !important;
    z-index: 104 !important;
    width: 62px !important;
    min-width: 62px !important;
    max-width: 62px !important;
    height: 62px !important;
    min-height: 62px !important;
    padding: 0 !important;
    border-radius: 22px !important;
    font-size: 14px !important;
    background: linear-gradient(135deg, #00aeef, #25d366) !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .34), 0 0 0 1px rgba(255,255,255,.12) inset !important;
    transform: translateY(10px) scale(.96) !important;
  }

  .floating-cart-btn:not(.has-items) {
    display: none !important;
  }

  .floating-cart-btn.has-items {
    transform: translateY(0) scale(1) !important;
  }

  .floating-cart-icon {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    border-radius: 13px !important;
  }

  .floating-cart-label {
    display: none !important;
  }

  .floating-cart-total {
    position: absolute !important;
    top: -7px !important;
    right: -7px !important;
    min-width: 26px !important;
    height: 26px !important;
    padding: 0 7px !important;
    border: 2px solid #06314f !important;
    font-size: 12px !important;
  }

  body.cart-open .mobile-menu-toggle,
  body.cart-open .floating-whatsapp,
  body.cart-open .floating-cart-btn,
  body.cart-open .mobile-nav {
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* =========================
   MOBILE ULTRA OTIMIZADO SEM LAG
   Somente celular. Desktop permanece como está.
========================= */
@media (max-width: 820px), (hover: none) and (pointer: coarse) {
  html {
    scroll-behavior: auto !important;
  }

  body {
    overflow-x: hidden !important;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeSpeed;
  }

  /* mantém bolhas, mas leves */
  .bg-bubble-container,
  #heroBubbles {
    display: block !important;
    visibility: visible !important;
    opacity: .78 !important;
    pointer-events: none !important;
    contain: layout style paint !important;
  }

  .bubble,
  .page-bubble,
  .hero-bubble {
    display: block !important;
    visibility: visible !important;
    filter: none !important;
    box-shadow:
      inset 0 0 6px rgba(255,255,255,.16),
      0 0 8px rgba(130,207,255,.10) !important;
    animation-name: patosMobileBubbleUltra !important;
    animation-timing-function: linear !important;
    animation-iteration-count: infinite !important;
    will-change: transform, opacity !important;
  }

  @keyframes patosMobileBubbleUltra {
    0% {
      transform: translate3d(0, 0, 0) scale(.62);
      opacity: 0;
    }

    16% {
      opacity: .30;
    }

    78% {
      opacity: .22;
    }

    100% {
      transform: translate3d(0, -112vh, 0) scale(1.04);
      opacity: 0;
    }
  }

  /* remove os pesos que travam no celular, sem mudar desktop */
  .header-inner,
  .glass-card,
  .hero-mini-cards article,
  .category-grid article,
  .category-card-link,
  .catalog-product-card,
  .promocao-card,
  .piscina-card,
  .gallery-card,
  .sobre-proof-grid article,
  .sobre-info-grid article,
  .sobre-story-card,
  .sobre-location-card,
  .sobre-hero-card,
  .footer-cta,
  .site-footer,
  .mobile-nav {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 0 10px 24px rgba(0,0,0,.14) !important;
  }

  .hero-bg video,
  .heroBgVideo {
    display: none !important;
  }

  .hero-bg img,
  .hero-bg .hero-slide-media,
  .catalog-product-media img,
  .catalog-product-media video,
  .promocao-media img,
  .promocao-media video,
  .gallery-media img,
  .gallery-media video {
    filter: none !important;
    transform: none !important;
    animation: none !important;
    will-change: auto !important;
    transition: opacity .22s ease !important;
  }

  .hero-ripple,
  .light-ray {
    display: none !important;
  }

  .site-header {
    padding: 8px 10px !important;
  }

  .site-header.scrolled {
    padding: 6px 10px !important;
  }

  .header-inner {
    min-height: 60px !important;
    padding: 0 10px !important;
    border-radius: 0 0 20px 20px !important;
    background: rgba(7,25,39,.94) !important;
  }

  .brand {
    gap: 8px !important;
  }

  .brand-logo {
    width: 54px !important;
    min-width: 54px !important;
    padding: 5px !important;
    border-radius: 13px !important;
  }

  .brand-logo img {
    max-height: 34px !important;
  }

  .brand strong {
    font-size: 12px !important;
    letter-spacing: 0 !important;
  }

  .main-menu {
    display: none !important;
  }

  .whatsapp-top {
    min-height: 42px !important;
    padding: 0 13px !important;
    border-radius: 15px !important;
    font-size: 13px !important;
  }

  .hero {
    min-height: auto !important;
    padding: 92px 15px 70px !important;
  }

  .hero-content {
    min-height: auto !important;
    padding-top: 0 !important;
  }

  .hero-copy {
    max-width: 100% !important;
  }

  .hero h1 {
    min-height: 132px !important;
    font-size: clamp(39px, 12.5vw, 54px) !important;
    line-height: .98 !important;
  }

  .hero p {
    font-size: 15.5px !important;
    line-height: 1.55 !important;
  }

  .hero h1::after {
    animation: patosMobileCursor .9s steps(2, start) infinite !important;
  }

  @keyframes patosMobileCursor {
    0%, 50% {
      opacity: 1;
    }

    51%, 100% {
      opacity: 0;
    }
  }

  .hero-buttons {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .hero-buttons .btn,
  .btn {
    width: 100% !important;
    min-height: 52px !important;
    border-radius: 16px !important;
  }

  .hero-mini-cards,
  .category-grid,
  .product-grid,
  .catalog-products-grid,
  .promocoes-grid,
  .piscinas-modelos-grid,
  .gallery-grid,
  .sobre-proof-grid,
  .sobre-proof-grid-clean,
  .sobre-info-grid,
  .sobre-story-section,
  .sobre-story-section-clean,
  .promocoes-info-list,
  .piscinas-info-list {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .hero-mini-cards article,
  .category-grid article,
  .category-card-link,
  .catalog-product-card,
  .promocao-card,
  .piscina-card,
  .gallery-card,
  .sobre-proof-grid article,
  .sobre-info-grid article {
    min-height: auto !important;
    border-radius: 22px !important;
    transition: transform .16s ease, border-color .16s ease, background .16s ease !important;
  }

  .hero-mini-cards article:hover,
  .category-grid article:hover,
  .category-card-link:hover,
  .catalog-product-card:hover,
  .promocao-card:hover,
  .piscina-card:hover,
  .gallery-card:hover,
  .sobre-proof-grid article:hover,
  .sobre-info-grid article:hover,
  .btn:hover,
  .whatsapp-top:hover,
  .floating-whatsapp:hover {
    transform: none !important;
  }

  .hero-mini-cards article:active,
  .category-grid article:active,
  .category-card-link:active,
  .catalog-product-card:active,
  .promocao-card:active,
  .piscina-card:active,
  .gallery-card:active,
  .sobre-proof-grid article:active,
  .sobre-info-grid article:active,
  .btn:active,
  .whatsapp-top:active,
  .floating-whatsapp:active {
    transform: scale(.985) !important;
  }

  .hero-mini-cards article > span,
  .category-grid article > span,
  .category-card-link > span,
  .sobre-proof-grid article > span,
  .sobre-info-grid article > strong {
    animation: patosMobileIconFloat 4.2s ease-in-out infinite !important;
    will-change: transform !important;
  }

  @keyframes patosMobileIconFloat {
    0%, 100% {
      transform: translate3d(0, 0, 0);
    }

    50% {
      transform: translate3d(0, -3px, 0);
    }
  }

  .section,
  .products-section,
  .gallery-section,
  .categories,
  .catalog-products-section,
  .promocoes-list-section,
  .piscinas-modelos-section,
  .sobre-info-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    content-visibility: auto !important;
    contain-intrinsic-size: 760px !important;
  }

  .reveal {
    opacity: 0 !important;
    transform: translate3d(0, 18px, 0) scale(.992) !important;
    transition: opacity .42s ease, transform .42s ease !important;
    will-change: opacity, transform !important;
  }

  .reveal.active {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
  }

  .catalog-product-media,
  .promocao-media,
  .gallery-media {
    height: 205px !important;
  }

  .catalog-product-card:hover img,
  .catalog-product-card:hover video,
  .promocao-card:hover img,
  .promocao-card:hover video,
  .gallery-card:hover img,
  .gallery-card:hover video {
    transform: none !important;
  }

  .floating-whatsapp {
    right: 14px !important;
    bottom: 78px !important;
    min-height: 54px !important;
    padding: 0 16px !important;
    border-radius: 18px !important;
  }

  .pulse-whatsapp,
  .floating-whatsapp {
    animation: patosMobileWhatsappPulse 3.1s ease-in-out infinite !important;
    will-change: transform !important;
  }

  @keyframes patosMobileWhatsappPulse {
    0%, 100% {
      transform: translate3d(0,0,0) scale(1);
    }

    50% {
      transform: translate3d(0,-1px,0) scale(1.018);
    }
  }

  .footer-grid,
  .footer-bottom,
  .footer-contacts,
  .footer-socials {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 18px !important;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    min-height: 126px !important;
    font-size: 39px !important;
  }

  .catalog-product-media,
  .promocao-media,
  .gallery-media {
    height: 190px !important;
  }
}

/* =========================
   MOBILE NAV COMPLETO SEM CARRINHO FLUTUANTE
   Somente celular. Desktop não foi alterado.
========================= */
@media (max-width: 820px), (hover: none) and (pointer: coarse) {
  /* Mostra todos os botões do menu no celular */
  .mobile-nav {
    position: fixed !important;
    left: 6px !important;
    right: 6px !important;
    bottom: 7px !important;
    z-index: 90 !important;
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 3px !important;
    padding: 7px 5px !important;
    min-height: 48px !important;
    border-radius: 18px !important;
    background: rgba(7, 25, 39, .96) !important;
    border: 1px solid rgba(130, 207, 255, .16) !important;
    box-shadow: 0 10px 22px rgba(0,0,0,.24) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .mobile-nav a,
  .mobile-nav button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 0 !important;
    min-height: 34px !important;
    padding: 0 2px !important;
    border: 0 !important;
    border-radius: 12px !important;
    color: rgba(234, 247, 255, .78) !important;
    background: transparent !important;
    text-decoration: none !important;
    text-align: center !important;
    font-family: inherit !important;
    font-size: 9.4px !important;
    line-height: 1.05 !important;
    font-weight: 900 !important;
    letter-spacing: -0.02em !important;
    white-space: normal !important;
    overflow: hidden !important;
  }

  .mobile-nav a:active,
  .mobile-nav button:active {
    transform: scale(.96) !important;
    background: rgba(0, 174, 239, .12) !important;
    color: #ffffff !important;
  }

  /* Remove apenas no celular o carrinho flutuante que ficava em cima da página */
  .floating-cart-btn {
    display: none !important;
  }

  /* Garante espaço para o menu inferior não cobrir conteúdo */
  body {
    padding-bottom: 68px !important;
  }

  .catalog-page,
  .piscinas-page,
  .promocoes-page,
  .sobre-page,
  .sobre-page-clean,
  .site-footer {
    padding-bottom: 86px !important;
  }
}

@media (max-width: 380px) {
  .mobile-nav a,
  .mobile-nav button {
    font-size: 8.7px !important;
  }
}

/* Mobile polish priority layer: must remain at the end of this file. */
@media (max-width: 820px) {
  body {
    padding-bottom: 128px !important;
  }

  .hero-mini-cards,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .hero-mini-cards article {
    min-height: 106px !important;
    padding: 17px 14px !important;
  }

  .category-grid article,
  .category-card-link {
    min-height: 126px !important;
    padding: 16px 10px !important;
  }

  .floating-whatsapp {
    right: 14px !important;
    bottom: 126px !important;
    width: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    padding: 0 !important;
  }

  .floating-whatsapp-text {
    display: none !important;
  }

  .mobile-nav {
    left: 8px !important;
    right: 8px !important;
    bottom: 8px !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 4px !important;
    min-height: 104px !important;
    padding: 7px !important;
    border-radius: 22px !important;
    background: rgba(5, 23, 37, .97) !important;
    border-color: rgba(130, 207, 255, .24) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .42) !important;
  }

  .mobile-nav a,
  .mobile-nav button {
    min-height: 42px !important;
    padding: 0 6px !important;
    border-radius: 13px !important;
    color: #dcecf5 !important;
    font-size: 11px !important;
    line-height: 1.15 !important;
    letter-spacing: 0 !important;
  }

  .catalog-page,
  .piscinas-page,
  .promocoes-page,
  .sobre-page,
  .sobre-page-clean,
  .site-footer {
    padding-bottom: 76px !important;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 76px !important;
  }

  .floating-whatsapp {
    bottom: 76px !important;
  }

  .mobile-nav {
    left: 6px !important;
    right: 6px !important;
    bottom: 6px !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 2px !important;
    min-height: 54px !important;
    padding: 6px 4px !important;
    border-radius: 18px !important;
  }

  .mobile-nav a,
  .mobile-nav button {
    min-height: 40px !important;
    padding: 0 2px !important;
    border-radius: 11px !important;
    font-size: 9.2px !important;
    line-height: 1.05 !important;
    letter-spacing: -.02em !important;
  }
}

/* Final mobile drawer menu override. Keep this as the last CSS block. */
@media (max-width: 820px) {
  body {
    padding-bottom: 82px !important;
  }

  .mobile-menu-toggle {
    position: fixed !important;
    left: 14px !important;
    bottom: 14px !important;
    z-index: 102 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    min-width: 104px !important;
    min-height: 54px !important;
    padding: 0 18px !important;
    border: 1px solid rgba(130, 207, 255, .28) !important;
    border-radius: 18px !important;
    color: #fff !important;
    background: linear-gradient(145deg, #073858, #05243a) !important;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .38) !important;
    font: inherit !important;
    font-size: 14px !important;
  }

  .mobile-menu-backdrop {
    position: fixed !important;
    inset: 0 !important;
    z-index: 98 !important;
    border: 0 !important;
    background: rgba(2, 15, 25, .68) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    backdrop-filter: blur(4px) !important;
    transition: opacity .3s ease, visibility .3s ease !important;
  }

  .mobile-menu-open .mobile-menu-backdrop {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .mobile-nav {
    left: 14px !important;
    right: 14px !important;
    bottom: 82px !important;
    z-index: 101 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    min-height: 0 !important;
    padding: 16px !important;
    border-radius: 26px !important;
    background: rgba(5, 29, 47, .98) !important;
    border: 1px solid rgba(130, 207, 255, .25) !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .5) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(24px) scale(.96) !important;
    transform-origin: bottom left !important;
    pointer-events: none !important;
    transition: opacity .28s ease, transform .32s cubic-bezier(.16, 1, .3, 1), visibility .28s ease !important;
  }

  .mobile-menu-open .mobile-nav {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
  }

  .mobile-nav a,
  .mobile-nav button {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    min-height: 74px !important;
    padding: 12px 8px !important;
    border-radius: 17px !important;
    color: #e9f7ff !important;
    background: rgba(130, 207, 255, .07) !important;
    border: 1px solid rgba(130, 207, 255, .1) !important;
    font-size: 12px !important;
    line-height: 1.15 !important;
    letter-spacing: 0 !important;
  }

  .mobile-menu-icon {
    display: grid !important;
    place-items: center !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 10px !important;
    color: #2bd0ff !important;
    background: rgba(0, 174, 239, .13) !important;
    font-size: 18px !important;
    line-height: 1 !important;
  }

  .floating-whatsapp {
    right: 14px !important;
    bottom: 14px !important;
    z-index: 102 !important;
  }
}

/* Mobile performance final: somente celular, desktop intacto. */
@media (max-width: 820px), (hover: none) and (pointer: coarse) {
  html {
    scroll-behavior: auto !important;
  }

  body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeSpeed;
  }

  .bg-bubble-container {
    display: block !important;
    visibility: visible !important;
    opacity: .54 !important;
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    pointer-events: none !important;
    contain: layout paint !important;
  }

  #heroBubbles {
    opacity: .56 !important;
    contain: layout paint !important;
  }

  .page-bubble {
    filter: none !important;
    box-shadow: 0 0 8px rgba(130, 207, 255, .10) !important;
    animation-duration: 22s !important;
    will-change: transform !important;
  }

  .hero-bubble {
    filter: none !important;
    box-shadow: 0 0 8px rgba(130, 207, 255, .10) !important;
    animation-duration: 20s !important;
    will-change: transform !important;
  }

  .hero-bg video,
  #heroBgVideo,
  .hero-ripple,
  .light-ray {
    display: none !important;
  }

  .hero-bg img,
  .hero-bg .hero-slide-media {
    animation: none !important;
    transform: none !important;
    filter: none !important;
    will-change: auto !important;
  }

  .header-inner,
  .glass-card,
  .hero-mini-cards article,
  .category-grid article,
  .category-card-link,
  .product-card,
  .gallery-card,
  .benefit-card,
  .promo-banner,
  .contact-cta,
  .mobile-nav,
  .mobile-menu-backdrop,
  .site-footer {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .glass-card,
  .hero-mini-cards article,
  .category-grid article,
  .category-card-link,
  .product-card,
  .gallery-card,
  .benefit-card,
  .promo-banner,
  .contact-cta,
  .mobile-nav {
    box-shadow: 0 10px 24px rgba(0, 0, 0, .16) !important;
  }

  .product-card:hover,
  .gallery-card:hover,
  .hero-mini-cards article:hover,
  .category-grid article:hover,
  .category-card-link:hover,
  .benefit-card:hover,
  .promo-banner:hover,
  .contact-cta:hover,
  .btn:hover,
  .whatsapp-top:hover,
  .floating-whatsapp:hover {
    transform: none !important;
    filter: none !important;
  }

  .product-card:hover .product-img img,
  .gallery-card:hover img,
  .gallery-card:hover video {
    transform: none !important;
    filter: none !important;
  }

  .hero-mini-cards article > span,
  .category-grid article > span,
  .category-card-link > span,
  .pulse-whatsapp,
  .floating-whatsapp {
    animation: none !important;
  }

  .reveal {
    transition: opacity .24s ease, transform .24s ease !important;
    will-change: auto !important;
  }

  .section,
  .products-section,
  .gallery-section,
  .categories,
  .catalog-products-section,
  .promocoes-list-section,
  .piscinas-modelos-section,
  .sobre-info-section {
    content-visibility: auto !important;
    contain-intrinsic-size: 720px !important;
  }
}

/* =========================================================
   PERFORMANCE GERAL 2026-06 (todas as máquinas)
   Ganhos de renderização SEM nenhuma mudança visual.
   ========================================================= */

/* Promove animações para a GPU (composição em camada própria). */
.bubble {
  will-change: transform, opacity;
}

.hero-ripple,
.light-ray {
  will-change: transform, opacity;
}

.hero-bg img.hero-slide-media,
.hero-bg video.hero-slide-media {
  will-change: transform;
  backface-visibility: hidden;
}

/* Bolhas do hero pausam quando o hero sai da tela (rolagem). */
#heroBubbles.bubbles-paused .bubble {
  animation-play-state: paused;
}

/* Cards abaixo da dobra só renderizam quando se aproximam da tela. */
.product-card,
.gallery-card {
  content-visibility: auto;
  contain-intrinsic-size: auto 420px;
}

/* =========================================================
   MODO LEVE AUTOMÁTICO (html.perf-lite) — PC fraco
   Ativado pelo site.js quando detecta pouca memória/CPU ou
   FPS baixo. TODOS os efeitos continuam: bolhas, ripples,
   raios de luz, typewriter, reveal e hovers permanecem.
   Apenas os filtros de desfoque (muito caros para GPU fraca)
   são trocados por equivalentes visuais baratos.
   ========================================================= */

/* backdrop-filter é o efeito mais caro durante a rolagem.
   Substituído por fundo um pouco mais opaco: visual quase idêntico. */
html.perf-lite .header-inner,
html.perf-lite .glass-card,
html.perf-lite .loader-card,
html.perf-lite .hero-blue-overlay {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

html.perf-lite .header-inner {
  background: rgba(6, 24, 38, .92);
}

html.perf-lite .glass-card {
  background: linear-gradient(180deg, rgba(20, 44, 64, .88), rgba(12, 32, 50, .86));
}

html.perf-lite .loader-card {
  background: linear-gradient(180deg, rgba(20, 44, 64, .94), rgba(12, 32, 50, .92));
}

/* O blur(90px) animado dos ripples era o maior vilão de FPS no desktop.
   O degradê radial suave reproduz o mesmo brilho difuso sem filtro,
   e a animação continua rodando normalmente. */
html.perf-lite .hero-ripple {
  filter: none !important;
  background: radial-gradient(circle, rgba(0, 174, 239, .14) 0%, rgba(0, 174, 239, .07) 40%, transparent 68%);
}

html.perf-lite .light-ray {
  filter: none !important;
  opacity: .14;
}

/* Sombras gigantes custam pintura; versões menores mantêm a profundidade. */
html.perf-lite .glass-card,
html.perf-lite .header-inner {
  box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
}

/* Pulso do WhatsApp continua, em versão de opacidade (sem repintar sombra). */
html.perf-lite .pulse-whatsapp {
  animation: perfLitePulse 2s ease-in-out infinite;
}

@keyframes perfLitePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .82; }
}

/* Zoom lento do fundo do hero fica mais espaçado (mesma sensação, menos quadros). */
html.perf-lite .hero-bg img,
html.perf-lite .hero-bg .hero-slide-media {
  animation-duration: 48s;
}
