/* =========================================================================
   ALTO DA VILA — Landing v2 (modern reference style)
   Pill nav · mega-bold type · floating glass stat cards · heavy rounded
   ========================================================================= */

:root {
  --bg: #0A0B1F;
  --bg-deep: #06071A;
  --surface: #13152E;
  --surface-2: #1A1D3C;
  --surface-3: #232752;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.14);

  --navy: #1A1F4E;
  --coral: #E091B0;
  --coral-light: #F0B5CD;
  --coral-deep: #C97499;
  --lavanda: #9B8FCC;
  --lavanda-light: #B5ABE0;

  --white: #FFFFFF;
  --text: #F0F0F5;
  --muted: #B5B8D0;
  --muted-2: #7A7E9A;

  --brand-gradient: linear-gradient(135deg, var(--coral) 0%, var(--lavanda) 60%, var(--navy) 100%);

  --shadow-card: 0 30px 60px -20px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
  --shadow-float: 0 20px 50px rgba(224,145,176,0.18), 0 0 0 1px rgba(255,255,255,0.06);

  --r-pill: 999px;
  --r-card: 28px;
  --r-card-sm: 20px;
  --r-md: 14px;

  --container: 1280px;

  --font: "Archivo", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg-deep); }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.55;
  font-weight: 400;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select { font: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 720px) { .container { padding: 0 18px; } }

/* ---------- Type system ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  width: fit-content;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(224,145,176,0.18);
}

/* Display heading — heavy modern, like the reference */
.h-display {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--white);
  text-wrap: balance;
}
.h-display .underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  color: var(--coral);
}
.h-display .underline::after {
  content: "";
  position: absolute;
  left: 4%; right: 4%; bottom: -4px;
  height: 5px;
  background: var(--coral);
  border-radius: 4px;
}
.h-section {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--white);
  text-wrap: balance;
}
.h-section .underline {
  position: relative;
  display: inline-block;
  color: var(--coral);
}
.h-section .underline::after {
  content: "";
  position: absolute;
  left: 4%; right: 4%; bottom: -2px;
  height: 4px;
  background: var(--coral);
  border-radius: 4px;
}
.h-section em {
  font-style: normal;
  color: var(--coral);
}
.lead {
  font-size: clamp(17px, 1.35vw, 21px);
  color: var(--muted);
  font-weight: 400;
  max-width: 56ch;
  line-height: 1.6;
}

/* ---------- Logo ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo__img {
  height: 30px;
  width: auto;
  display: block;
}
.logo__img--footer { height: 38px; }
.logo__mark { width: 30px; height: 30px; flex-shrink: 0; }
.logo__text { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; color: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--coral);
  color: var(--bg-deep);
  box-shadow: 0 12px 30px rgba(224,145,176,0.3);
}
.btn--primary:hover {
  background: var(--coral-light);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(224,145,176,0.4);
}
.btn--ghost {
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(224,145,176,0.4);
}
.btn--whatsapp {
  background: #25D366;
  color: white;
}
.btn--whatsapp:hover {
  background: #1FBE5C;
  transform: translateY(-2px);
}
.btn .arrow {
  transition: transform 0.25s ease;
}
.btn:hover .arrow { transform: translateX(4px); }
.btn--block { width: 100%; padding: 18px; font-size: 15px; }
.btn--sm { padding: 10px 16px; font-size: 13px; }

/* ---------- Pill Navigation ---------- */
.navbar-wrap {
  position: fixed;
  inset: 18px 0 auto 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  pointer-events: none;
}
.navbar {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 18px;
  background: rgba(13, 15, 38, 0.75);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  transition: padding 0.3s ease, background 0.3s ease;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 4px 0 12px;
  border-left: 1px solid var(--line);
  margin-left: 6px;
}
.navbar__link {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease, background 0.2s ease;
}
.navbar__link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}
.navbar__link.is-active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}
.navbar__cta { padding: 10px 18px; font-size: 13px; }
@media (max-width: 860px) {
  .navbar__nav { display: none; }
  .navbar { padding: 6px 6px 6px 14px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(116px, 14vw, 150px) 0 clamp(56px, 8vw, 88px);
  overflow: hidden;
  background: var(--bg);
}
.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__glow::before {
  content: "";
  position: absolute;
  top: -10%; right: -10%;
  width: 70vw; height: 70vw;
  background: radial-gradient(circle, rgba(224,145,176,0.18) 0%, transparent 55%);
  border-radius: 50%;
}
.hero__glow::after {
  content: "";
  position: absolute;
  bottom: -20%; left: -15%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(155,143,204,0.13) 0%, transparent 55%);
  border-radius: 50%;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(36px, 5vw, 60px);
  align-items: center;
}
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
}

