@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Manrope:wght@300;400;500;600&display=swap');
:root {
  --blush: #fde8f0;
  --nude: #f9dfe9;
  --rose: #e48aa4;
  --mauve: #b85f7b;
  --champagne: #fff6fa;
  --txt: #6a3e4e;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
body {
  font-family: 'Manrope', sans-serif;
  background: var(--champagne);
  color: #5f5553;
  line-height: 1.6;
}
strong {
  font-weight: 700;
  color: var(--txt);
}
.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}
.narrow {
  max-width: 780px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--champagne) 88%, white);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eedfdd;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  text-decoration: none;
  color: inherit;
}
.brand-main {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--mauve);
  line-height: 1;
}
.brand-sub {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.36em;
  color: var(--rose);
}
.brand-crm {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.36em;
  color: var(--mauve);
  font-weight: 600;
  margin-top: 2px;
}
.desktop-nav {
  display: none;
  gap: 1.6rem;
}
.desktop-nav a {
  text-decoration: none;
  color: #806663;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  position: relative;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1px;
  width: 0;
  background: var(--mauve);
  transition: 0.35s;
}
.desktop-nav a:hover::after {
  width: 100%;
}
.menu-toggle {
  border: 0;
  background: var(--rose);
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-content: center;
  gap: 5px;
  box-shadow: 0 16px 35px rgba(139, 94, 89, 0.19);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: 0.3s;
}
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(82vw, 340px);
  background: #fff8f7;
  transform: translateX(100%);
  transition: 0.38s;
  padding: 94px 26px;
  display: grid;
  gap: 1rem;
  box-shadow: -22px 0 60px rgba(126, 87, 84, 0.22);
}
.mobile-menu a {
  text-decoration: none;
  color: #775f5b;
  padding: 0.5rem 0;
  border-bottom: 1px solid #efdfdd;
}
.mobile-menu.open {
  transform: translateX(0);
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.hero {
  position: relative;
  padding: 1.5rem 0 3.8rem;
  background: linear-gradient(180deg, var(--blush), #fff);
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(185, 133, 128, 0.18);
  border-radius: 100% 58% 92% 76%;
  width: 180px;
  height: 180px;
}
.hero::before {
  top: 10%;
  right: -90px;
}
.hero::after {
  left: -95px;
  bottom: 7%;
}
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.66rem;
  color: var(--rose);
}
h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--txt);
  line-height: 1.03;
  margin: 0.2rem 0;
}
h1 {
  font-size: 3rem;
}
.lead {
  max-width: 38ch;
}
.organic-frame {
  aspect-ratio: 4/5;
  border-radius: 56% 44% 61% 39%/41% 56% 44% 59%;
  overflow: hidden;
  border: 1px solid #fff;
  background: var(--nude);
  box-shadow: 0 22px 45px rgba(146, 96, 93, 0.14);
}
.organic-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section {
  padding: 4rem 0;
}
.section-soft {
  background: linear-gradient(180deg, #fff4f8, var(--blush));
}

/* ====== PROCEDURE CARDS ====== */
.proc-subtitle {
  color: #8a6b70;
  margin: 0.5rem 0 2rem;
  font-size: 0.95rem;
  max-width: 52ch;
}

.proc-cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.proc-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #f2d4df;
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(184, 95, 123, 0.10);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(184, 95, 123, 0.18);
}

.proc-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.proc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.proc-card:hover .proc-img-wrap img {
  transform: scale(1.04);
}

.proc-badge {
  position: absolute;
  top: 12px;
  left: 14px;
  background: var(--mauve);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.proc-badge-alt {
  background: #c46e5a;
}

.proc-body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.3rem;
}

.proc-body h3 {
  font-size: 1.55rem;
  margin: 0;
}

.proc-name-alt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--rose);
  margin: 0 0 0.3rem;
}

.proc-body p:not(.proc-name-alt) {
  font-size: 0.9rem;
  color: #7a5f64;
  flex: 1;
  margin: 0 0 1rem;
}

.proc-btn {
  align-self: flex-start;
  padding: 0.7rem 1.4rem;
  font-size: 0.68rem;
}

