:root {
  --paper: #f2f9ff;
  --porcelain: #f8fcff;
  --stone: #d8ecfa;
  --ink: #09243a;
  --deep: #062d4c;
  --teal: #0d6fa3;
  --teal-soft: #1889c5;
  --pool: #18a9e6;
  --pool-dark: #0d6fa3;
  --cyan: #46c5f2;
  --mint: #a9e8ff;
  --muted: #5b7280;
  --line: rgba(9, 36, 58, 0.14);
  --white-line: rgba(255, 255, 255, 0.16);
  --glass: rgba(255, 255, 255, 0.68);
  --dark-glass: rgba(7, 60, 102, 0.42);
  --shadow: 0 28px 90px rgba(6, 45, 76, 0.16);
  --edge: clamp(20px, 6vw, 88px);
  --section-y: clamp(88px, 9vw, 128px);
  --eyebrow-height: 18px;
  --eyebrow-title-gap: clamp(26px, 2.4vw, 34px);
  --post-hero-title-size: clamp(1.89rem, 3.71vw, 4.13rem);
  --display: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --sans: Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--porcelain);
  font-family: var(--sans);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px var(--edge);
  color: white;
  transition: background 240ms ease, border-color 240ms ease, padding 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled,
.site-header.on-light {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 45, 76, 0.74);
  backdrop-filter: blur(18px);
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  display: block;
  flex: 0 0 auto;
  width: clamp(148px, 13.75vw, 213px);
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.68rem;
  font-weight: 850;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-phone {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0 16px;
  color: white;
  background: rgba(6, 45, 76, 0.2);
  backdrop-filter: blur(14px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 850;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.instagram-icon {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background:
    radial-gradient(circle at 32% 104%, #feda75 0 18%, #fa7e1e 34%, transparent 48%),
    radial-gradient(circle at 72% 20%, #d62976 0 24%, transparent 42%),
    linear-gradient(135deg, #4f5bd5, #962fbf 42%, #d62976 70%, #fa7e1e);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.instagram-icon::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-radius: 7px;
}

.instagram-icon::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: white;
  box-shadow: -7px 7px 0 3px transparent, -7px 7px 0 1.5px white;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  width: 18px;
  height: 1px;
  grid-area: 1 / 1;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle::before {
  transform: translateY(-6px);
}

.menu-toggle::after {
  transform: translateY(6px);
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  transform: rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  padding: 110px 24px 24px;
  color: white;
  background: rgba(6, 45, 76, 0.94);
  backdrop-filter: blur(20px);
}

.mobile-panel nav {
  display: grid;
  gap: 4px;
}

.mobile-panel a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
  font-weight: 850;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.36);
  padding: 0 22px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 850;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.44), transparent);
  transform: translateX(-120%);
  transition: transform 700ms ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn-primary {
  border-color: rgba(70, 197, 242, 0.82);
  color: white;
  background: linear-gradient(135deg, #0d6fa3, #18a9e6 52%, #62d8ff);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26), 0 0 46px rgba(24, 169, 230, 0.28);
}

.btn-primary::before {
  animation: button-sheen 2s ease-in-out infinite;
  background: linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, 0.58) 48%, transparent 78%);
}

.btn-primary:hover {
  border-color: rgba(169, 232, 255, 0.94);
  background: linear-gradient(135deg, #0a5d8c, #159ad4 52%, #79deff);
}

.btn-whatsapp {
  border-color: rgba(114, 230, 156, 0.82);
  background: linear-gradient(135deg, #0b6f3a, #19b961 52%, #37d77b);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26), 0 0 46px rgba(25, 185, 97, 0.3);
}

.btn-whatsapp:hover {
  border-color: rgba(164, 245, 193, 0.94);
  background: linear-gradient(135deg, #075b30, #18aa59 52%, #41df85);
}

.btn-light {
  border-color: rgba(9, 36, 58, 0.18);
  color: var(--ink);
  background: white;
}

.btn-light:hover {
  color: white;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(104px, 14vh, 150px) var(--edge) clamp(84px, 12vh, 132px);
  color: white;
  background: radial-gradient(circle at 74% 20%, rgba(24, 169, 230, 0.28), transparent 26%), linear-gradient(135deg, #062d4c, #0d6fa3 72%, #18a9e6);
  isolation: isolate;
}

.hero-home {
  padding-bottom: clamp(142px, 18vh, 190px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(6, 45, 76, 0.88) 0%, rgba(6, 45, 76, 0.68) 42%, rgba(6, 45, 76, 0.2) 100%),
    linear-gradient(0deg, rgba(6, 45, 76, 0.74) 0%, transparent 34%);
  pointer-events: none;
}

.hero::after,
.section-water::before {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.24), transparent 18%),
    radial-gradient(circle at 78% 44%, rgba(169, 232, 255, 0.3), transparent 20%),
    linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.12) 39% 40%, transparent 41% 100%);
  opacity: 0.72;
  animation: water-drift 18s ease-in-out infinite alternate;
}

.hero.hero-home::before {
  right: 0;
  width: auto;
  background: linear-gradient(
    90deg,
    rgba(3, 20, 35, 0.95) 0%,
    rgba(4, 31, 52, 0.78) 14%,
    rgba(5, 48, 74, 0.48) 30%,
    rgba(7, 69, 98, 0.22) 46%,
    rgba(8, 86, 116, 0.07) 58%,
    transparent 70%,
    transparent 100%
  );
}

.hero.hero-home::after {
  display: none;
}

.hero-media-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 76% 28%, rgba(24, 169, 230, 0.52), transparent 28%),
    radial-gradient(circle at 22% 76%, rgba(169, 232, 255, 0.2), transparent 22%),
    linear-gradient(135deg, rgba(6, 45, 76, 0.94), rgba(13, 111, 163, 0.86) 58%, rgba(24, 169, 230, 0.74));
}

