/* ==========================================================================
   Forms Fitness Academia Aquática — Design System "Mergulho"
   Azul piscina · ciano · verde-lima do nadador · ondas
   Fontes: Archivo (display) + Nunito Sans (texto) + Caveat (script da marca)
   ========================================================================== */

:root {
  --bg: #F4FAFE;
  --bg-soft: #E9F4FC;
  --surface: #FFFFFF;
  --ink: #0E2A4A;
  --ink-soft: #48617E;
  --blue: #0B4EA2;
  --blue-deep: #083B7E;
  --blue-ink: #072B5C;
  --cyan: #1FA8DC;
  --cyan-soft: #DFF2FC;
  --lime: #7ED321;
  --lime-d: #55A818;
  --line: rgba(11, 78, 162, 0.14);
  --shadow: 0 18px 46px -16px rgba(8, 59, 126, 0.28);
  --shadow-soft: 0 10px 28px -14px rgba(8, 59, 126, 0.18);
  --radius: 18px;
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;
  --font-script: "Caveat", cursive;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; line-height: 1.08; }
p { margin: 0 0 1rem; }
.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.container--narrow { max-width: 820px; }

::selection { background: var(--cyan); color: #fff; }

/* ------------------------------- Reveal ---------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .12s; }
[data-reveal-delay="2"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .ticker__track { animation: none !important; }
  .float-card { animation: none !important; }
}

/* ------------------------------- Botões ----------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .8rem 1.6rem; border-radius: 999px;
  font-family: var(--font-display); font-weight: 800; font-size: .92rem; letter-spacing: .02em;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn--lg { padding: .95rem 2rem; font-size: 1rem; }
.btn--lime { background: linear-gradient(120deg, #8FE334, var(--lime)); color: var(--blue-ink); box-shadow: 0 12px 26px -10px rgba(126, 211, 33, .65); }
.btn--lime:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 16px 32px -10px rgba(126, 211, 33, .75); }
.btn--blue { background: var(--blue); color: #fff; box-shadow: 0 12px 26px -10px rgba(11, 78, 162, .5); }
.btn--blue:hover { background: var(--blue-deep); transform: translateY(-2px); }
.btn--ghost { border-color: var(--line); color: var(--blue); background: rgba(255, 255, 255, .6); }
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }

/* ------------------------------- Header ----------------------------------- */
.site-header { position: fixed; inset-inline: 0; top: 0; z-index: 60; transition: background .3s ease, box-shadow .3s ease; }
.site-header.is-scrolled {
  background: rgba(244, 250, 254, .88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-soft);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 82px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand__mark { width: 46px; height: 46px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 1.18rem; letter-spacing: .01em; color: var(--blue);
}
.brand__name span { color: var(--cyan); }
.brand__sub { font-family: var(--font-script); font-size: 1.02rem; color: var(--lime-d); letter-spacing: .02em; }
.nav { display: flex; align-items: center; gap: clamp(.8rem, 1.8vw, 1.4rem); }
.nav a:not(.btn) {
  text-decoration: none; font-size: .93rem; font-weight: 700; color: var(--ink-soft);
  position: relative; padding-block: .3rem; transition: color .25s ease;
}
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--lime)); border-radius: 3px; transition: width .3s ease;
}
.nav a:not(.btn):hover, .nav a:not(.btn)[aria-current="page"] { color: var(--blue); }
.nav a:not(.btn):hover::after, .nav a:not(.btn)[aria-current="page"]::after { width: 100%; }
.nav__cta { margin-left: .4rem; }
.nav-toggle { display: none; background: none; border: 0; padding: .5rem; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--blue); margin: 5px 0; border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 82px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-block: 1px solid var(--line); box-shadow: var(--shadow);
    padding: .6rem 1.2rem 1.2rem; transform: translateY(-130%); transition: transform .35s ease;
  }
  .nav.is-open { transform: none; }
  .nav a:not(.btn) { padding: .85rem .2rem; border-bottom: 1px solid var(--line); }
  .nav__cta { margin: .9rem 0 0; justify-content: center; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* -------------------------------- Hero ------------------------------------ */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(7.8rem, 15vh, 10.5rem) 0 clamp(4rem, 9vh, 6rem);
  background:
    radial-gradient(700px 420px at 88% 0%, rgba(31, 168, 220, .16), transparent 60%),
    radial-gradient(560px 380px at 0% 100%, rgba(126, 211, 33, .12), transparent 60%),
    var(--bg);
  color: var(--bg);
}
.hero__bubble { position: absolute; border-radius: 50%; border: 2px solid rgba(31, 168, 220, .25); pointer-events: none; }
.hero__bubble--a { width: 220px; height: 220px; top: 12%; right: -60px; }
.hero__bubble--b { width: 120px; height: 120px; bottom: 18%; left: -40px; border-color: rgba(126, 211, 33, .3); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; color: var(--ink); }
.badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--cyan-soft); color: var(--blue);
  border: 1px solid var(--line); border-radius: 999px;
  font-size: .85rem; font-weight: 800;
  padding: .42rem 1rem; margin: 0 0 1.3rem;
}
.hero__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.3rem, 5.2vw, 3.7rem); letter-spacing: -.015em; color: var(--blue-ink);
  margin-bottom: 1.15rem;
}
.hero__title em, .section__title em, .taf__title em, .page-hero__title em {
  font-style: italic; color: var(--cyan);
  text-decoration: underline; text-decoration-color: var(--lime); text-decoration-thickness: 4px; text-underline-offset: 6px;
}
.hero__lead { font-size: 1.08rem; color: var(--ink-soft); max-width: 34rem; margin-bottom: 1.7rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.2rem; }