.card,
.panel,
.cta {
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid #f7d7e1;
  border-radius: 1.6rem;
  padding: 1.35rem;
  box-shadow: 0 20px 45px rgba(184, 95, 123, 0.14);
}
.split {
  display: grid;
  gap: 1rem;
}
.panel-soft {
  background: rgba(242, 228, 226, 0.75);
}
.btn {
  display: inline-block;
  text-decoration: none;
  background: var(--mauve);
  color: white;
  border-radius: 999px;
  padding: 0.84rem 1.65rem;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  transition: 0.3s;
  box-shadow: 0 12px 26px rgba(184, 95, 123, 0.28);
}
.btn:hover {
  transform: translateY(-2px);
  background: #a84f6a;
}
.btn-outline {
  background: #fff0f5;
  border: 1px solid #e6a5ba;
  color: var(--mauve);
}
.btn-outline:hover {
  background: var(--rose);
  color: white;
}
.cta {
  text-align: center;
  background: linear-gradient(90deg, #f7dce6, #fdeef4);
}
.site-footer {
  text-align: center;
  padding: 1.8rem 1rem;
  border-top: 1px solid #efdfdd;
  color: var(--rose);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}
/* WhatsApp floating */
.wppFloat {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 90;
  width: 70px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wppFloat img {
  width: 70px;
  height: 70px;
  display: block;
}
.wppFloat:hover {
  transform: scale(1.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: 0.7s ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.12s;
}
.delay-2 {
  transition-delay: 0.24s;
}
@media (min-width: 769px) {
  .menu-toggle,
  .mobile-menu {
    display: none;
  }
  .desktop-nav {
    display: flex;
  }
  .hero {
    padding: 2.4rem 0 5rem;
  }
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
  h1 {
    font-size: 4.5rem;
  }
  .proc-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .section {
    padding: 5.2rem 0;
  }
}

/* ======== MODAIS ======== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(106, 62, 78, 0.45);
  backdrop-filter: blur(6px);
  padding: 1rem;
  overflow-y: auto;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: var(--champagne);
  border-radius: 2rem;
  width: 100%;
  max-width: 860px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  padding: 2rem 1.5rem;
  box-shadow: 0 30px 80px rgba(106, 62, 78, 0.28);
  animation: modalIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  background: var(--nude);
  border: 1px solid #f2d4df;
  color: var(--mauve);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.modal-close:hover {
  background: var(--rose);
  color: white;
}
.modal-grid {
  display: grid;
  gap: 1.8rem;
}
.modal-img-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.modal-img-frame {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3/4;
  border-radius: 50% 50% 48% 52% / 42% 42% 58% 58%;
  overflow: hidden;
  border: 3px solid #f7d7e1;
  box-shadow: 0 16px 40px rgba(184, 95, 123, 0.18);
  background: var(--nude);
}
.modal-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.modal-doctor-info {
  text-align: center;
}
.modal-doctor-info strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--mauve);
}
.modal-doctor-info span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rose);
}
.modal-content-col h2 {
  font-size: 2.4rem;
  margin: 0.2rem 0 0.8rem;
}
.modal-content-col p {
  font-size: 0.93rem;
  color: #7a5f64;
  margin-bottom: 0.8rem;
  line-height: 1.7;
}
.modal-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin: 1.4rem 0 1.6rem;
}
.modal-info-item {
  background: rgba(255,255,255,0.85);
  border: 1px solid #f2d4df;
  border-radius: 1rem;
  padding: 0.8rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.info-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rose);
}
.info-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--txt);
}
.modal-cta {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 0.9rem;
}
@media (min-width: 640px) {
  .modal-box {
    padding: 2.5rem 2.5rem;
  }
  .modal-grid {
    grid-template-columns: 220px 1fr;
    align-items: start;
  }
  .modal-img-col {
    position: sticky;
    top: 1rem;
  }
  .modal-img-frame {
    max-width: 220px;
  }
  .modal-cta {
    width: auto;
    padding: 0.9rem 2rem;
  }
}

/* ======== SOBRE — layout texto + foto ======== */
.sobre-section {
  background: #fff;
}
.sobre-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.sobre-copy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sobre-copy h2 {
  font-size: 2.6rem;
  margin-bottom: 0.6rem;
}
.sobre-copy p {
  font-size: 0.95rem;
  color: #7a5f64;
  line-height: 1.75;
  max-width: 52ch;
}
.sobre-btn {
  align-self: flex-start;
  margin-top: 0.8rem;
}
.sobre-img-frame {
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  aspect-ratio: 3/4;
  border-radius: 2rem 2rem 8rem 2rem;
  overflow: hidden;
  border: 3px solid #f7d7e1;
  box-shadow: 0 24px 60px rgba(184, 95, 123, 0.16);
  background: var(--nude);
}
.sobre-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
@media (min-width: 769px) {
  .sobre-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .sobre-copy h2 {
    font-size: 3.2rem;
  }
  .sobre-img-frame {
    max-width: 100%;
  }
}

/* ======== MODAIS ======== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(106, 62, 78, 0.45);
  backdrop-filter: blur(6px);
  padding: 1rem;
  overflow-y: auto;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: var(--champagne);
  border-radius: 2rem;
  width: 100%;
  max-width: 860px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  padding: 2rem 1.5rem;
  box-shadow: 0 30px 80px rgba(106, 62, 78, 0.28);
  animation: modalIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  background: var(--nude);
  border: 1px solid #f2d4df;
  color: var(--mauve);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.modal-close:hover {
  background: var(--rose);
  color: white;
}
.modal-grid {
  display: grid;
  gap: 1.8rem;
}
.modal-img-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.modal-img-frame {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3/4;
  border-radius: 50% 50% 48% 52% / 42% 42% 58% 58%;
  overflow: hidden;
  border: 3px solid #f7d7e1;
  box-shadow: 0 16px 40px rgba(184, 95, 123, 0.18);
  background: var(--nude);
}
.modal-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.modal-doctor-info {
  text-align: center;
}
.modal-doctor-info strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--mauve);
}
.modal-doctor-info span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rose);
}
.modal-content-col h2 {
  font-size: 2.4rem;
  margin: 0.2rem 0 0.8rem;
}
.modal-content-col p {
  font-size: 0.93rem;
  color: #7a5f64;
  margin-bottom: 0.8rem;
  line-height: 1.7;
}
.modal-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin: 1.4rem 0 1.6rem;
}
.modal-info-item {
  background: rgba(255,255,255,0.85);
  border: 1px solid #f2d4df;
  border-radius: 1rem;
  padding: 0.8rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.info-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rose);
}
.info-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--txt);
}
.modal-cta {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 0.9rem;
}
@media (min-width: 640px) {
  .modal-box {
    padding: 2.5rem 2.5rem;
  }
  .modal-grid {
    grid-template-columns: 220px 1fr;
    align-items: start;
  }
  .modal-img-col {
    position: sticky;
    top: 1rem;
  }
  .modal-img-frame {
    max-width: 220px;
  }
  .modal-cta {
    width: auto;
    padding: 0.9rem 2rem;
  }
}

/* ======== CONSULTÓRIO ======== */
.consultorio-section {
  background: linear-gradient(180deg, #fff4f8, var(--blush));
}
.text-center {
  text-align: center;
}
.consultorio-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2.4rem;
  align-items: start;
}
.consultorio-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.consultorio-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mauve);
  border: 1px solid #f2d4df;
}
.consultorio-info h3 {
  font-size: 1.5rem;
  margin: 0;
}
.consultorio-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.consultorio-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #7a5f64;
  margin: 0;
}
.consultorio-contact svg {
  color: var(--rose);
  flex-shrink: 0;
}
.consultorio-fotos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.consultorio-foto {
  border-radius: 1.2rem;
  overflow: hidden;
  aspect-ratio: 2/3;
  box-shadow: 0 10px 30px rgba(184, 95, 123, 0.12);
  border: 1px solid #f2d4df;
}
.consultorio-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.consultorio-foto:hover img {
  transform: scale(1.04);
}
@media (min-width: 769px) {
  .consultorio-grid {
    grid-template-columns: 240px 1fr;
    gap: 3.5rem;
    align-items: center;
  }
  .consultorio-foto {
    aspect-ratio: 3/4;
  }
}