.hero__copy { display: flex; flex-direction: column; gap: clamp(22px, 3vw, 30px); }
.hero__title { color: var(--white); }
.hero__title .small {
  display: block;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 600;
  color: var(--coral);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.hero__sub {
  font-size: clamp(16px, 1.35vw, 19px);
  color: var(--muted);
  max-width: 50ch;
  line-height: 1.65;
}

.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.5vw, 16px);
  margin-top: 6px;
}
@media (max-width: 380px) {
  .hero__mini-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero__mini-stats .mini-stat:first-child { grid-column: 1 / -1; }
}
.mini-stat {
  padding: clamp(16px, 2vw, 22px) clamp(14px, 1.8vw, 22px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card-sm);
  display: flex; flex-direction: column; gap: 8px;
}
.mini-stat__value {
  font-size: clamp(20px, 5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 3px;
  white-space: nowrap;
}
.mini-stat__value .unit { font-size: 0.46em; color: var(--coral); font-weight: 700; letter-spacing: 0; }
.mini-stat__label {
  font-size: clamp(13px, 1.3vw, 15px);
  letter-spacing: 0.01em;
  color: var(--muted);
  font-weight: 600;
}
.mini-stat__value .unit { font-size: 0.5em; color: var(--coral); font-weight: 600; letter-spacing: 0; }

/* Hero visual + floating glass cards */
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}
.hero__visual .imgph { border: none; background: linear-gradient(135deg, var(--surface-2), var(--surface)); }

.float-card {
  position: absolute;
  z-index: 3;
  background: rgba(13, 15, 38, 0.7);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-card-sm);
  padding: 18px 20px;
  box-shadow: var(--shadow-float);
}
.float-card--price {
  top: 22px; right: 22px;
  min-width: 200px;
}
.float-card--ready {
  bottom: 22px; left: 22px;
  display: flex; align-items: center; gap: 14px;
}
.float-card__label {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.float-card__value {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}
.float-card__value strong { color: var(--coral); }
.float-card__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(224,145,176,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--coral);
  flex-shrink: 0;
}
.float-card__title {
  font-size: 14px; font-weight: 700; color: var(--white); letter-spacing: -0.01em;
}
.float-card__sub {
  font-size: 11px; color: var(--muted-2); font-weight: 500; letter-spacing: 0.04em;
}

.media-img--contain { object-fit: contain; }

/* Real image fill */
.media-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Image placeholder */
.imgph {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 100%);
  display: flex; align-items: center; justify-content: center;
  border: 1px dashed rgba(255,255,255,0.1);
}
.imgph__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 16px;
  font-weight: 600;
}
.imgph__label small {
  display: block; font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--coral);
  margin-bottom: 6px;
  font-weight: 700;
}

/* ---------- Tagline section ---------- */
.tagline {
  padding: clamp(50px, 7vw, 84px) 0;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.tagline__text {
  font-size: clamp(26px, 3.8vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--white);
}
.tagline__text .hl {
  color: var(--coral);
  position: relative;
  display: inline-block;
}
.tagline__text .hl::after {
  content: "";
  position: absolute;
  left: 4%; right: 4%; bottom: -2px;
  height: 4px; background: var(--coral);
  border-radius: 4px;
}
.tagline__text .dim { color: var(--muted); }
@media (max-width: 720px) { .tagline__text { font-size: clamp(24px, 6.5vw, 34px); } }
@media (max-width: 720px) { .tagline { padding: 48px 0; } }

/* ---------- Sections base ---------- */
.section {
  padding: clamp(64px, 8.5vw, 110px) 0;
  position: relative;
}
.section__head {
  display: flex; flex-direction: column; gap: 18px;
  margin-bottom: clamp(36px, 5vw, 56px);
  max-width: 760px;
}

/* ---------- Localização ---------- */
.location__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: stretch;
}
@media (max-width: 880px) { .location__grid { grid-template-columns: 1fr; gap: 32px; } }