.hero-home .hero-media-placeholder {
  background: url("assets/images/hero-adriano-piscina.jpg") center / cover no-repeat;
}

.hero-home .hero-media-placeholder::before,
.hero-home .hero-media-placeholder span {
  display: none;
}

.hero-media-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(255, 255, 255, 0.26);
  margin: clamp(18px, 2.3vw, 34px);
  pointer-events: none;
}

.hero-media-placeholder span {
  position: absolute;
  right: var(--edge);
  bottom: clamp(310px, 32vh, 360px);
  width: min(380px, 34vw);
  color: rgba(255, 255, 255, 0.46);
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.62rem;
  font-weight: 850;
  line-height: 1.55;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 0;
  align-items: center;
  transform: translateY(30px);
}

.eyebrow {
  min-height: var(--eyebrow-height);
  margin: 0 0 var(--eyebrow-title-gap);
  color: var(--pool-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(0.66rem, 0.86vw, 0.76rem);
  font-weight: 850;
  line-height: var(--eyebrow-height);
}

.hero .eyebrow,
.intro-section .eyebrow,
.section-water .eyebrow,
.dark .eyebrow {
  color: var(--mint);
}

.eyebrow + .site-title {
  margin-top: 0;
}

.section-head .eyebrow,
.feature-copy .eyebrow,
.intro-copy .eyebrow,
.cta .eyebrow {
  margin: 0 0 var(--eyebrow-title-gap);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 740px;
  font-size: clamp(2.9rem, 5.7vw, 6.35rem);
  line-height: 0.98;
  font-weight: 850;
}

h1 > span {
  display: block;
}

.hero-home h1 {
  font-size: clamp(2.03rem, 3.99vw, 4.45rem);
}

.site-title {
  margin: 0;
  font-family: var(--display);
  font-size: var(--post-hero-title-size);
  font-weight: 850;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.stroke {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
  text-shadow: 0 0 44px rgba(255, 255, 255, 0.16);
}

.title-stroke {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
  text-shadow: 0 0 44px rgba(255, 255, 255, 0.16);
}

.hero-copy {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.92rem, 1.06vw, 1.06rem);
  line-height: 1.52;
}

.hero-copy strong {
  color: white;
  font-weight: 850;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-swiss-badge {
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.hero-swiss-badge img {
  width: clamp(70px, 6.2vw, 92px);
  max-height: 34px;
  object-fit: contain;
}

.image-slot {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 26% 18%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(145deg, rgba(24, 169, 230, 0.48), rgba(6, 45, 76, 0.22));
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.image-slot::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.42);
}

.image-slot-photo {
  background: rgba(6, 45, 76, 0.08);
}

.image-slot-photo::before {
  display: none;
}

.image-slot-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.image-slot span {
  position: relative;
  z-index: 2;
  width: min(360px, calc(100% - 56px));
  color: rgba(255, 255, 255, 0.84);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.6;
}

.service-image {
  width: min(100%, 640px);
  aspect-ratio: 4 / 3;
  min-height: 0;
  justify-self: end;
  background:
    url("assets/images/profissional-piscina.jpg") center / cover no-repeat,
    rgba(255, 255, 255, 0.04);
}

.service-image::before {
  display: none;
}

.reform-image {
  background:
    url("assets/images/reforma-piscina.webp") center / cover no-repeat,
    rgba(255, 255, 255, 0.04);
}

.reform-image::before {
  display: none;
}

.credential-strip {
  position: absolute;
  right: var(--edge);
  bottom: clamp(22px, 2.8vw, 32px);
  left: var(--edge);
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  border: 1px solid rgba(214, 250, 255, 0.2);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.16)),
    rgba(7, 60, 102, 0.34);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(22px) saturate(1.18);
}

