:root {
  --sage: #c6afa4;
  --blush: #625a43;
  --cream: #a6b47f;
  --creamPlus: #416955;
  --warm-dark: #d5d9dc;
  --muted: #a27f61;
  --creamwhite: #f7f3ee;
  --blackwhite: #292929;
}

body {
  background-color: var(--creamwhite);
}

header {
  background-color: var(--blush);
  border-bottom: 1px solid rgba(138, 158, 140, 0.25);
}

.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 52px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  cursor: pointer;
}

.whatsapp-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.whatsapp-float:hover .whatsapp-icon {
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;

  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: #fff;
  background: #25d366;
  padding: 0;
  border-radius: 28px 0 0 28px;
  height: 46px;
  display: flex;
  align-items: center;
  transition:
    max-width 0.4s ease,
    padding 0.4s ease;
  margin-right: 0px;
  padding-right: 0;
  position: relative;
  z-index: 1;
}

/* .whatsapp-float:hover .whatsapp-label {
  max-width: 200px;
  padding-left: 18px;
  padding-right: 36px;
} */

/* Anel pulsante */
.whatsapp-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: wpp-pulse 2.2s ease-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes wpp-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.7);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.7);
    opacity: 0;
  }
}

.logo-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-image: url("../assets/IMG_0453.PNG");
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(138, 158, 140, 0.3);
}

.logo-initials {
  font-style: italic;
  font-weight: 300;
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: 0.04em;
}

.logo-name {
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--warm-dark);
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.logo-tagline {
  font-weight: 300;
  font-size: 0.65rem;
  color: var(--warm-dark);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 2px;
}

.crp-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;

  @media screen and (max-width: 500px) {
    flex-direction: row;
    margin-top: 20px;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }
}

.psico-name {
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--warm-dark);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.crp-text {
  font-weight: 300;
  font-size: 0.72rem;
  color: var(--warm-dark);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.crp-number {
  color: var(--warm-dark);
  font-weight: 400;
}

.divider-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(138, 158, 140, 0.4),
    transparent
  );
}

/* Animação de entrada suave */
header {
  animation: fadeDown 0.6s ease both;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── HERO SECTION ── */
.hero-section {
  background-color: #eeeeee;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/maos.avif");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 30%;
  z-index: 0;
  pointer-events: none;
}

/* Overlay para garantir legibilidade total dos textos */
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(255, 255, 255, 0.75),
    rgba(255, 255, 255, 0.75)
  );
  filter: brightness(170%) contrast(70%) saturate(0%);
  z-index: 0;
  pointer-events: none;
}

/* Garante que todo conteúdo da section fique acima dos overlays */
.hero-section > div {
  position: relative;
  z-index: 1;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-label {
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #292929;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-label::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: #292929;
}

.hero-title {
  font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--blush);
}

.hero-body {
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.85;
  color: #292929;
  max-width: 420px;
}

.hero-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-item {
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: #292929;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-item svg {
  color: var(--blush);
  flex-shrink: 0;
}

.hero-btn {
  display: inline-block;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--creamPlus);
  padding: 13px 32px;
  border-radius: 2px;
  text-decoration: none;
  transition:
    opacity 0.25s,
    transform 0.25s;
  box-shadow: 0 4px 18px rgba(138, 158, 140, 0.35);
}

.hero-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ── FOTO ── */
.hero-photo-wrap {
  position: relative;
  width: 460px;

  @media screen and (max-width: 510px) {
    width: auto;
  }
}

.hero-photo-frame {
  position: relative;
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 420px;
  height: 530px;
  object-fit: cover;
  object-position: top center;
  border-radius: 210px 210px 210px 210px;
  display: block;
  filter: saturate(0.9) contrast(1.02);
  box-shadow: 0 24px 64px rgba(46, 40, 37, 0.13);


  @media screen and (max-width: 565px) {
      height: 450px;
  }


}

