/* ============================================================
   CASA GRIMALDI · /agendar
   ============================================================ */

/* Hero simplificado — sem foto, texto centralizado */
.hero--simple {
  padding: 96px 0 72px;
}
.hero--simple::before {
  left: 50%;
  transform: translateX(-50%);
}
.hero-text-only {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hero-text-only .hero-headline {
  font-size: clamp(32px, 4.4vw, 48px);
  margin: 24px 0 24px;
}
.hero-text-only .hero-sub {
  margin: 0 auto;
  max-width: 540px;
}

/* Grid de opções de agendamento */
.agendar-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.agendar-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-dark-md);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--t-base) var(--ease), background var(--t-base) var(--ease);
}
.agendar-card:hover {
  border-color: var(--amber-soft);
  background: rgba(255, 255, 255, 0.05);
}
.agendar-card-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--amber-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 8px;
}
.agendar-card-icon--wpp {
  border-color: rgba(37, 211, 102, 0.4);
  color: #25D366;
}
.agendar-card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: var(--nevoa);
  letter-spacing: 0.3px;
}
.agendar-card-text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--taupe);
  flex: 1;
}
.agendar-card .btn {
  margin-top: auto;
  align-self: flex-start;
}
.wpp-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: var(--nevoa);
  letter-spacing: 0.5px;
  margin: 0;
}
.wpp-number a {
  color: var(--nevoa);
  border-bottom: 1px solid var(--amber-soft);
  padding-bottom: 2px;
  transition: border-color var(--t-fast) var(--ease);
}
.wpp-number a:hover { border-color: #25D366; }

/* Botão WhatsApp verde — padrão Sessão 18 */
.btn--whatsapp {
  background: #25D366;
  color: #FFFFFF;
}
.btn--whatsapp:hover {
  background: #1ebe57;
}
.btn--whatsapp svg {
  fill: #FFFFFF;
}

/* Mapa */
.map-section {
  padding: 80px 0;
}
.map-section .h2 {
  text-align: center;
}
.map-section .prose {
  text-align: center;
}
.map-wrapper {
  margin-top: 48px;
  border: 1px solid var(--line-light);
  overflow: hidden;
  background: var(--quartzo);
}
.map-wrapper iframe {
  display: block;
  filter: saturate(0.85) contrast(0.95);
}

/* Bloco LGPD */
.lgpd-section {
  padding: 40px 0;
  text-align: center;
}
.lgpd-text {
  font-size: 12px;
  font-weight: 300;
  color: var(--taupe);
  font-style: italic;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.85;
}
.lgpd-text a {
  color: var(--amber);
  border-bottom: 1px solid var(--amber-soft);
  font-style: normal;
}
.lgpd-text a:hover { border-color: var(--amber); }

/* Responsivo */
@media (max-width: 900px) {
  .agendar-options { grid-template-columns: 1fr; gap: 16px; }
  .hero--simple { padding: 64px 0 48px; }
}
