/* ====== HERO ====== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero { padding: 120px 0 60px; min-height: auto; }
}

.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--line-2) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line-2) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
}

.hero-eyebrow {
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  color: var(--ink);
  overflow-wrap: break-word;
}
.hero-title .it { font-style: italic; color: var(--primary-2); }
/* keep all italic words from a single token together on their own line */
.hero-title .word-it-group { display: block; margin-top: 0.1em; }

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-sub strong { color: var(--ink); font-weight: 500; }

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .hero-actions .btn { width: 100%; justify-content: space-between; }
}

.hero-meta {
  margin-top: 48px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .hero-meta { gap: 20px; margin-top: 32px; }
  .hero-meta-item .num { font-size: 26px; }
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta-item .num {
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-meta-item .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* hero portrait card */
.hero-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--soft);
  box-shadow: var(--shadow-lg);
}
.hero-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(217, 205, 240, 0.9), transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(167, 139, 217, 0.6), transparent 60%),
    linear-gradient(180deg, var(--soft), var(--soft-2));
  z-index: 0;
}
.hero-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 22px,
    rgba(167, 139, 217, 0.06) 22px,
    rgba(167, 139, 217, 0.06) 23px
  );
  z-index: 1;
}
.hero-portrait .label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-radius: 100px;
}
.hero-portrait .corners {
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px dashed rgba(61, 43, 92, 0.18);
  border-radius: 16px;
  pointer-events: none;
}
.hero-portrait .placeholder-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--deep);
  opacity: 0.55;
}

.hero-portrait .floating-tag {
  position: absolute;
  z-index: 3;
  background: var(--surface);
  border-radius: 100px;
  padding: 10px 14px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}
.hero-portrait .floating-tag .icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.hero-portrait .tag-1 { top: 24%; right: -16%; animation-delay: 0s; }
.hero-portrait .tag-2 { bottom: 22%; left: -22%; animation-delay: -2s; }
.hero-portrait .tag-3 { top: 60%; right: -10%; animation-delay: -4s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (max-width: 900px) {
  .hero-portrait .floating-tag { display: none; }
}
@media (max-width: 600px) {
  .hero-portrait { aspect-ratio: 4 / 3; }
}

/* marquee */
.marquee {
  margin-top: 80px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: inline-flex;
  gap: 64px;
  animation: marquee 40s linear infinite;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--muted);
  align-items: center;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 64px; }
.marquee-track .sep {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 600px) {
  .marquee { margin-top: 56px; padding: 16px 0; }
  .marquee-track { gap: 36px; font-size: 18px; animation-duration: 30s; }
  .marquee-track span { gap: 36px; }
}

/* ====== SOBRE ====== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }

.about-img {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  position: sticky;
  top: 100px;
  background: var(--soft);
  overflow: hidden;
  box-shadow: var(--shadow);
}
@media (max-width: 900px) {
  .about-img { position: relative; top: 0; aspect-ratio: 4 / 3; }
}
.about-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(255, 255, 255, 0.8), transparent 50%),
    linear-gradient(135deg, var(--soft), var(--soft-2));
}
.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, transparent 0, transparent 18px,
    rgba(167, 139, 217, 0.08) 18px, rgba(167, 139, 217, 0.08) 19px
  );
}
.about-img .label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--deep);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  border-radius: 100px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 16px 0 24px;
}
.section-title .it { font-style: italic; color: var(--primary-2); }

.about-body p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 20px;
  max-width: 56ch;
}
.about-body p strong { color: var(--ink); font-weight: 500; }
.about-body .signature {
  margin-top: 32px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--primary-2);
}

/* ====== ABORDAGENS ====== */
.approaches {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
  align-items: stretch;
}
.approach-grid > .reveal { display: flex; height: 100%; }
@media (max-width: 900px) { .approach-grid { grid-template-columns: 1fr; } }

.approach-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.approach-card .approach-tags { margin-top: auto; }
.approach-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.approach-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(ellipse at top, var(--soft), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.approach-card:hover::before { opacity: 1; }

.approach-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .approach-card { padding: 28px 24px; }
  .approach-num { margin-bottom: 48px; }
  .approach-name { font-size: 26px; }
  .test-card { padding: 28px 24px; }
}
.approach-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.5s;
}
.approach-card:hover .approach-icon {
  background: var(--primary);
  transform: rotate(-12deg) scale(1.1);
}
.approach-icon svg { width: 18px; height: 18px; color: var(--deep); transition: color 0.5s; }
.approach-card:hover .approach-icon svg { color: white; }

.approach-name {
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.approach-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.approach-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.approach-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: var(--bg-2);
  color: var(--deep);
  border-radius: 100px;
  border: 1px solid var(--line);
}