.stats { display: grid; grid-template-columns: repeat(4, auto); gap: clamp(1rem, 3vw, 2.2rem); margin: 0; padding: 1.2rem 0 0; border-top: 2px solid var(--line); }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: 1.8rem; color: var(--blue); margin: 0; }
.stat__label { font-size: .8rem; font-weight: 600; color: var(--ink-soft); }

.hero__visual { position: relative; justify-self: center; }
.hero__photo { margin: 0; position: relative; width: min(440px, 82vw); }
.hero__photo img {
  width: 100%; aspect-ratio: 5 / 6; object-fit: cover;
  border-radius: 46% 46% var(--radius) var(--radius) / 34% 34% var(--radius) var(--radius);
  box-shadow: var(--shadow); border: 6px solid #fff;
}
.float-card {
  position: absolute; display: flex; align-items: center; gap: .6rem;
  background: rgba(255, 255, 255, .94); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-soft);
  padding: .7rem 1rem; font-size: .8rem; line-height: 1.35; color: var(--ink-soft);
  animation: floaty 5.5s ease-in-out infinite;
}
.float-card b { color: var(--blue-ink); font-weight: 800; }
.float-card__icon {
  display: grid; place-items: center; width: 38px; height: 38px; flex: none; font-size: 1.15rem;
  background: var(--cyan-soft); border-radius: 12px;
}
.float-card--a { top: 10%; left: -14%; }
.float-card--b { bottom: 10%; right: -10%; animation-delay: 2.7s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (max-width: 1060px) { .float-card--a { left: -2%; } .float-card--b { right: -2%; } }

.wave-divider { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: clamp(28px, 5vw, 70px); color: #fff; display: block; }

/* ------------------------------- Ticker ----------------------------------- */
.ticker { border-block: 1px solid var(--line); background: #fff; overflow: hidden; padding: .85rem 0; }
.ticker__track { display: flex; align-items: center; gap: 2.2rem; width: max-content; animation: ticker 30s linear infinite; }
.ticker__track span {
  font-family: var(--font-display); font-style: italic; font-weight: 800;
  font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; color: var(--blue); white-space: nowrap;
}
.ticker__track i { font-style: normal; font-size: .8rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ------------------------------ Seções ------------------------------------ */
.section { padding: clamp(3.6rem, 9vh, 6rem) 0; }
.section--soft { background: var(--bg-soft); }
.section__head { max-width: 640px; margin: 0 auto clamp(2rem, 5vh, 3.2rem); text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
  color: var(--lime-d); margin: 0 0 .8rem;
}
.eyebrow::before, .eyebrow::after { content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--cyan-soft); }
.eyebrow--light { color: var(--lime); }
.eyebrow--light::before, .eyebrow--light::after { background: rgba(255, 255, 255, .25); }
.section__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.8rem, 3.8vw, 2.6rem); letter-spacing: -.01em; color: var(--blue-ink); margin-bottom: .8rem;
}
.section__sub { color: var(--ink-soft); font-size: 1.02rem; margin: 0; }
.split .eyebrow::before { display: none; }

/* -------------------------------- Cards ----------------------------------- */
.grid { display: grid; gap: 1.4rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.6rem; box-shadow: var(--shadow-soft); overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(31, 168, 220, .4); }
.card::before {
  content: ""; position: absolute; inset-inline: 0; top: 0; height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--lime)); opacity: 0; transition: opacity .3s ease;
}
.card:hover::before { opacity: 1; }
.service__icon {
  display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 1.1rem;
  background: linear-gradient(135deg, var(--cyan-soft), #fff);
  border: 1px solid var(--line); border-radius: 16px; color: var(--blue);
}
.service__icon svg { width: 28px; height: 28px; }
.service__title { font-family: var(--font-display); font-weight: 800; font-size: 1.22rem; color: var(--blue-ink); margin-bottom: .5rem; }
.service__text { color: var(--ink-soft); font-size: .93rem; margin: 0; }

/* ------------------------------- Painel TAF -------------------------------- */
.taf { padding-block: clamp(2rem, 6vh, 3.4rem); }
.taf__panel {
  position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.8rem, 5vw, 3.5rem);
  align-items: center; overflow: hidden;
  background:
    radial-gradient(700px 320px at 85% -10%, rgba(31, 168, 220, .35), transparent 60%),
    radial-gradient(500px 300px at -5% 110%, rgba(126, 211, 33, .25), transparent 60%),
    linear-gradient(135deg, var(--blue-deep), var(--blue));
  border-radius: 28px; padding: clamp(2rem, 5vw, 3.6rem); box-shadow: var(--shadow);
}
.taf__title { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.8rem, 3.6vw, 2.5rem); color: #fff; margin-bottom: .9rem; }
.taf__title em { color: var(--lime); text-decoration-color: var(--cyan); }
.taf__lead { color: rgba(255, 255, 255, .85); margin-bottom: 1.2rem; }
.taf__list { list-style: none; margin: 0 0 1.7rem; padding: 0; display: grid; gap: .55rem; }
.taf__list li { display: flex; align-items: center; gap: .6rem; color: #fff; font-size: .95rem; font-weight: 700; }
.taf__list li::before { content: "🏊"; font-size: .85rem; }
.taf__photo { margin: 0; }
.taf__photo img {
  width: 100%; aspect-ratio: 7 / 8; object-fit: cover;
  border-radius: 20px 20px 20px 120px; border: 5px solid rgba(255, 255, 255, .35);
}

/* -------------------------------- Split ----------------------------------- */
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2.2rem, 6vw, 4.5rem); align-items: center; }
.split__visual { position: relative; justify-self: center; }
.split__photo { margin: 0; width: min(440px, 84vw); }
.split__photo img {
  width: 100%; aspect-ratio: 5 / 6; object-fit: cover;
  border-radius: var(--radius) 120px var(--radius) var(--radius);
  border: 6px solid #fff; box-shadow: var(--shadow);
}
.split__badge {
  position: absolute; left: -16px; bottom: -16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 108px; height: 108px; border-radius: 50%;
  background: linear-gradient(135deg, #8FE334, var(--lime)); color: var(--blue-ink);
  font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: 1.5rem; line-height: 1;
  box-shadow: var(--shadow-soft); border: 5px solid #fff;
}
.split__badge b { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; margin-bottom: .2rem; }
.list-check { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: .65rem; }
.list-check li { display: flex; align-items: center; gap: .65rem; font-size: .96rem; color: var(--ink); font-weight: 700; }
.list-check svg { color: var(--lime-d); flex: none; }

/* ---------------------------- Equipe (pro) --------------------------------- */
.pro { text-align: center; display: flex; flex-direction: column; align-items: center; padding-top: 2.1rem; }
.pro__photo { margin: 0 0 1.15rem; width: min(200px, 70%); }
.pro__photo img {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%;
  border: 4px solid #fff; box-shadow: var(--shadow-soft);
  outline: 3px solid var(--cyan-soft);
}
.pro__name { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--blue-ink); margin-bottom: .2rem; }
.pro__role {
  font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan); margin: 0 0 .7rem;
}
.pro__bio { color: var(--ink-soft); font-size: .9rem; margin: 0; }