/* ======== CONTATO ======== */
.contato-section {
  background: var(--txt);
}
.contato-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
.contato-info h2 {
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 0.3rem;
}
.contato-sub {
  color: var(--rose);
  font-size: 0.9rem;
  margin: 0 0 2rem;
}
.contato-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.4);
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contato-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contato-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contato-list li div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.contato-list li strong {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}
.contato-list li span {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}
.contato-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1);
}
.contato-icon-wpp {
  background: #25d366;
  color: #fff;
  border-color: transparent;
  text-decoration: none;
  transition: background 0.2s;
}
.contato-icon-wpp:hover {
  background: #1ebe5d;
}
.contato-mapa {
  border-radius: 1.6rem;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  border: 2px solid rgba(255,255,255,0.08);
}
.contato-mapa iframe {
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 769px) {
  .contato-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .contato-mapa {
    height: 440px;
  }
}

/* ======== NÚMEROS ======== */
.numeros-section {
  background: linear-gradient(90deg, var(--mauve), #c46e8a);
  padding: 2.8rem 0;
}
.numeros-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}
.numero-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.numero-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.numero-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.75);
}
.numero-divider {
  display: none;
}
@media (min-width: 769px) {
  .numeros-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  }
  .numero-divider {
    display: block;
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.25);
  }
}

/* ======== DEPOIMENTOS ======== */
.depo-cards {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}
.depo-card {
  background: rgba(255,255,255,0.95);
  border: 1px solid #f2d4df;
  border-radius: 1.6rem;
  padding: 1.6rem;
  box-shadow: 0 10px 30px rgba(184, 95, 123, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.depo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(184, 95, 123, 0.16);
}
.depo-stars {
  color: var(--rose);
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.depo-card p {
  font-size: 0.92rem;
  color: #7a5f64;
  line-height: 1.7;
  flex: 1;
  margin: 0;
  font-style: italic;
}
.depo-footer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.4rem;
}
.depo-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--mauve));
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.depo-footer div {
  display: flex;
  flex-direction: column;
}
.depo-footer strong {
  font-size: 0.88rem;
  color: var(--txt);
}
.depo-footer span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--rose);
}
@media (min-width: 769px) {
  .depo-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ======== FAQ ======== */
.faq-section {
  background: #fff;
}
.faq-wrap {
  max-width: 780px;
}
.faq-list {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: rgba(255,255,255,0.97);
  border: 1px solid #f2d4df;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(184, 95, 123, 0.07);
  transition: box-shadow 0.2s;
}
.faq-item[open] {
  box-shadow: 0 8px 28px rgba(184, 95, 123, 0.14);
}
.faq-item summary {
  padding: 1.2rem 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--txt);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--rose);
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  padding: 0 1.5rem 1.3rem;
  font-size: 0.9rem;
  color: #7a5f64;
  line-height: 1.75;
  margin: 0;
  border-top: 1px solid #f7e0e8;
  padding-top: 1rem;
}
