/* ============================================================
   Oyster Dental Clinic — Modern Editorial Clinical
   Base: Clinical Luminary com tipografia oversize + acentos dark
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

:root {
  --teal:        #1A999C;
  --teal-dark:   #00696c;
  --teal-darker: #004e5f;
  --green:       #10b981;
  --pearl:       #c9d8e0;
  --pearl-deep:  #7e93a3;
  --navy:        #0a1f2c;
  --navy-deep:   #061520;
  --ink:         #0a1628;
  --muted:       #4c607c;
  --line:        #e6dfd8;
  --surface:     #f7f4f0;     /* bege mais terroso, mais editorial */
  --surface-2:   #fbf9f6;
  --mint:        #eefbfa;
}

/* ============== UTIL ============== */
.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 22px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(26,153,156,0.06);
  border: 1px solid rgba(26,153,156,0.20);
  color: var(--teal-dark);
  font-size: 10px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(16,185,129,0.18); }
.eyebrow.inverse { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.18); color: #cfe9e9; }
.eyebrow.inverse .dot { background: var(--pearl); box-shadow: 0 0 0 4px rgba(201,216,224,0.18); }

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
  color: var(--ink);
}
.section-title em {
  font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, var(--teal) 0%, var(--green) 60%, var(--pearl-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-title.light { color: #fff; }
.section-sub {
  font-size: 17px; color: var(--muted); max-width: 520px; line-height: 1.6;
}

.section-head { margin: 0 auto 56px; }
.section-head.two-col {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: end;
  max-width: 1320px;
}
@media (max-width: 900px) {
  .section-head.two-col { grid-template-columns: 1fr; gap: 24px; align-items: start; }
}

/* ============== NAV ============== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: rgba(247,244,240,0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(10,22,40,0.06);
  padding: 14px 32px;
}
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.nav-logo {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: white; display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 22px;
  box-shadow: 0 8px 24px rgba(26,153,156,0.3);
  position: relative; overflow: hidden;
}
.nav-logo::after {
  content: ""; position: absolute; inset: -2px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.5), transparent 50%);
  pointer-events: none;
}
.nav-logo.small { width: 38px; height: 38px; font-size: 18px; }
.nav-logo span { color: #a7f3d0; }
.nav-brand .name {
  font-family: 'Fraunces', serif; font-size: 20px; font-weight: 500; line-height: 1;
  letter-spacing: -0.01em;
}
.nav-brand .name em { font-style: italic; font-weight: 400; color: var(--teal-dark); }
.nav-brand .sub { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 5px; }

.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a {
  color: var(--ink); text-decoration: none;
  padding: 8px 12px; font-size: 13px; font-weight: 500;
  transition: color 0.15s; opacity: 0.7;
}
.nav-links a:hover { color: var(--teal); opacity: 1; }

.nav-right { display: flex; align-items: center; gap: 14px; }

.lang-switch {
  display: flex; gap: 0; padding: 3px;
  background: rgba(10,22,40,0.04);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: 999px;
}
.lang-switch button {
  border: 0; background: transparent; cursor: pointer;
  padding: 6px 11px; border-radius: 999px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); transition: all 0.2s;
  font-family: inherit;
}
.lang-switch button:hover { color: var(--teal); }
.lang-switch button.active {
  background: var(--ink); color: #fff;
  box-shadow: 0 2px 8px rgba(10,22,40,0.3);
}

.nav-cta {
  background: var(--ink); color: white;
  padding: 12px 18px 12px 22px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-decoration: none; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta .material-icons-outlined { font-size: 18px; }
.nav-cta:hover { background: var(--teal); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(26,153,156,0.35); }

@media (max-width: 1080px) {
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .lang-switch { display: none; }
  .nav-brand .sub { display: none; }
}

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 160px 32px 90px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 18% 0%, rgba(26,153,156,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 50%, rgba(201,216,224,0.42) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 110%, rgba(16,185,129,0.12) 0%, transparent 60%),
    linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,22,40,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,22,40,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
}

.hero-inner { max-width: 1320px; margin: 0 auto; }

.hero-meta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 32px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted);
}
.hero-meta .tick { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(16,185,129,0.16); }
.hero-meta .divider { width: 1px; height: 14px; background: rgba(10,22,40,0.18); }

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(58px, 11.5vw, 180px);
  font-weight: 350;
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0 0 48px;
  color: var(--ink);
}
.hero-title .line { display: block; }
.hero-title .line.accent em {
  font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, var(--teal) 0%, var(--green) 55%, var(--pearl-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-title .line.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  text-stroke: 1.5px var(--ink);
  font-weight: 300;
}

.hero-bottom {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: end;
  max-width: 1100px;
}
.hero-sub {
  font-size: 17px; line-height: 1.6; color: var(--muted);
  margin: 0; max-width: 520px;
}
.hero-sub strong { color: var(--ink); }
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 760px) {
  .hero-bottom { grid-template-columns: 1fr; gap: 24px; }
  .hero-ctas { justify-content: flex-start; }
}

.cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.02em;
  text-decoration: none; cursor: pointer; border: 0;
  transition: all 0.25s; font-family: inherit;
}
.cta .material-icons-outlined { font-size: 18px; }
.cta.primary {
  background: var(--ink); color: #fff;
}
.cta.primary:hover { background: var(--teal); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(26,153,156,0.4); }
.cta.ghost {
  background: rgba(255,255,255,0.6);
  color: var(--ink);
  border: 1px solid rgba(10,22,40,0.14);
  backdrop-filter: blur(6px);
}
.cta.ghost:hover { background: #fff; border-color: var(--teal); color: var(--teal-dark); }
.cta.primary.on-dark { background: #fff; color: var(--ink); }
.cta.primary.on-dark:hover { background: var(--pearl); color: var(--ink); transform: translateY(-1px); }
.cta.block { width: 100%; justify-content: center; }

/* Direct-answer paragraph (GEO-friendly) */
.hero-answer {
  max-width: 1320px; margin: 56px auto 0;
  font-size: 15px; line-height: 1.7; color: var(--muted);
  padding: 24px 28px;
  border-left: 3px solid var(--teal);
  background: rgba(255,255,255,0.55);
  border-radius: 0 14px 14px 0;
  backdrop-filter: blur(6px);
}
.hero-answer strong { color: var(--ink); font-weight: 600; }
.hero-answer a { color: var(--teal-dark); text-decoration: none; border-bottom: 1px solid currentColor; }

/* ============== MARQUEE ============== */
.marquee {
  background: var(--ink);
  color: #f3eee6;
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee-track {
  display: flex; gap: 28px; align-items: center;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.marquee-track .m-dot { color: var(--teal); font-style: normal; }
.marquee-track span { font-style: italic; }
.marquee-track span:not(.m-dot)::first-letter { font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============== NÚMEROS ============== */
.numbers { padding: 110px 0 90px; }
.numbers-head { text-align: left; max-width: 720px; margin-bottom: 56px; }
.numbers-head .section-title { font-weight: 350; }

.numbers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 860px) { .numbers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .numbers-grid { grid-template-columns: 1fr; } }

.number-tile {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px; justify-content: space-between;
  min-height: 220px;
  transition: background 0.25s;
}
.number-tile:hover { background: rgba(26,153,156,0.04); }
.number-tile:last-child { border-right: 0; }
@media (max-width: 860px) {
  .number-tile:nth-child(2n) { border-right: 0; }
  .number-tile:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 480px) {
  .number-tile { border-right: 0; border-bottom: 1px solid var(--line); }
  .number-tile:last-child { border-bottom: 0; }
}

.number-tile .big {
  font-family: 'Fraunces', serif;
  font-size: clamp(72px, 10vw, 124px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.number-tile .big small {
  font-size: 0.45em; vertical-align: top;
  background: linear-gradient(135deg, var(--teal), var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 500; margin-left: 2px;
}
.number-tile .lbl {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); line-height: 1.45;
}

/* ============== EDITORIAL DARK ============== */
.editorial {
  position: relative;
  padding: 110px 32px;
  color: #ecebe6;
  overflow: hidden;
  isolation: isolate;
}
.editorial-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 18% 18%, rgba(26,153,156,0.45) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 90% 80%, rgba(16,185,129,0.25) 0%, transparent 50%),
    radial-gradient(circle at 75% 35%, rgba(201,216,224,0.18) 0%, transparent 40%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
}
.editorial-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.6;
}
.editorial-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.25;
  mix-blend-mode: overlay;
}

.editorial-inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start;
}
@media (max-width: 900px) { .editorial-inner { grid-template-columns: 1fr; gap: 30px; } }

.editorial-left .section-title { font-weight: 350; }
.editorial-right p {
  font-size: 16px; line-height: 1.75;
  color: rgba(255,255,255,0.78); margin: 0 0 18px;
}
.editorial-right strong { color: #fff; font-weight: 600; }
.editorial-list { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 12px; }
.editorial-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.86); font-weight: 500;
}
.editorial-list .material-icons-outlined {
  font-size: 14px;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  background: var(--teal); color: #fff;
  border-radius: 50%;
}

/* ============== SERVICES ============== */
.services { padding: 110px 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  padding: 36px 32px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
  background: var(--surface);
  transition: background 0.25s;
}
.service-card:hover { background: var(--surface-2); }
.service-card header { display: flex; align-items: baseline; gap: 14px; }
.service-num {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 13px; color: var(--teal); letter-spacing: 0.04em;
}
.service-card h3 {
  font-family: 'Fraunces', serif; font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 400; line-height: 1.1; letter-spacing: -0.02em;
  margin: 0; color: var(--ink);
}
.service-card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin: 0; flex: 1; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink); text-decoration: none; font-weight: 600;
  font-size: 12px;
  margin-top: 6px;
  border-bottom: 1px solid var(--ink); padding-bottom: 2px; align-self: flex-start;
  transition: all 0.2s;
}
.service-link:hover { color: var(--teal); border-color: var(--teal); }
.service-link .material-icons-outlined { font-size: 14px; transition: transform 0.2s; }
.service-link:hover .material-icons-outlined { transform: translate(2px, -2px); }