.photo-tag {
  position: absolute;
  bottom: -18px;
  left: -24px;
  z-index: 2;
  background: #fff;
  border-radius: 6px;
  padding: 10px 18px;
  box-shadow: 0 6px 28px rgba(46, 40, 37, 0.1);
  display: flex;
  flex-direction: column;
  gap: 2px;

  @media screen and (max-width: 510px) {
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.photo-tag-name {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--creamPlus);
  letter-spacing: 0.03em;
}

.photo-tag-crp {
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #292929;
  text-transform: uppercase;
}

/* Cards */

.cards-section {
  background-color: #ededed;
}

.cards-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 52px;
  gap: 14px;
}

.cards-label {
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blackwhite);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cards-label::before,
.cards-label::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--blush);
}

.cards-title {
  font-weight: 400;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  line-height: 1.3;
  color: var(--cream);
}
.cards-title em {
  font-style: italic;
  color: var(--blush);
}

.cards-subtitle {
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--blackwhite);
  max-width: 400px;
  line-height: 1.85;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.card {
  background: #f8f8f8;
  border: 1px solid rgba(138, 158, 140, 0.15);
  border-radius: 6px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(46, 40, 37, 0.07);
  border-color: rgba(138, 158, 140, 0.35);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(138, 158, 140, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  margin-bottom: 4px;
  transition: background 0.3s;
}
.card:hover .card-icon {
  background: rgba(138, 158, 140, 0.22);
}

.card-title {
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.card-text {
  font-weight: 300;
  font-size: 0.84rem;
  line-height: 1.85;
  color: var(--blackwhite);
  flex: 1;
}

.card-tag {
  display: inline-block;
  margin-top: 8px;

  font-weight: 400;
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blackwhite);
  padding: 5px 13px;
  border: 1px solid rgba(138, 158, 140, 0.3);
  border-radius: 20px;
  width: fit-content;
  transition:
    background 0.3s,
    color 0.3s;
}
.card:hover .card-tag {
  background: rgba(138, 158, 140, 0.1);
}

/* atendimetno online */
.online-section {
  position: relative;
  overflow: hidden;
}

.online-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/salapsicologia.jpg");
  background-size: cover;
  background-position: bottom;
  z-index: 0;
}

.online-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(247, 243, 238, 0.93) 0%,
    rgba(242, 237, 230, 0.88) 45%,
    rgba(220, 232, 221, 0.82) 100%
  );
  z-index: 1;
}

.online-inner {
  position: relative;
  z-index: 2;
}

.online-photo-wrap {
  position: relative;
  width: 420px;
  flex-shrink: 0;

  @media screen and (max-width: 510px) {
    width: auto;
  }
}

.online-photo-deco {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 380px;
  height: 500px;
  border-radius: 12px;
  border: 1.5px solid rgba(138, 158, 140, 0.28);
  z-index: 0;

  @media screen and (max-width: 510px) {
    width: auto;
    left: 0px;
  }
}

.online-photo {
  position: relative;
  z-index: 1;
  width: 380px;
  height: 500px;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  display: block;
  filter: saturate(0.88) contrast(1.03);
  box-shadow: 0 24px 64px rgba(46, 40, 37, 0.16);

  @media screen and (max-width: 510px) {
    width: auto;
  }
}

.online-badge {
  position: absolute;
  bottom: 28px;
  right: -24px;
  z-index: 3;
  background: white;
  border-radius: 30px;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 6px 24px rgba(46, 40, 37, 0.1);

  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--blush);

  @media screen and (max-width: 510px) {
    left: 50%;
    transform: translateX(-50%);
  }
}

.online-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blackwhite);
  margin-bottom: 12px;
}
.online-label::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--blackwhite);
}

.online-title {
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.25;
  color: var(--blush);
}
.online-title em {
  font-style: italic;
  color: var(--blush);
}

.online-desc {
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--blackwhite);
  max-width: 460px;
}

.online-steps {
  display: flex;
  flex-direction: column;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 14px 0;
}

.step-number {
  font-weight: 300;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--blush);
  line-height: 1;
  width: 28px;
  flex-shrink: 0;
  padding-top: 2px;
}