.location__map {
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  border: 1px solid var(--line);
  background: var(--surface);
}

.location__list {
  display: flex; flex-direction: column;
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
}
@media (max-width: 720px) { .location__list { padding: 24px; } }
.location__intro {
  font-size: 17.5px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.7;
}
.location__intro strong { color: var(--white); font-weight: 600; }
.location__items { display: flex; flex-direction: column; }
.loc-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  transition: transform 0.3s ease;
}
.loc-item:last-child { border-bottom: 1px solid var(--line); }
.loc-item:hover { transform: translateX(4px); }
.loc-item__icon {
  width: 44px; height: 44px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(224,145,176,0.12);
  color: var(--coral);
}
.loc-item__icon svg { width: 20px; height: 20px; }
.loc-item__name {
  font-size: 16.5px; color: var(--white); font-weight: 600;
}
.loc-item__name small {
  display: block;
  font-size: 13px; color: var(--muted-2);
  font-weight: 400; margin-top: 4px;
}
.loc-item__dist {
  font-size: 20px; font-weight: 700;
  color: var(--coral);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.location__cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: auto;
  padding-top: 28px;
}
.location__cta .btn { flex: 1 1 auto; }
.location__list .location__cta { margin-top: 28px; }
@media (min-width: 881px) { .location__list .location__cta { margin-top: auto; } }
@media (max-width: 440px) { .location__cta .btn { flex: 1 1 100%; } }

/* ---------- Plantas ---------- */
.plans__tabs {
  display: inline-flex;
  padding: 6px;
  background: var(--surface);
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  margin-bottom: 36px;
  gap: 4px;
}
.plans__tab {
  padding: 13px 26px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  transition: all 0.25s ease;
  letter-spacing: -0.005em;
}
.plans__tab.is-active {
  background: var(--coral);
  color: var(--bg-deep);
}
.plan {
  display: none;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 50px);
  align-items: stretch;
}
.plan.is-active { display: grid; }
@media (max-width: 880px) { .plan { grid-template-columns: 1fr; gap: 32px; } }

.plan__image {
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--white);
  border: 1px solid var(--line);
}
.plan__image--plan {
  background: #FFFFFF;
  padding: clamp(14px, 2vw, 24px);
  display: flex; align-items: center; justify-content: center;
}
.plan__image--plan .media-img { border-radius: 8px; max-height: 100%; width: auto; margin: 0 auto; }
.plan__image .imgph { background: #FAFAFA; color: var(--navy); }
.plan__image .imgph__label { color: var(--navy); }
.plan__image .imgph__label small { color: var(--coral); }

.plan__details {
  padding: clamp(26px, 3.5vw, 40px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  display: flex; flex-direction: column;
}
.plan__details .btn { margin-top: auto; align-self: flex-start; }
.plan__details h3 {
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.025em;
  margin-bottom: 8px;
  color: var(--white);
}
.plan__details h3 em { font-style: normal; color: var(--coral); }
.plan__sub {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.6;
}
.plan__features {
  display: flex; flex-direction: column;
  margin-bottom: 28px;
}
.plan__features li {
  display: flex; align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 16px;
  color: var(--text);
}
.plan__features li:last-child { border-bottom: 1px solid var(--line); }
.plan__features li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 8px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--coral);
}

/* ---------- Lazer ---------- */
.leisure__gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: clamp(150px, 17vw, 200px);
  gap: clamp(10px, 1.2vw, 16px);
}
@media (max-width: 1024px) {
  .leisure__gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 600px) {
  .leisure__gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 188px; gap: 10px; }
  .gal__cap { padding: 13px; gap: 7px; }
  .gal__cap-name {
    font-size: 13.5px;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .gal__cap-seal { font-size: 9px; padding: 4px 9px; }
}