/* ============== TEAM ============== */
.team {
  padding: 110px 0;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(201,216,224,0.30) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(26,153,156,0.06) 0%, transparent 50%),
    var(--surface-2);
}
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 860px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  display: grid; grid-template-columns: 240px 1fr;
  transition: all 0.25s;
}
.team-card:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(10,37,64,0.10); }
@media (max-width: 640px) { .team-card { grid-template-columns: 1fr; } }

.team-photo {
  background:
    linear-gradient(180deg, rgba(26,153,156,0.10), rgba(201,216,224,0.30));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: var(--teal-dark); padding: 24px;
  min-height: 280px;
}
.team-photo .material-icons-outlined { font-size: 64px; opacity: 0.45; }
.team-photo small { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

.team-body { padding: 32px 32px; }
.team-tag {
  display: inline-block; padding: 5px 10px; border-radius: 999px;
  background: rgba(16,185,129,0.10); color: var(--teal-dark);
  font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 14px;
}
.team-body h3 {
  font-family: 'Fraunces', serif; font-size: 32px; font-weight: 400; line-height: 1.05;
  margin: 0 0 14px; letter-spacing: -0.025em;
}
.team-body p { color: var(--muted); font-size: 14.5px; line-height: 1.65; margin: 0 0 18px; }
.team-body strong { color: var(--ink); font-weight: 600; }
.team-creds { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.team-creds li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted);
}
.team-creds .material-icons-outlined { font-size: 18px; color: var(--teal); }