/* ------------------------------- Masonry ----------------------------------- */
.masonry { columns: 3 300px; column-gap: 1.3rem; }
.work {
  position: relative; margin: 0 0 1.3rem; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft); break-inside: avoid; border: 1px solid var(--line);
}
.work img { width: 100%; transition: transform .6s ease; }
.work:hover img { transform: scale(1.05); }
.work__label {
  position: absolute; inset-inline: 0; bottom: 0; padding: 2rem 1.2rem .95rem;
  background: linear-gradient(transparent, rgba(7, 43, 92, .85));
  color: #fff; font-weight: 800; font-size: .95rem; line-height: 1.3;
}
.work__label small { display: block; font-weight: 400; font-size: .78rem; color: rgba(255, 255, 255, .82); }

/* ----------------------------- Depoimentos --------------------------------- */
.quote { display: flex; flex-direction: column; gap: .9rem; }
.quote__stars { color: var(--lime-d); letter-spacing: .2em; font-size: .85rem; }
.quote__text { margin: 0; font-size: 1.02rem; font-weight: 600; line-height: 1.55; color: var(--blue-ink); }
.quote__author { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.avatar {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff; font-weight: 800; font-size: .85rem; flex: none;
}
.quote__name { font-weight: 800; font-size: .93rem; color: var(--ink); }
.quote__role { font-size: .8rem; color: var(--ink-soft); }

/* --------------------------------- Blog ------------------------------------ */
.post-card { display: flex; flex-direction: column; padding: 0; }
.post-card__media { display: block; overflow: hidden; }
.post-card__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .6s ease; }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.3rem 1.4rem 1.5rem; }
.post-card__date { font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--cyan); margin-bottom: .4rem; }
.post-card__title { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; line-height: 1.25; color: var(--blue-ink); margin-bottom: .5rem; }
.post-card__title a { text-decoration: none; color: inherit; }
.post-card__title a:hover { color: var(--blue); }
.post-card__excerpt { color: var(--ink-soft); font-size: .9rem; margin-bottom: .9rem; }
.post-card__more {
  margin-top: auto; align-self: flex-start; text-decoration: none;
  font-family: var(--font-display); font-weight: 800; font-size: .86rem; color: var(--lime-d);
  transition: color .25s ease, transform .25s ease;
}
.post-card__more:hover { color: var(--blue); transform: translateX(4px); }
.blog-more { text-align: center; margin: 2.2rem 0 0; }
.blog-empty { grid-column: 1 / -1; text-align: center; color: var(--ink-soft); }