.gal {
  position: relative;
  border-radius: var(--r-card-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.4s ease;
}
.gal:hover { transform: translateY(-4px); }
.gal::before {
  content: "";
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(6,7,26,0.5) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3'/%3E%3C/svg%3E") center / 17px no-repeat;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  opacity: 0; transform: scale(0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.gal:hover::before { opacity: 1; transform: scale(1); }
@media (hover: none) { .gal::before { opacity: 0.85; transform: scale(1); } }
.gal::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(6,7,26,0.55) 68%, rgba(6,7,26,0.94) 100%);
  pointer-events: none;
}
.gal__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: clamp(14px, 1.6vw, 20px);
  display: flex; flex-direction: column; align-items: flex-start; gap: 9px;
}
.gal__cap-name {
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.gal__cap-seal {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(224,145,176,0.92);
  color: var(--bg-deep);
  padding: 5px 11px;
  border-radius: var(--r-pill);
  font-weight: 800;
  white-space: nowrap;
}
.gal--a { grid-column: span 3; grid-row: span 2; }
.gal--b { grid-column: span 3; grid-row: span 2; }
.gal--c { grid-column: span 2; grid-row: span 2; }
.gal--d { grid-column: span 2; grid-row: span 2; }
.gal--e { grid-column: span 2; grid-row: span 2; }
.gal--f { grid-column: span 2; grid-row: span 2; }
.gal--g { grid-column: span 2; grid-row: span 2; }
.gal--h { grid-column: span 2; grid-row: span 2; }
@media (max-width: 1024px) {
  /* 4-col tablet: two big on top row, rest in pairs */
  .gal--a, .gal--b { grid-column: span 2; grid-row: span 2; }
  .gal--c, .gal--d, .gal--e, .gal--f, .gal--g, .gal--h { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 600px) {
  .gal--a, .gal--b, .gal--c, .gal--d, .gal--e, .gal--f, .gal--g, .gal--h {
    grid-column: span 1; grid-row: span 1;
  }
}

/* ---------- Credibility — big number + testimonial split ---------- */
.cred__hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}
@media (max-width: 880px) { .cred__hero { grid-template-columns: 1fr; gap: 24px; } }

.cred__big {
  padding: 48px 44px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.cred__big::before {
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 50%; height: 80%;
  background: radial-gradient(circle, rgba(224,145,176,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cred__big-stars {
  display: flex; gap: 4px; color: var(--coral); margin-bottom: 8px;
}
.cred__big-num {
  font-size: clamp(90px, 13vw, 180px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.cred__big-num .plus { color: var(--coral); }
.cred__big-label {
  margin-top: 10px;
  font-size: 17px;
  color: var(--muted);
  font-weight: 500;
  max-width: 30ch;
  letter-spacing: -0.005em;
}

.cred__testimonial {
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.cred__quote {
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.5;
  color: var(--white);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  position: relative;
}
.cred__quote::before {
  content: "“";
  display: block;
  font-size: 60px;
  line-height: 0.5;
  color: var(--coral);
  margin-bottom: 16px;
  font-weight: 700;
}
.cred__author {
  display: flex; align-items: center; gap: 14px;
}
.cred__author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--lavanda));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  border: 2px solid var(--surface-2);
}
.cred__author-name {
  font-size: 15px; font-weight: 700; color: var(--white);
}
.cred__author-role {
  font-size: 12px; color: var(--muted-2);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* Projects grid */
.cred__projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .cred__projects { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cred__projects { grid-template-columns: 1fr; } }

.proj {
  position: relative;
  border-radius: var(--r-card-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
  background: var(--surface);
}
.proj::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,7,26,0.92) 100%);
}
.proj__cap {
  position: absolute; bottom: 16px; left: 18px; right: 18px;
  z-index: 2;
}
.proj__name {
  font-size: 15px; font-weight: 700; color: var(--white);
  letter-spacing: -0.01em;
}
.proj__city {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--coral); margin-top: 4px; font-weight: 600;
}

/* ---------- Form ---------- */
.form-section {
  position: relative;
}
.form-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(224,145,176,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.form-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 880px) { .form-section__grid { grid-template-columns: 1fr; gap: 36px; } }

.form-section__copy h2 { margin-bottom: 20px; }
.form-section__copy .lead { margin-bottom: 24px; }
.form-section__price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 16px 22px;
  border-radius: var(--r-card-sm);
  background: var(--surface);
  border: 1px solid rgba(224,145,176,0.3);
  margin-top: 4px;
}
.form-section__price .label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
  font-weight: 600;
}
.form-section__price .value {
  font-size: 20px; font-weight: 700; color: var(--white);
}
.form-section__price .value strong { color: var(--coral); }

.form-card {
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
}
@media (max-width: 560px) { .form-card { padding: 28px 22px; } }

.form-grid { display: grid; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 700;
}
.field input, .field select {
  padding: 15px 18px;
  background: var(--bg-deep);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--white);
  font-size: 16px;
  font-family: var(--font);
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--coral);
  background: rgba(13,15,38,0.6);
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%23B5B8D0' stroke-width='1.5' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 46px;
}
.field input::placeholder { color: var(--muted-2); }