/* ============== PROCESS ============== */
.process { padding: 110px 0; }
.process-steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
}
@media (max-width: 1000px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process-steps { grid-template-columns: 1fr; } }

.process-steps li {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
  transition: background 0.25s;
}
.process-steps li:hover { background: rgba(26,153,156,0.04); }
.process-steps li:last-child { border-right: 0; }
@media (max-width: 1000px) {
  .process-steps li:nth-child(2n) { border-right: 0; }
}
@media (max-width: 540px) {
  .process-steps li { border-right: 0; }
}

.step-num {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 36px; font-weight: 300;
  background: linear-gradient(135deg, var(--teal), var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.process-steps h4 {
  font-family: 'Fraunces', serif; font-size: 22px; font-weight: 400;
  margin: 0; letter-spacing: -0.015em;
}
.process-steps p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ============== OYSTER DENTAL CLUB ============== */
.club { padding: 80px 0 100px; }
.club-card {
  position: relative; overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(201,216,224,0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(16,185,129,0.22) 0%, transparent 50%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--teal-darker) 60%, var(--teal) 100%);
  color: #fff;
  display: grid; grid-template-columns: 1.4fr 1fr;
  padding: 64px 64px;
  box-shadow: 0 40px 80px rgba(10,37,64,0.25);
}
.club-card::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.club-copy { position: relative; z-index: 1; }
.club-copy .eyebrow { margin-bottom: 20px; }
.club-copy p { color: rgba(255,255,255,0.78); font-size: 16px; line-height: 1.7; margin: 0 0 24px; max-width: 520px; }
.club-perks { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-direction: column; gap: 12px; }
.club-perks li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px; color: #eaf4f5; font-weight: 500;
}
.club-perks .material-icons-outlined { color: var(--pearl); font-size: 22px; }