/* ====== PARA QUEM ====== */
.for-whom {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .for-whom { grid-template-columns: 1fr; gap: 48px; } }

.fw-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 600px) { .fw-list { grid-template-columns: 1fr; } }

.fw-item {
  background: var(--surface);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.fw-item:hover { background: var(--bg-2); }
.fw-item::after {
  content: '→';
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 18px;
  color: var(--primary);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: translate(-8px, 8px);
}
.fw-item:hover::after { opacity: 1; transform: translate(0, 0); }
.fw-item .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
}
.fw-item .name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.fw-item .hint {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 6px;
}

/* ====== COMO FUNCIONA ====== */
.how {
  background: var(--ink);
  color: var(--bg);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.how .section-title { color: var(--bg); }
.how .eyebrow { color: rgba(244, 238, 251, 0.6); }
.how .eyebrow::before { background: var(--primary); }

.how-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
}

.how-steps {
  margin-top: 64px;
  position: relative;
  z-index: 1;
}
.how-step {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(244, 238, 251, 0.1);
  align-items: start;
  transition: background 0.3s;
}
.how-step:hover { background: rgba(244, 238, 251, 0.02); }
.how-step:last-child { border-bottom: none; }
@media (max-width: 768px) {
  .how-step { grid-template-columns: 60px 1fr; }
  .how-step .step-desc { grid-column: 2; }
}

.step-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--primary);
  padding-top: 8px;
}
.step-name {
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: -0.015em;
  color: var(--bg);
}
.step-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244, 238, 251, 0.6);
  max-width: 50ch;
}

/* ====== DIPLOMAS ====== */
.diplomas-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.diploma {
  display: grid;
  grid-template-columns: 80px 1fr 1fr 100px;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding 0.3s, background 0.3s;
}
.diploma:hover { padding-left: 16px; background: var(--bg-2); }
@media (max-width: 768px) {
  .diploma { grid-template-columns: 60px 1fr; gap: 12px; padding: 20px 0; }
  .diploma .dp-inst, .diploma .dp-year { grid-column: 2; }
}
.dp-num { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.12em; }
.dp-title { font-family: var(--serif); font-size: 22px; letter-spacing: -0.01em; color: var(--ink); }
.dp-inst { font-size: 14px; color: var(--muted); }
.dp-year { font-family: var(--mono); font-size: 13px; color: var(--deep); text-align: right; }
@media (max-width: 768px) { .dp-year { text-align: left; } }