/* Página interna (blog / post) */
.page-hero {
  position: relative; overflow: hidden;
  padding: clamp(7.5rem, 14vh, 9.5rem) 0 clamp(3.4rem, 8vh, 5rem);
  background:
    radial-gradient(700px 420px at 88% 0%, rgba(31, 168, 220, .35), transparent 60%),
    linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: var(--bg);
}
.page-hero .container { color: #fff; }
.page-hero__title { font-family: var(--font-display); font-weight: 900; font-size: clamp(2rem, 4.6vw, 3.1rem); margin-bottom: .7rem; }
.page-hero__title em { color: var(--lime); text-decoration-color: var(--cyan); }
.page-hero__lead { color: rgba(255, 255, 255, .85); max-width: 40rem; margin: 0; }
.breadcrumb { font-size: .84rem; margin-bottom: 1.1rem; color: inherit; opacity: .85; }
.breadcrumb a { text-decoration: none; font-weight: 700; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { opacity: .6; margin-inline: .25rem; }
.breadcrumb b { font-weight: 800; }

.post__head { padding: clamp(7.5rem, 14vh, 9rem) 0 1.4rem; }
.post__head .breadcrumb { color: var(--ink-soft); }
.post__date { font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--cyan); display: block; margin-bottom: .5rem; }
.post__title { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.9rem, 4.2vw, 2.8rem); letter-spacing: -.01em; color: var(--blue-ink); margin-bottom: .8rem; }
.post__excerpt { font-size: 1.08rem; color: var(--ink-soft); margin: 0 0 1.4rem; }
.post__cover { margin: 0 0 1.8rem; }
.post__cover img { width: 100%; aspect-ratio: 16 / 8.5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.post__content { font-size: 1.04rem; color: var(--ink); }
.post__content p { margin-bottom: 1.15rem; }
.post__cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin: 2rem 0 1.4rem; padding: 1.4rem 1.6rem; }
.post__cta p { margin: 0; max-width: 32rem; }
.post__back { margin: 0 0 3rem; }
.post__back a { text-decoration: none; font-weight: 800; color: var(--blue); }
.post__back a:hover { color: var(--cyan); }