.club-visual { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; }

.pearl { width: 320px; height: 320px; border-radius: 50%; position: relative;
  background: radial-gradient(circle at 30% 28%, #ffffff 0%, #eaf4f5 22%, #c9d8e0 55%, #7e93a3 100%);
  filter: drop-shadow(0 30px 60px rgba(126,147,163,0.35));
}
.pearl::before {
  content: ""; position: absolute; inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, rgba(255,255,255,0.85), transparent 55%);
}
.pearl-inner {
  position: absolute; top: 18%; left: 22%;
  width: 38%; height: 38%; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,0.9), rgba(255,255,255,0) 70%);
}
.pearl-spark { position: absolute; border-radius: 50%; background: #fff; opacity: 0.9; }
.pearl-spark.a { top: 22%; right: 28%; width: 10px; height: 10px; box-shadow: 0 0 16px rgba(255,255,255,0.9); }
.pearl-spark.b { bottom: 26%; left: 32%; width: 5px; height: 5px; box-shadow: 0 0 10px rgba(255,255,255,0.8); }
.pearl.big { width: 420px; height: 420px; }

@media (max-width: 900px) {
  .club-card { grid-template-columns: 1fr; padding: 44px 32px; }
  .club-visual { display: none; }
}

/* ============== FAQ ============== */
.faq { padding: 110px 0; background: var(--surface-2); }
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 20px 4px;
  transition: background 0.2s;
}
.faq-list details[open] { background: rgba(26,153,156,0.04); padding: 28px 4px 24px; }
.faq-list summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  font-family: 'Fraunces', serif; font-size: clamp(19px, 2.1vw, 24px);
  font-weight: 400; letter-spacing: -0.015em; color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .material-icons-outlined {
  font-size: 28px; color: var(--muted);
  transition: transform 0.25s, color 0.25s;
  flex-shrink: 0;
}
.faq-list details[open] summary .material-icons-outlined { transform: rotate(180deg); color: var(--teal); }
.faq-list details p {
  margin: 16px 0 0; font-size: 15px; line-height: 1.7; color: var(--muted);
  max-width: 880px;
}
.faq-list details p strong { color: var(--ink); }
.faq-list details p a { color: var(--teal-dark); text-decoration: underline; }