.credential {
  min-height: clamp(54px, 6.2vh, 74px);
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 5px;
  padding: clamp(10px, 1.2vw, 14px);
  border-right: 1px solid rgba(6, 45, 76, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(24, 169, 230, 0.08) 52%, rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  text-align: center;
}

.credential:last-child {
  border-right: 0;
}

.credential strong {
  font-family: var(--display);
  color: white;
  font-size: clamp(0.82rem, 1vw, 1.08rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.credential span {
  color: #9feeff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(0.82rem, 1vw, 1.08rem);
  font-weight: 850;
  line-height: 1;
  text-shadow: 0 8px 22px rgba(6, 45, 76, 0.22);
}

.section {
  position: relative;
  overflow: hidden;
  padding: var(--section-y) var(--edge);
  background: var(--porcelain);
}

.section.alt {
  background: linear-gradient(135deg, rgba(243, 251, 252, 0.96), rgba(216, 238, 244, 0.78));
}

.section.dark,
.section-water {
  color: white;
  background: var(--deep);
}

.section-water {
  isolation: isolate;
}

.section-water > * {
  position: relative;
  z-index: 2;
}

.services-overview {
  background:
    radial-gradient(circle at 18% 14%, rgba(70, 197, 242, 0.2), transparent 30%),
    radial-gradient(circle at 88% 62%, rgba(13, 111, 163, 0.34), transparent 34%),
    linear-gradient(135deg, #042238 0%, #073c66 48%, #0a567e 100%);
}

.pillars-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(24, 169, 230, 0.16), transparent 30%),
    linear-gradient(135deg, #f7fcff 0%, #e4f4fb 52%, #d5edf7 100%);
}

.commitment-section {
  background:
    radial-gradient(circle at 86% 18%, rgba(169, 232, 255, 0.24), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(70, 197, 242, 0.22), transparent 34%),
    linear-gradient(135deg, #064262 0%, #0d6fa3 58%, #1598c8 100%);
}

.region-section {
  background:
    radial-gradient(circle at 18% 24%, rgba(24, 169, 230, 0.12), transparent 28%),
    linear-gradient(135deg, #edf8fc 0%, #d9eef6 48%, #c6e4f0 100%);
}

.testimonials-section {
  background:
    radial-gradient(circle at 84% 20%, rgba(169, 232, 255, 0.24), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #eef8fc 100%);
}

.final-cta-section {
  background:
    radial-gradient(circle at 18% 24%, rgba(55, 215, 123, 0.18), transparent 28%),
    radial-gradient(circle at 84% 72%, rgba(70, 197, 242, 0.2), transparent 34%),
    linear-gradient(135deg, #05283d 0%, #075b63 54%, #0d6f8f 100%);
}

.container {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 70px);
}

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

.section-text,
.lead {
  margin: 0;
  color: rgba(9, 36, 58, 0.72);
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
  line-height: 1.58;
}

.dark .section-text,
.section-water .section-text,
.dark .lead,
.section-water .lead {
  color: rgba(255, 255, 255, 0.76);
}

.intro-section {
  --section-blue-deep: #073c66;
  --section-blue: #0d6fa3;
  --section-blue-bright: #18a9e6;
  --section-blue-soft: #a9e8ff;
  color: white;
  background:
    radial-gradient(circle at 78% 18%, rgba(169, 232, 255, 0.2), transparent 32%),
    radial-gradient(circle at 18% 72%, rgba(13, 111, 163, 0.3), transparent 34%),
    linear-gradient(135deg, #05314f 0%, #08607f 52%, #0c7d9a 100%);
}

.intro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(169, 232, 255, 0.1) 43% 44%, transparent 45% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%);
  opacity: 0.62;
}

.intro-signature {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(420px, 0.72fr) minmax(0, 0.58fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
}

.adriano-portrait {
  position: relative;
  width: min(100%, 760px);
  aspect-ratio: 16 / 9;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(169, 232, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(169, 232, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 42px rgba(2, 21, 38, 0.24);
}

.adriano-photo-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: url("assets/images/equipe-adriano-piscinas.webp") center / 100% 100% no-repeat;
  filter: none;
}

.adriano-portrait figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(169, 232, 255, 0.24);
  padding: 9px 11px;
  background: rgba(6, 45, 76, 0.72);
  backdrop-filter: blur(16px);
}

.adriano-portrait figcaption strong {
  font-family: var(--display);
  font-size: clamp(0.76rem, 0.92vw, 0.98rem);
  text-transform: uppercase;
}

.adriano-portrait figcaption span {
  color: var(--section-blue-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.43rem;
  font-weight: 850;
}

.intro-copy {
  max-width: 610px;
}

.intro-copy h2 {
  max-width: 610px;
}

.intro-copy p:last-child {
  max-width: 560px;
  margin: clamp(10px, 1.4vw, 16px) 0 0;
  color: rgba(231, 248, 255, 0.82);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  line-height: 1.48;
}

.intro-copy blockquote {
  max-width: 640px;
  margin: clamp(12px, 1.7vw, 18px) 0 0;
  border-left: 2px solid var(--section-blue-bright);
  padding: 0 0 0 clamp(16px, 2vw, 24px);
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.quote-avatar {
  width: 58px;
  height: 58px;
  border: 3px solid var(--section-blue-soft);
  border-radius: 999px;
  background:
    url("assets/images/adriano-das-piscinas.webp") center center / 112% auto no-repeat,
    rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.intro-copy blockquote p {
  margin: 0;
  color: white;
  font-family: var(--display);
  font-size: clamp(0.78rem, 0.9vw, 0.94rem);
  font-weight: 500;
  line-height: 1.34;
  text-transform: none;
}

.intro-copy cite {
  display: block;
  margin-top: 8px;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 850;
}

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

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

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

.card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 60px rgba(6, 45, 76, 0.07);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.dark .card,
.section-water .card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 169, 230, 0.58);
  box-shadow: var(--shadow);
}

.card-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid rgba(24, 169, 230, 0.48);
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 850;
}

.card-number.card-icon {
  border: 0;
  background: transparent;
}

.card-number.card-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.dark .card-number,
.section-water .card-number {
  color: var(--mint);
}

.card h3 {
  margin-bottom: 16px;
  font-size: clamp(1.35rem, 2vw, 2.22rem);
  line-height: 1.02;
  font-weight: 850;
}

.card p,
.card li {
  color: rgba(9, 36, 58, 0.72);
  font-size: 0.96rem;
  line-height: 1.54;
}

.dark .card p,
.dark .card li,
.section-water .card p,
.section-water .card li {
  color: rgba(255, 255, 255, 0.74);
}

.card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.card li {
  position: relative;
  padding-left: 18px;
}

.card li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--pool);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.7fr);
  gap: clamp(26px, 5vw, 76px);
  align-items: center;
}

.feature-copy h2 {
  max-width: 760px;
}

.feature-copy p {
  max-width: 680px;
  margin: 24px 0 0;
}

.services-overview {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.services-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  gap: clamp(26px, 6vw, 78px);
  align-items: end;
  margin-bottom: clamp(26px, 4vw, 46px);
}

.services-head .lead {
  max-width: 620px;
}

.services-head .actions {
  margin-top: 22px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  min-height: 262px;
  display: grid;
  grid-template-rows: 104px auto auto 1fr;
  gap: 10px;
  border: 1px solid rgba(169, 232, 255, 0.18);
  padding: 10px 10px 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.14);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(169, 232, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.07);
}

.service-thumb {
  min-height: 104px;
  border: 1px solid rgba(169, 232, 255, 0.16);
  background: var(--service-image) center / cover no-repeat;
}

.service-card span {
  color: var(--mint);
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.service-card h3 {
  color: white;
  font-size: clamp(0.86rem, 1vw, 1.08rem);
  line-height: 1.04;
}

.service-card p {
  margin: 0;
  color: rgba(231, 248, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.42;
}

.service-cta {
  align-self: end;
  justify-self: center;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(117, 255, 142, 0.28);
  padding: 0 10px;
  color: white;
  background: rgba(38, 198, 90, 0.86);
  box-shadow: 0 8px 18px rgba(20, 151, 66, 0.18);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.54rem;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-cta:hover {
  transform: translateY(-2px);
  background: #1fb150;
  box-shadow: 0 16px 28px rgba(20, 151, 66, 0.3);
}

.service-cta:focus-visible {
  outline: 3px solid rgba(169, 232, 255, 0.72);
  outline-offset: 3px;
}

.service-thumb-maintenance {
  --service-image: url("assets/images/services/limpeza-manutencao.webp");
}

.service-thumb-vinyl {
  --service-image: url("assets/images/services/troca-vinil.webp");
}

.service-thumb-filter {
  --service-image: url("assets/images/services/troca-areia-filtro.webp");
}

.service-thumb-heat {
  --service-image: url("assets/images/services/trocador-calor.webp");
}

.service-thumb-solar {
  --service-image: url("assets/images/services/aquecimento-solar.webp");
}

.service-thumb-machine {
  --service-image: url("assets/images/services/casa-maquinas.webp");
}

.service-thumb-grout {
  --service-image: url("assets/images/services/reforma-rejunte.webp");
}

.service-thumb-beach {
  --service-image: url("assets/images/services/banco-prainha.webp");
}

.service-thumb-build {
  --service-image: url("assets/images/services/construcao-piscinas.webp");
}

.service-thumb-tile {
  --service-image: url("assets/images/services/troca-revestimento.webp");
}

.service-nav {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(38px, 6vh, 66px);
  border: 1px solid rgba(214, 250, 255, 0.2);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.16)),
    rgba(7, 60, 102, 0.34);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(22px) saturate(1.18);
}

.service-nav a {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border-right: 1px solid rgba(6, 45, 76, 0.24);
  background: rgba(255, 255, 255, 0.055);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.72rem;
  font-weight: 850;
  transition: background 200ms ease, color 200ms ease;
}

.service-nav a:last-child {
  border-right: 0;
}

.service-nav span {
  color: var(--mint);
}

.service-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.work-flow {
  margin-top: clamp(34px, 5vw, 58px);
  display: grid;
  gap: 22px;
}

.work-flow-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 54px);
  align-items: end;
}

.work-flow-head h3 {
  max-width: 540px;
  color: var(--ink);
}

.steps {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.step {
  counter-increment: steps;
  min-height: 132px;
  display: grid;
  align-content: start;
  gap: 18px;
  border: 1px solid rgba(13, 111, 163, 0.18);
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 252, 255, 0.68)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(6, 45, 76, 0.07);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.step:hover {
  transform: translateY(-3px);
  border-color: rgba(24, 169, 230, 0.42);
  box-shadow: 0 24px 58px rgba(6, 45, 76, 0.1);
}

.step::before {
  content: counter(steps, decimal-leading-zero);
  width: 44px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(24, 169, 230, 0.34);
  color: var(--pool-dark);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
  background: rgba(169, 232, 255, 0.16);
}

.step p {
  margin: 0;
  color: rgba(9, 36, 58, 0.76);
  font-size: 0.86rem;
  line-height: 1.48;
}

.testimonial-carousel {
  --testimonial-gap: 14px;
  --testimonial-card-width: clamp(260px, 24vw, 340px);
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.testimonial-track {
  display: flex;
  width: max-content;
  gap: var(--testimonial-gap);
  animation: testimonials-scroll 34s linear infinite;
  will-change: transform;
}

.testimonial-carousel:hover .testimonial-track,
.testimonial-carousel:focus-within .testimonial-track {
  animation-play-state: paused;
}

.quote {
  flex: 0 0 var(--testimonial-card-width);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.quote::before {
  content: "\"";
  display: block;
  margin-bottom: 18px;
  color: var(--pool);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.6;
}

.quote small {
  display: block;
  margin-top: 24px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.64rem;
  font-weight: 850;
}

.stars {
  display: block;
  margin-top: 12px;
  color: #f5c542;
  letter-spacing: 0.14em;
  font-size: 1rem;
  line-height: 1;
  text-shadow: 0 6px 18px rgba(245, 197, 66, 0.22);
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.45fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.cta h2 {
  max-width: 760px;
}

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

.contact-card {
  min-height: 220px;
}

.contact-card a {
  word-break: break-word;
}

.form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(340px, 0.8fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.64rem;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(9, 36, 58, 0.16);
  padding: 0 14px;
  color: var(--ink);
  background: white;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 132px;
  padding-top: 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(24, 169, 230, 0.12);
}

.footer {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 5.6vw, 68px) var(--edge) 24px;
  color: var(--teal);
  background:
    linear-gradient(180deg, rgba(216, 238, 244, 0.46), rgba(249, 254, 255, 0.98) 46%),
    var(--porcelain);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: var(--edge);
  left: var(--edge);
  height: 1px;
  pointer-events: none;
  background: rgba(13, 111, 163, 0.2);
}

.footer-inner,
.footer-bottom {
  position: relative;
  z-index: 2;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(210px, 270px) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}

.footer-brand-panel {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
}

.footer-brand-panel img {
  width: min(190px, 76%);
  filter: drop-shadow(0 10px 20px rgba(6, 45, 76, 0.08));
}

.footer-brand-panel p {
  max-width: 270px;
  margin: 0;
  color: rgba(9, 36, 58, 0.62);
  font-size: 0.82rem;
  line-height: 1.58;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.instagram-link-labeled {
  min-height: 36px;
  border: 0;
  padding: 0;
  color: var(--teal);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 850;
}

.footer .instagram-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0 10px 22px rgba(6, 45, 76, 0.14);
}

.footer .instagram-icon::before {
  width: 15px;
  height: 15px;
  border-width: 1.8px;
  border-radius: 5px;
}

.footer .instagram-icon::after {
  top: 9px;
  right: 9px;
  width: 3px;
  height: 3px;
}

.footer-info-grid {
  display: grid;
  grid-template-columns: minmax(112px, 0.72fr) minmax(240px, 1.44fr) minmax(178px, 1fr) minmax(130px, 0.82fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: start;
}

.footer-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
}

.footer-kicker {
  color: var(--pool-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.58rem;
  font-weight: 850;
}

.footer-card h3 {
  margin: 0;
  font-family: var(--display);
  color: var(--teal);
  font-size: clamp(0.94rem, 1vw, 1.06rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.footer-card p,
.footer-card a,
.footer-bottom {
  color: rgba(9, 36, 58, 0.68);
  line-height: 1.5;
}

.footer-card a {
  text-decoration-line: underline;
  text-decoration-color: rgba(0, 166, 200, 0.34);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

.footer-card p {
  margin: 0;
  min-width: 0;
  font-size: 0.86rem;
}

.footer-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
}

.footer-list a {
  display: inline;
  font-size: 0.86rem;
  transition: color 180ms ease;
}

.footer-list a:hover {
  color: var(--pool-dark);
}

.footer-email {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-address {
  overflow-wrap: normal;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(34px, 4.6vw, 54px);
  border-top: 1px solid rgba(13, 111, 163, 0.18);
  padding-top: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.58rem;
  font-weight: 850;
}

.footer-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.footer-bottom a {
  transition: color 180ms ease;
}

.footer-bottom a:hover {
  color: var(--pool-dark);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 65;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  color: white;
  background: transparent;
  box-shadow: none;
  font-weight: 900;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition: opacity 220ms ease, transform 220ms ease;
}

.whatsapp-float img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.show-whatsapp-float .whatsapp-float {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.footer-visible .whatsapp-float {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.94);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@keyframes water-drift {
  from {
    transform: translate3d(-2%, -1%, 0) rotate(-1deg);
  }
  to {
    transform: translate3d(2%, 1%, 0) rotate(1deg);
  }
}

@keyframes button-sheen {
  0%,
  42% {
    transform: translateX(-130%);
  }
  76%,
  100% {
    transform: translateX(130%);
  }
}

@keyframes testimonials-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - (var(--testimonial-gap) / 2)));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .testimonial-carousel {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .testimonial-track {
    animation: none !important;
  }
}

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

  .footer-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 1080px) {
  .section-head,
  .feature-band,
  .cta,
  .form-wrap,
  .intro-signature,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-head {
    grid-template-columns: 1fr;
  }

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

  .grid,
  .grid.three,
  .grid.two,
  .contact-grid,
  .service-nav,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-home {
    padding-bottom: clamp(160px, 22vh, 210px);
  }

  .credential strong {
    font-size: clamp(1.35rem, 3.8vw, 2.35rem);
  }

  .footer-brand-panel {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --section-y: clamp(64px, 16vw, 88px);
  }

  .site-nav,
  .header-actions .btn,
  .top-phone {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .menu-open .mobile-panel {
    display: block;
  }

  .hero {
    min-height: 100svh;
    padding-top: 112px;
    padding-bottom: 90px;
  }

  .hero-home {
    padding-bottom: 218px;
  }

  .hero-home .hero-media-placeholder {
    background-position: 64% center;
  }

  .hero-media-placeholder span {
    right: 20px;
    bottom: 290px;
    width: min(300px, calc(100% - 40px));
    font-size: 0.56rem;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.2rem);
  }

  .hero-copy {
    font-size: 0.92rem;
  }

  .testimonial-carousel {
    --testimonial-card-width: min(82vw, 320px);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }

  .grid,
  .grid.three,
  .grid.two,
  .contact-grid,
  .services-grid,
  .service-nav,
  .footer-info-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .credential-strip {
    right: 20px;
    left: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .credential {
    min-height: 76px;
    padding: 14px 12px;
    min-width: 0;
  }

  .credential:nth-child(2) {
    border-right: 0;
  }

  .credential:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(6, 45, 76, 0.28);
  }

  .credential strong {
    max-width: 100%;
    font-size: clamp(1.05rem, 5.2vw, 1.45rem);
    overflow-wrap: anywhere;
  }

  .credential span {
    max-width: 100%;
    font-size: 0.48rem;
  }

  .service-nav a {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid rgba(6, 45, 76, 0.24);
  }

  .service-nav a:last-child {
    border-bottom: 0;
  }

  .work-flow-head,
  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-actions {
    justify-content: flex-start;
  }
}
