@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #f5ece8;
  font-family: 'Jost', sans-serif;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

.page {
  width: 100%;
  max-width: 430px;
  background: #fdf8f5;
  min-height: 100vh;
}

/* ── HERO ── */
.hero {
  background: #6b0d18;
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Círculo decorativo suave no canto */
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.hero > * { position: relative; z-index: 1; }

/* ── FOTO ── */
.avatar-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.4);
  margin: 0 auto 1.3rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.hero-title {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 0.5rem;
  font-weight: 300;
}

.hero-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin: 1.1rem auto;
}

.hero-bio {
  font-size: 13.5px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  font-weight: 300;
  padding: 0 0.75rem;
}

.social-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 1.5rem;
}

.soc-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}

.soc-btn:hover { background: rgba(255,255,255,0.18); }

/* ── CONTEÚDO ── */
.content { padding: 1.75rem 1.25rem; }

.section-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #7e6961;
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-nova {
  background: #6b0d18;
  color: #f5d5d8;
  font-size: 8px;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 50px;
}

/* ── CTAs ── */
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 15px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  margin-bottom: 0.75rem;
  border: none;
}

.cta-primary { background: #6b0d18; color: #fff; }
.cta-primary:hover { background: #7d0f1c; }

.cta-outline {
  background: transparent;
  color: #6b0d18;
  border: 1.5px solid #6b0d18;
}
.cta-outline:hover { background: rgba(107,13,24,0.05); }

.cta-maps {
  background: #fff;
  color: #2d1f1e;
  border: 1.5px solid #e8ddd8;
}
.cta-maps:hover { border-color: #7e6961; }

.cta-insta {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  border: none;
}
.cta-insta:hover { opacity: 0.9; }

/* Curso CTA - para destacar botão de curso */
.cta-course {
  background: #7e6961;
  color: #fff;
  border: none;
}
.cta-course:hover {
  background: #8b4a52;
}

/* ── DIVISOR ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4c4bc, transparent);
  margin: 1.75rem 0;
}

/* ── SERVIÇOS ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-card {
  background: #fff;
  border: 0.5px solid #e8ddd8;
  border-radius: 14px;
  padding: 1rem 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
}

.service-card:hover {
  border-color: #7e6961;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107,13,24,0.08);
}

.service-icon { font-size: 18px; margin-bottom: 0.5rem; display: block; color: #6b0d18; }
.service-name { font-size: 12px; font-weight: 500; color: #2d1f1e; line-height: 1.3; }
.service-desc { font-size: 10.5px; color: #7e6961; margin-top: 4px; font-weight: 300; line-height: 1.4; }

/* ── FAQ ── */
.faq-item { border-bottom: 0.5px solid #e8ddd8; padding: 1rem 0; }

.faq-q {
  font-size: 13px;
  color: #2d1f1e;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.faq-a { font-size: 12.5px; color: #7e6961; margin-top: 0.7rem; line-height: 1.7; font-weight: 300; display: none; }
.faq-a.open { display: block; }
.arrow { transition: transform 0.25s; font-style: normal; font-size: 14px; color: #7e6961; flex-shrink: 0; }
.arrow.open { transform: rotate(180deg); }

/* ── DEPOIMENTOS ── */
.depo-card {
  background: #fff;
  border: 0.5px solid #e8ddd8;
  border-radius: 14px;
  padding: 1.1rem;
  margin-bottom: 10px;
}

.depo-header { display: flex; align-items: center; gap: 10px; margin-bottom: 0.6rem; }

.depo-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500; color: #fff; flex-shrink: 0;
}

.depo-meta { flex: 1; }
.depo-name { font-size: 12px; font-weight: 500; color: #2d1f1e; }
.depo-time { font-size: 10px; color: #7e6961; margin-top: 1px; }
.stars { color: #6b0d18; font-size: 11px; letter-spacing: 1px; margin-bottom: 0.5rem; }

.depo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14.5px;
  color: #4a3535;
  line-height: 1.65;
  font-style: italic;
}

/* ── MAPA ── */
.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 0.5px solid #e8ddd8;
  height: 180px;
}

.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── RODAPÉ ── */
.footer-cta {
  background: #6b0d18;
  padding: 2rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.footer-cta > * { position: relative; z-index: 1; }

.footer-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  font-weight: 300;
}

.wpp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #6b0d18;
  border-radius: 50px;
  padding: 13px 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}

.wpp-btn:hover { background: #f5eeec; }

/* ── MOSTRAR MAIS SERVIÇOS ── */
/* ── MOSTRAR MAIS SERVIÇOS ── */
/* Style the summary (button) inside the details */
.more-services-container summary.show-more-btn {
  list-style: none;
  cursor: pointer;
  margin-top: 0.5rem;
  color: #6b0d18;
  font-size: 11px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
/* Hide default disclosure triangle */
.more-services-container summary::-webkit-details-marker {
  display: none;
}
/* Rotate chevron when open */
.more-services-container[open] .chevron {
  transform: rotate(180deg);
}

/* Base style for chevron */
.more-services-container .chevron {
  transition: transform 0.3s;
  font-size: 14px;
}
/* Hide additional services until the details element is open */
.more-services-container .more-services {
  display: none;
}
.more-services-container[open] .more-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ── NOTA CLIQUE ── */
.click-note {
  font-size: 10px;
  color: #7e6961;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

/* ── MODAL ── */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 1.25rem;
}

.modal.open {
  display: flex;
}

.modal-content {
  position: relative;
  background: #fdf8f5;
  border-radius: 18px;
  max-width: 420px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 1.25rem 1.25rem 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  color: #6b0d18;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.modal-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.modal-no-image {
  text-align: center;
  font-size: 13px;
  color: #7e6961;
  padding: 2rem 0;
  font-style: italic;
}

.modal-close {
  position: fixed;
  top: 14px;
  right: 16px;
  font-size: 28px;
  color: #ffffff;
  cursor: pointer;
  z-index: 1000;
  line-height: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.wpp-dot {
  width: 20px; height: 20px;
  background: #25d366;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 430px) {
  .hero { padding: 2.5rem 1.25rem 2rem; }
  .hero-name { font-size: 26px; }
}