/* ============== CONTATO ============== */
.contact { padding: 110px 0; background: linear-gradient(180deg, var(--surface) 0%, var(--mint) 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-lead { font-size: 17px; color: var(--muted); line-height: 1.65; margin: 0 0 28px; max-width: 480px; }
.contact-lead strong { color: var(--ink); }

.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .contact-cards { grid-template-columns: 1fr; } }

.contact-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  transition: all 0.25s;
}
.contact-card:hover { border-color: rgba(26,153,156,0.4); transform: translateY(-2px); }
.contact-card .material-icons-outlined { color: var(--teal); font-size: 26px; flex-shrink: 0; }
.contact-card strong { display: block; font-family: 'Fraunces', serif; font-weight: 400; font-size: 17px; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.01em; }
.contact-card small { display: block; font-size: 11px; color: var(--muted); margin-top: 4px; letter-spacing: 0.04em; }
.contact-card > div { font-size: 13px; color: var(--muted); line-height: 1.45; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 18px 40px rgba(10,37,64,0.06);
}
.contact-form h3 {
  font-family: 'Fraunces', serif; font-size: 30px; font-weight: 400;
  margin: 0 0 8px; letter-spacing: -0.02em;
}
.form-sub { color: var(--muted); font-size: 14px; margin: 0 0 24px; }
.contact-form label { display: block; margin-bottom: 14px; }
.contact-form label > span {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-2);
  font-family: inherit; font-size: 14px; color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(26,153,156,0.12);
  background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 80px; }
.form-disclaimer { display: block; text-align: center; color: var(--muted); font-size: 11px; margin-top: 14px; letter-spacing: 0.04em; }

/* ============== OPTION PILL (switcher) ============== */
.option-pill-v1 {
  position: fixed; right: 26px; bottom: 26px; z-index: 80;
  background: var(--ink); color: #fff;
  padding: 12px 18px; border-radius: 999px;
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 18px 40px rgba(10,22,40,0.30);
  transition: all 0.2s;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
}
.option-pill-v1:hover { background: var(--teal); transform: translateY(-2px); box-shadow: 0 22px 50px rgba(26,153,156,0.4); }
.option-pill-v1 strong { font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; font-size: 14px; letter-spacing: -0.01em; }
.option-pill-v1 .op-mono { color: rgba(255,255,255,0.55); font-size: 9.5px; letter-spacing: 0.10em; text-transform: uppercase; font-family: 'JetBrains Mono', monospace; }
.option-pill-v1 .op-mono.op-small { font-size: 9px; }
@media (max-width: 700px) {
  .option-pill-v1 { right: 14px; bottom: 14px; padding: 10px 14px; }
  .option-pill-v1 .op-mono { display: none; }
}

/* ============== FOOTER ============== */
.footer { background: var(--ink); color: #cfe9e9; padding: 80px 0 28px; }
.footer-inner { display: flex; flex-direction: column; gap: 56px; }

.footer-top {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: end;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-brand .name { font-family: 'Fraunces', serif; font-size: 22px; color: #fff; line-height: 1; letter-spacing: -0.01em; }
.footer-brand .name em { font-style: italic; font-weight: 400; color: var(--teal); }
.footer-brand .sub { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 6px; }

.footer-tag {
  font-family: 'Fraunces', serif; font-size: clamp(20px, 2.1vw, 26px);
  font-weight: 400; line-height: 1.4; letter-spacing: -0.015em;
  color: rgba(255,255,255,0.84); margin: 0; max-width: 680px;
}

.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 860px) { .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 480px) { .footer-cols { grid-template-columns: 1fr; } }

.footer-cols h4 {
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff; margin: 0 0 16px;
}
.footer-cols a {
  display: block; color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 14px; padding: 4px 0; transition: color 0.15s;
}
.footer-cols a:hover { color: var(--pearl); }
.footer-cols p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.78); margin: 0 0 8px; }
.footer-cols p strong { color: #fff; }
.footer-cols small { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom small { color: rgba(255,255,255,0.5); font-size: 12px; letter-spacing: 0.04em; }