/* ------------------------------- Contato ------------------------------------ */
.contact { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.6rem; align-items: start; }
.contact__form { display: grid; gap: 1.05rem; padding: 2rem 1.8rem; }
.contact__form:hover { transform: none; }
.field { display: grid; gap: .35rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem; }
.field label { font-size: .84rem; font-weight: 800; color: var(--blue-ink); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .95rem; color: var(--ink);
  background: var(--bg); border: 2px solid var(--line); border-radius: 12px;
  padding: .78rem 1rem; width: 100%; transition: border-color .25s ease, box-shadow .25s ease;
}
.field textarea { resize: vertical; min-height: 104px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(31, 168, 220, .15);
}
.contact__submit { width: 100%; }
.contact__privacy { text-align: center; font-size: .8rem; color: var(--ink-soft); margin: 0; }
.contact__aside { display: grid; gap: 1rem; }
.contact__tiles { display: grid; gap: .8rem; }
.contact-tile {
  display: flex; align-items: center; gap: .9rem; text-decoration: none;
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  padding: 1rem 1.2rem; box-shadow: var(--shadow-soft);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.contact-tile:hover { transform: translateX(5px); border-color: rgba(31, 168, 220, .45); box-shadow: var(--shadow); }
.contact-tile__icon {
  display: grid; place-items: center; width: 48px; height: 48px; flex: none;
  background: var(--cyan-soft); color: var(--blue); border-radius: 14px;
}
.contact-tile__label { font-size: .78rem; color: var(--ink-soft); }
.contact-tile__value { font-weight: 800; color: var(--blue-ink); font-size: .96rem; }
.map-card { padding: 0; overflow: hidden; }
.map-card:hover { transform: none; }
.map-card iframe { width: 100%; height: 240px; border: 0; display: block; }
.map-card__note { margin: 0; padding: .8rem 1.2rem; font-size: .84rem; color: var(--ink-soft); border-top: 1px solid var(--line); }

/* -------------------------------- Footer ------------------------------------ */
.footer {
  position: relative;
  background:
    radial-gradient(600px 260px at 90% -20%, rgba(31, 168, 220, .2), transparent 60%),
    linear-gradient(160deg, var(--blue-ink), #051D40);
  color: rgba(255, 255, 255, .8); margin-top: clamp(2.6rem, 7vh, 4rem);
}
.footer__wave { position: absolute; left: 0; right: 0; top: -1px; width: 100%; height: clamp(28px, 5vw, 70px); color: var(--bg); transform: rotate(180deg); display: block; }
.section--soft + .footer .footer__wave, #contato + .footer .footer__wave { color: var(--bg); }
.footer__grid { display: grid; grid-template-columns: 1.3fr .8fr .9fr; gap: clamp(1.8rem, 5vw, 3.5rem); padding: clamp(3.4rem, 8vh, 4.6rem) 0 2rem; }
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__name span { color: var(--cyan); }
.brand--footer .brand__sub { color: var(--lime); }
.footer__tagline { margin: 1rem 0 0; font-size: .93rem; max-width: 30rem; color: rgba(255, 255, 255, .65); }
.footer__heading {
  font-family: var(--font-display); font-size: .76rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--lime); margin: 0 0 .9rem;
}
.footer__nav, .footer__contact { display: flex; flex-direction: column; }
.footer__nav a, .footer__contact a {
  text-decoration: none; padding: .28rem 0; font-size: .92rem; color: rgba(255, 255, 255, .8);
  transition: color .25s ease, transform .25s ease; width: fit-content;
}
.footer__nav a:hover, .footer__contact a:hover { color: var(--cyan); transform: translateX(4px); }
.footer__note { margin: .8rem 0 0; font-size: .82rem; color: rgba(255, 255, 255, .5); }
.footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .8rem;
  border-top: 1px solid rgba(255, 255, 255, .12); padding: 1.2rem 0 1.6rem; font-size: .82rem;
}
.footer__bottom--single { border-top: 0; padding-top: clamp(3rem, 7vh, 4rem); }
.footer__bottom p { margin: 0; color: rgba(255, 255, 255, .55); }
.footer__bottom p a { color: rgba(255, 255, 255, .75); }