.step-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.step-title {
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--creamPlus);
  letter-spacing: 0.03em;
}

.step-text {
  font-weight: 300;
  font-size: 0.8rem;
  line-height: 1.75;
  color: var(--blackwhite);
}

.step-divider {
  height: 1px;
  background: linear-gradient(to right, rgba(138, 158, 140, 0.2), transparent);
  margin-left: 46px;
}

.online-btn {
  display: inline-block;

  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(138, 158, 140, 0.5);
  background-color: var(--creamPlus);
  padding: 13px 32px;
  border-radius: 2px;
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s;
}
.online-btn:hover {
  background: var(--sage);
  color: #fff;
  transform: translateY(-1px);
}

.about-section {
  background-color: var(--cream);
  overflow: hidden;
}

/* Texto */
.about-text-col {
  flex: 1;
  min-width: 0;
}

.about-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blackwhite);
  margin-bottom: 20px;
}
.about-label::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--blackwhite);
}

.about-title {
  font-weight: 400;
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  line-height: 1.3;
  color: var(--blush);
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}
.about-title em {
  font-style: italic;
  color: var(--blackwhite);
}

.about-body {
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.9;
  color: #fff;
  max-width: 440px;
}

.about-credentials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 36px;
  padding: 24px 0;
  border-top: 1px solid rgba(138, 158, 140, 0.15);
  border-bottom: 1px solid rgba(138, 158, 140, 0.15);
}

.credential {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.credential-value {
  font-weight: 500;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.02em;
}

.credential-label {
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.credential-sep {
  width: 1px;
  height: 36px;
  background: rgba(138, 158, 140, 0.2);
}

.about-btn {
  display: inline-block;
  align-self: flex-start;

  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--creamPlus);
  padding: 14px 34px;
  border-radius: 2px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(138, 158, 140, 0.3);
  transition:
    opacity 0.25s,
    transform 0.25s;
  width: fit-content;
}
.about-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* Foto */
.about-photo-col {
  flex: 0 0 48%;
  position: relative;
  min-height: 600px;
}

.about-photo-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: saturate(0.85) contrast(1.04);
  transition: transform 0.8s ease;
}

.about-photo-col:hover .about-photo {
  transform: scale(1.03);
}

/* grain sutil sobre a foto */
.about-photo-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.4;
}

/* overlay lateral suave na foto para fundir com o texto */
.about-photo-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 0;
  width: 120px;
  background: linear-gradient(to right, var(--cream), transparent);
  z-index: 2;
  pointer-events: none;
}

/* overlay topo e base */
.about-photo-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(247, 243, 238, 0.15) 0%,
    transparent 20%,
    transparent 80%,
    rgba(247, 243, 238, 0.25) 100%
  );
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .about-photo-col {
    flex: none;
    width: 100%;
  }
  .about-photo-inner::before {
    display: none;
  }
}

/* ── ACT SECTION ── */
.act-section {
  position: relative;
  overflow: hidden;
}

.act-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1476611338391-6f395a0ebc7b?w=1600&q=80");
  background-size: cover;
  background-position: center 60%;
  background-attachment: fixed;
  z-index: 0;
}

.act-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(34, 42, 35, 0.82) 0%,
    rgba(28, 36, 30, 0.88) 50%,
    rgba(34, 42, 35, 0.84) 100%
  );
  z-index: 1;
}

.act-inner {
  position: relative;
  z-index: 2;
}

/* Header */
.act-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.act-label {
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}
.act-label::before,
.act-label::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(138, 158, 140, 0.5);
}

.act-title {
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.25;
  color: #fff;
  letter-spacing: 0.01em;
}
.act-title em {
  font-style: italic;
  color: var(--sage);
}

.act-intro {
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.9;
  color: #fff;
  max-width: 560px;
  text-align: center;
}
.act-intro strong {
  color: rgba(220, 215, 208, 0.95);
  font-weight: 400;
}

/* Topics horizontal */
.act-topics {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 72px;
  border-top: 1px solid #f8f8f8;
  border-bottom: 1px solid #f5f5f5;
}