.form-divider {
  display: flex; align-items: center; gap: 14px;
  margin: 22px 0 16px;
  color: var(--muted-2);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
}
.form-divider::before, .form-divider::after {
  content: ""; flex: 1; height: 1px;
  background: var(--line);
}
.form-fineprint {
  margin-top: 16px;
  font-size: 11px;
  color: var(--muted-2);
  text-align: center;
  line-height: 1.6;
}

/* ---------- Floating WhatsApp ---------- */
.float-wa {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 60;
  background: #25D366;
  color: white;
  border-radius: var(--r-pill);
  padding: 14px 22px 14px 16px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 700;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease;
}
.float-wa:hover { transform: scale(1.05); }
.float-wa svg { width: 22px; height: 22px; flex-shrink: 0; }
.float-wa .label-full { display: inline; }
@media (max-width: 560px) {
  .float-wa { padding: 14px; bottom: 88px; right: 18px; }
  .float-wa .label-full { display: none; }
}

/* ---------- Logos pill strip ---------- */
.partners {
  padding: 60px 0 40px;
}
.partners__pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 22px 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
}
@media (max-width: 720px) { .partners__pill { padding: 22px; border-radius: var(--r-card); justify-content: center; } }
.partners__label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 700;
  white-space: nowrap;
}
.partners__items {
  display: flex; align-items: center; gap: 36px;
  flex-wrap: wrap;
}
.partner {
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: -0.015em;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.partner:hover { opacity: 1; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-deep);
  padding: clamp(56px, 8vw, 88px) 0 40px;
  border-top: 1px solid var(--line-strong);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr;
  gap: clamp(32px, 5vw, 56px);
  margin-bottom: clamp(36px, 5vw, 52px);
  padding-bottom: clamp(36px, 5vw, 52px);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; gap: 28px; } }

.footer__col h4 {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 18px;
}
.footer__col p, .footer__col a {
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
}
.footer__col a:hover { color: var(--coral); }
.footer__col .logo__img--footer { height: 46px; }
.footer__brand-tag {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.footer__brand-tag strong { color: var(--white); font-weight: 700; }

.footer__legal {
  font-size: 12.5px;
  color: var(--muted-2);
  line-height: 1.85;
  max-width: 95ch;
}
.footer__copy {
  margin-top: 32px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(4, 5, 16, 0.93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 24px;
}
.lightbox.is-open { display: flex; animation: lbFade 0.25s ease; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__stage {
  max-width: min(1100px, 92vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
}
.lightbox__cap {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.01em;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line-strong);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255,255,255,0.18); }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__nav--prev { left: 22px; }
.lightbox__nav--next { right: 22px; }
@media (max-width: 600px) {
  .lightbox { padding: 16px; }
  .lightbox__close, .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__close { top: 12px; right: 12px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__cap { font-size: 14px; }
}