.dev-credit {
  display: inline-flex; align-items: center; gap: .5rem; text-decoration: none;
  color: rgba(255, 255, 255, .55); font-size: .8rem; transition: color .3s ease;
}
.dev-credit svg { opacity: .7; transition: opacity .3s ease, color .3s ease, transform .3s ease; }
.dev-credit b { font-weight: 700; }
.dev-credit:hover { color: var(--lime); }
.dev-credit:hover svg { opacity: 1; color: var(--lime); transform: translateY(-2px); }

/* ------------------------------ FAB + Toast --------------------------------- */
.wa-fab {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 70;
  display: flex; align-items: center; gap: .55rem;
  background: #25D366; color: #fff; text-decoration: none;
  border-radius: 999px; padding: .85rem 1.15rem; font-weight: 800; font-size: .9rem;
  box-shadow: 0 14px 34px -10px rgba(37, 211, 102, .65);
  transition: transform .25s ease, box-shadow .25s ease;
}
.wa-fab:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 40px -10px rgba(37, 211, 102, .75); }
.wa-fab__icon { width: 22px; height: 22px; }
@media (max-width: 640px) { .wa-fab__label { display: none; } .wa-fab { padding: .9rem; } }

.toast {
  position: fixed; left: 50%; bottom: 1.4rem; transform: translate(-50%, 20px); z-index: 80;
  background: var(--blue-ink); color: #fff; font-size: .9rem; font-weight: 700;
  padding: .8rem 1.4rem; border-radius: 999px; box-shadow: var(--shadow);
  opacity: 0; pointer-events: none; transition: opacity .35s ease, transform .35s ease;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ------------------------------ Responsivo ---------------------------------- */
@media (max-width: 1020px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__content { display: flex; flex-direction: column; align-items: center; }
  .hero__lead { margin-inline: auto; }
  .hero__visual { margin-top: 1.4rem; }
  .stats { grid-template-columns: repeat(4, auto); justify-content: center; }
  .split { grid-template-columns: 1fr; }
  .split__content { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .taf__panel { grid-template-columns: 1fr; }
  .taf__photo { max-width: 420px; margin-inline: auto; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .contact { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .grid--3, .field-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, auto); gap: 1rem 2.4rem; }
  .float-card { font-size: .72rem; }
  .float-card--a { left: 0; } .float-card--b { right: 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer__bottom { justify-content: center; text-align: center; }
  .post__cta { flex-direction: column; align-items: flex-start; }
}