.act-topic {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 36px 28px;
  border-right: 1px solid rgba(138, 158, 140, 0.12);
  transition: background 0.35s ease;
}
.act-topic:last-child {
  border-right: none;
}
.act-topic:hover {
  background: rgba(247, 243, 238, 0.05);
}

.act-topic-num {
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--sage);
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.act-topic:hover .act-topic-num {
  color: var(--sage);
}

.act-topic-sep {
  width: 20px;
  height: 1px;
  background: rgba(138, 158, 140, 0.3);
  transition:
    width 0.35s ease,
    background 0.35s ease;
}
.act-topic:hover .act-topic-sep {
  width: 32px;
  background: rgba(138, 158, 140, 0.6);
}

.act-topic-title {
  font-weight: 400;
  font-size: 1.05rem;
  color: rgba(247, 243, 238, 0.78);
  line-height: 1.5;
  letter-spacing: 0.01em;
  transition: color 0.3s;
}
.act-topic:hover .act-topic-title {
  color: rgba(247, 243, 238, 0.96);
}

@media (max-width: 768px) {
  .act-topics {
    flex-direction: column;
    border-right: none;
  }
  .act-topic {
    border-right: none;
    border-bottom: 1px solid rgba(138, 158, 140, 0.12);
  }
  .act-topic:last-child {
    border-bottom: none;
  }
}

/* Closing quote */
.act-closing {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
}

.act-closing-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(138, 158, 140, 0.3),
    transparent
  );
  max-width: 160px;
}

.act-quote {
  font-weight: 400;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.75;
  color: rgba(220, 215, 208, 0.75);
  text-align: center;
  max-width: 560px;
  font-style: normal;
}

.act-quote em {
  font-style: italic;
  color: rgba(201, 169, 154, 0.85);
  display: block;
  margin-top: 6px;
}

/* FAQ */

.faq-section {
  background-color: #eee;
}

.faq-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 56px;
}

.faq-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blush);
}
.faq-label::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--blush);
}

.faq-title {
  font-weight: 400;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  line-height: 1.25;
  color: var(--sage);
}
.faq-title em {
  font-style: italic;
  color: var(--blush);
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(138, 158, 140, 0.18);
  cursor: pointer;
  user-select: none;
}
.faq-item:first-child {
  border-top: 1px solid rgba(138, 158, 140, 0.18);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.faq-question span {
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--blackwhite);
  line-height: 1.4;
  letter-spacing: 0.01em;
  transition: color 0.25s;
}
.faq-item:hover .faq-question span,
.faq-item.open .faq-question span {
  color: #3a2f2b;
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(138, 158, 140, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  transition:
    background 0.25s,
    transform 0.35s ease,
    border-color 0.25s;
}
.faq-item:hover .faq-icon {
  border-color: rgba(138, 158, 140, 0.6);
}
.faq-item.open .faq-icon {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.45s ease,
    padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--blackwhite);
  max-width: 620px;
}

/* ── FOOTER ── */
.site-footer {
  background-color: var(--blush);
}

.footer-main {
}

/* Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-image: url("../assets/IMG_0453.PNG");
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo-name {
  font-weight: 400;
  font-size: 1.05rem;
  color: rgba(247, 243, 238, 0.9);
  letter-spacing: 0.06em;
}

.footer-logo-sub {
  font-weight: 300;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-top: 2px;
}

.footer-bio {
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.8;
  color: #fff;
}

.footer-crp {
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}

/* Sociais */
.footer-socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(138, 158, 140, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition:
    color 0.25s,
    border-color 0.25s,
    background 0.25s;
}
.social-icon:hover {
  color: rgba(247, 243, 238, 0.9);
  border-color: #fff;
  background: rgba(138, 158, 140, 0.1);
}

/* Divider */
.footer-divider {
  height: 1px;
  background: var(--sage);
  margin: 0 32px;
}

/* Legal */
.footer-legal {
}

.footer-legal-text {
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--creamwhite);
}