/* ====== DEPOIMENTOS ====== */
.testimonials {
  position: relative;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
@media (max-width: 900px) { .test-grid { grid-template-columns: 1fr; } }

.test-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
  position: relative;
}
.test-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.test-quote-mark {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 0.5;
  color: var(--primary);
  opacity: 0.5;
  height: 24px;
}
.test-text {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.005em;
  flex: 1;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.test-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--soft), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--deep);
  font-weight: 600;
}
.test-meta { display: flex; flex-direction: column; gap: 2px; }
.test-name { font-size: 14px; color: var(--ink); }
.test-role { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* ====== FAQ ====== */
.faq {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}
@media (max-width: 900px) { .faq { grid-template-columns: 1fr; gap: 48px; } }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--primary-2); }
.faq-q .icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-2);
  flex-shrink: 0;
  position: relative;
  transition: background 0.3s, transform 0.4s;
}
.faq-q .icon::before, .faq-q .icon::after {
  content: '';
  position: absolute;
  background: var(--ink);
  top: 50%;
  left: 50%;
  transition: transform 0.3s;
}
.faq-q .icon::before { width: 10px; height: 1px; transform: translate(-50%, -50%); }
.faq-q .icon::after { width: 1px; height: 10px; transform: translate(-50%, -50%); }
.faq-item.open .faq-q .icon { background: var(--primary); transform: rotate(180deg); }
.faq-item.open .faq-q .icon::before { background: white; }
.faq-item.open .faq-q .icon::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.faq-a-inner {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 60ch;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ====== AGENDAR ====== */
.book {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  margin-top: 64px;
  align-items: start;
}
@media (max-width: 900px) { .book-grid { grid-template-columns: 1fr; gap: 32px; } }

.book-info {
  position: sticky;
  top: 100px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 900px) {
  .book-info { position: relative; top: 0; padding: 28px; }
}
.book-info h3 {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.book-info p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 24px;
}

.modality-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: var(--bg-2);
  padding: 4px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.modality-tab {
  padding: 10px 14px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  transition: background 0.3s, color 0.3s;
}
.modality-tab.active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.book-summary {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.book-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
}
.book-row .lbl { color: var(--muted); font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.book-row .val { color: var(--ink); font-weight: 500; }
.book-row .val.empty { color: var(--muted); font-weight: 400; font-style: italic; }

.book-cta {
  width: 100%;
  margin-top: 20px;
  justify-content: center;
}
.book-cta:disabled { opacity: 0.4; cursor: not-allowed; }
.book-cta:disabled:hover { transform: none; }

/* calendar */
.calendar {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 600px) {
  .calendar { padding: 20px 16px; }
  .cal-day { border-radius: 10px; font-size: 13px; }
  .cal-weekdays, .cal-days { gap: 2px; }
  .cal-title { font-size: 20px; }
}
.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.cal-title {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.01em;
}
.cal-nav {
  display: flex;
  gap: 4px;
}
.cal-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.cal-nav-btn:hover { background: var(--soft); transform: scale(1.05); }
.cal-nav-btn svg { width: 12px; height: 12px; }

.cal-weekdays, .cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-weekdays {
  margin-bottom: 8px;
}
.cal-weekday {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 6px 0;
}
.cal-day {
  aspect-ratio: 1;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  position: relative;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.cal-day.empty { pointer-events: none; opacity: 0; }
.cal-day.disabled { color: var(--muted); opacity: 0.3; pointer-events: none; }
.cal-day.available { color: var(--ink); cursor: pointer; }
.cal-day.available:hover { background: var(--bg-2); transform: scale(1.05); }
.cal-day.available::after {
  content: '';
  position: absolute;
  bottom: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
}
.cal-day.today { font-weight: 600; }
.cal-day.today::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px dashed var(--primary);
  border-radius: 8px;
}
.cal-day.selected {
  background: var(--ink);
  color: var(--bg);
}
.cal-day.selected::after { background: var(--primary); }

.cal-times {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.cal-times-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.cal-times-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.cal-times-date {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -0.01em;
}
.cal-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
}
.cal-slot {
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--bg-2);
  font-family: var(--mono);
  font-size: 12px;
  text-align: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  color: var(--ink);
}
.cal-slot:hover { background: var(--soft); transform: translateY(-2px); }
.cal-slot.selected { background: var(--ink); color: var(--bg); }
.cal-empty {
  padding: 40px 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
}

/* ====== CONTATO ====== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}
.contact-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
@media (max-width: 600px) {
  .contact-item { grid-template-columns: 1fr; gap: 8px; padding: 16px 0; }
}
.contact-item .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-item .val { font-size: 15px; color: var(--ink); }
.contact-item .val a:hover { color: var(--primary-2); }

.map-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--soft);
  box-shadow: var(--shadow);
}
.map-card .map-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 40% 30%, rgba(255, 255, 255, 0.6), transparent 50%),
    linear-gradient(135deg, var(--soft), var(--soft-2));
}
.map-card .map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(61, 43, 92, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(61, 43, 92, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-card .map-pin {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 2;
}
.map-card .pin-dot {
  width: 16px;
  height: 16px;
  background: var(--primary-2);
  border-radius: 50%;
  border: 3px solid var(--surface);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
}
.map-card .pin-pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.3;
  animation: ping 2s ease-out infinite;
}
@keyframes ping {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(2.5); opacity: 0; }
}
.map-card .map-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  padding: 16px 20px;
  border-radius: 14px;
  z-index: 3;
}
.map-card .map-label .city {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--deep);
}
.map-card .map-label .addr {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

/* ====== FOOTER ====== */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } }

.footer-brand {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.footer-brand .it { font-style: italic; color: var(--primary); }
.footer-tag { font-size: 14px; color: rgba(244, 238, 251, 0.6); max-width: 30ch; line-height: 1.6; }

.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 238, 251, 0.5);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(244, 238, 251, 0.85);
  transition: color 0.2s, transform 0.2s;
}
.footer-col a:hover { color: var(--primary); transform: translateX(4px); }

.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 238, 251, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(244, 238, 251, 0.4);
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; gap: 12px; }
  .footer-brand { font-size: 48px; }
}

.footer-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.4;
}

/* ====== SECTION HEADER ====== */
.section-head {
  max-width: 720px;
  margin-bottom: 0;
}
.section-head .eyebrow { margin-bottom: 24px; }
.section-head .lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 56ch;
}

/* word-by-word reveal helpers */
.word { display: inline-block; overflow: hidden; vertical-align: top; padding: 0.15em 0.05em 0.3em; margin: -0.15em -0.05em -0.3em; line-height: inherit; }
.word > span { display: inline-block; transform: translateY(140%); transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); line-height: inherit; }
.in .word > span { transform: translateY(0); }
.word > span { transition-delay: calc(var(--i, 0) * 40ms); }
