/* ============================================================
   THALITA MARA DE FREITAS CAZARI — Psicóloga Clínica
   Landing Page CSS — Mobile-first
   ============================================================ */

/* === CUSTOM PROPERTIES === */
:root {
  /* Tons de marca */
  --peach-light: #ffcdb2;
  --peach: #ffb4a2;
  --rose: #e5989b;
  --dusty-rose: #b5838d;
  --dim-grey: #6d6875;

  /* Papéis semânticos (3 papéis claros) */
  --color-primary: #b5838d;        /* CTAs / ações — alias de --dusty-rose */
  --color-accent-soft: #ffcdb2;    /* fundos suaves / badges — alias de --peach-light */
  --color-neutral-dark: #4a4550;   /* fundos escuros (Benefícios, hover) — tom único */

  --white: #ffffff;
  --off-white: #fdf5f0;            /* consolidado com --bg-warm */
  --bg-warm: #fdf5f0;
  --text-dark: #1a0f14;
  --text-muted: #2d1f28;
  --border: rgba(181, 131, 141, 0.18);
  --shadow: 0 4px 24px rgba(109, 104, 117, 0.09);
  --shadow-hover: 0 10px 40px rgba(109, 104, 117, 0.18);
  --radius: 18px;
  --radius-sm: 10px;
  --ease: 0.3s ease;
  --max-w: 1180px;
}

/* === RESET === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

p {
  margin-bottom: 1rem;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

p:last-child {
  margin-bottom: 0;
}

/* Textos curtos / utilitários mantêm alinhamento do container (geralmente center) */
.hero-note,
.section-header p,
.footer-bottom p,
.footer-brand p {
  text-align: inherit;
  hyphens: manual;
  -webkit-hyphens: manual;
}

strong {
  font-weight: 600;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  font-weight: 500;
}

h1 { font-size: clamp(2.3rem, 5vw, 3.9rem); }
h2 { font-size: clamp(1.85rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

#contato {
  scroll-margin-top: 96px;
}

/* === SECTION LABELS === */
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  background: rgba(255, 180, 162, 0.15);
  padding: 0.32rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-tag--light {
  color: #ffd9c2;
  background: rgba(255, 217, 194, 0.22);
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  color: #1a0f14;
}

.section-header p {
  color: #2d1f28;
  font-size: 1.05rem;
  margin-top: 0.6rem;
  margin-bottom: 0;
}

.section-header--light h2,
.section-header--light p {
  color: var(--white);
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: var(--dusty-rose);
  color: var(--white);
  padding: 1rem 2.1rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  transition: all var(--ease);
  box-shadow: 0 4px 20px rgba(181, 131, 141, 0.38);
  cursor: pointer;
  border: none;
  text-align: center;
  line-height: 1.35;
}

.btn-primary:hover {
  background: var(--dim-grey);
  box-shadow: 0 7px 28px rgba(109, 104, 117, 0.38);
  transform: translateY(-2px);
}

.btn-primary--light {
  background: var(--white);
  color: var(--dusty-rose);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.btn-primary--light:hover {
  background: var(--off-white);
  color: var(--dim-grey);
  box-shadow: 0 7px 28px rgba(0, 0, 0, 0.16);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--dusty-rose);
  color: var(--white);
  padding: 0.58rem 1.4rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--ease);
  flex-shrink: 0;
}

.btn-nav:hover {
  background: var(--dim-grey);
  transform: translateY(-1px);
}

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--dusty-rose);
  font-weight: 500;
  font-size: 0.92rem;
  padding-bottom: 0.15rem;
  border-bottom: 1.5px solid transparent;
  transition: all var(--ease);
}

.btn-service:hover {
  border-bottom-color: var(--dusty-rose);
  gap: 0.65rem;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: all var(--ease);
}

#header.scrolled {
  background: rgba(255, 248, 245, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(109, 104, 117, 0.1);
  padding: 0.7rem 0;
}

#header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 1.5rem;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  line-height: 1;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: #1a0f14;
  line-height: 1;
  letter-spacing: 0.01em;
}

.brand-crp {
  font-size: 0.78rem;
  color: #2d1f28;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.88rem;
  color: #1a0f14;
  font-weight: 500;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: all var(--ease);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--dusty-rose);
  background: rgba(181, 131, 141, 0.08);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--dim-grey);
  border-radius: 2px;
  transition: all var(--ease);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 0;
  background: linear-gradient(145deg, #fff5ef 0%, #fffaf7 55%, #fff0ea 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 100vh;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 3rem;
}

.hero-text {
  padding: 9rem 0 4rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  background: rgba(255, 180, 162, 0.15);
  padding: 0.32rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-text h1 {
  color: #1a0f14;
  margin-bottom: 1.3rem;
  font-style: normal;
  font-weight: 500;
}

.hero-text h1 em {
  font-style: italic;
  color: var(--dusty-rose);
}

.hero-sub {
  font-size: 1.07rem;
  color: #1a0f14;
  margin-bottom: 2.2rem;
  max-width: 500px;
  line-height: 1.75;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.83rem;
  color: #2d1f28;
  margin-top: 1rem;
  margin-bottom: 0;
}

.hero-note i {
  color: var(--rose);
  font-size: 1rem;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2.5rem;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -2rem;
  right: -1rem;
  width: 200px;
  height: 200px;
  background: var(--peach-light);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
}

.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 340px;
  height: 460px;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
  box-shadow: var(--shadow-hover);
}

.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  left: -1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--white);
  padding: 0.8rem 1.3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dusty-rose);
  border: 1px solid var(--border);
}

.hero-badge i {
  font-size: 1.1rem;
  color: var(--rose);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -24px;
  right: -24px;
  width: 150px;
  height: 150px;
  background: var(--peach-light);
  border-radius: 50%;
  opacity: 0.38;
  z-index: 0;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 85px;
  height: 85px;
  background: var(--rose);
  border-radius: 50%;
  opacity: 0.18;
  z-index: 0;
}

.about-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow-hover);
}

/* About Mosaic */
.about-mosaic {
  position: relative;
}

.mosaic-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  box-shadow: var(--shadow-hover);
  display: block;
  background: var(--off-white);
}

.mosaic-accent {
  position: absolute;
  bottom: 1.5rem;
  right: -1.2rem;
  width: 64px;
  height: 64px;
  background: var(--dusty-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(181, 131, 141, 0.45);
  z-index: 2;
}

.about-content h2 {
  color: #1a0f14;
  margin-bottom: 1.4rem;
}

.about-content p {
  color: #1a0f14;
  line-height: 1.78;
  font-size: 1.02rem;
}

.about-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-top: 2rem;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 0.55rem 1rem;
  border-radius: 50px;
  font-size: 0.83rem;
  color: #1a0f14;
  font-weight: 500;
}

.badge-item i {
  color: var(--dusty-rose);
  font-size: 0.95rem;
}

/* Services layout: grid de 3 cards com imagem no topo */
.services-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.service-card-img {
  position: relative;
  width: calc(100% + 3.5rem);
  margin: -2rem -1.75rem 0.4rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--off-white);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform var(--ease);
}

.service-card:hover .service-card-img img {
  transform: scale(1.04);
}

/* ============================================================
   SERVICES / SPECIALTIES
   ============================================================ */
.services {
  background: var(--off-white);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  border: 1.5px solid transparent;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border);
}

.service-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--peach-light), var(--peach));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--dusty-rose);
  flex-shrink: 0;
}

.service-card h3 {
  color: #1a0f14;
  font-size: 1.25rem;
  font-weight: 600;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.68;
  flex: 1;
  margin-bottom: 0;
}

.service-modality {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.78rem;
  color: var(--rose);
  font-weight: 600;
  background: rgba(229, 152, 155, 0.1);
  padding: 0.28rem 0.75rem;
  border-radius: 50px;
  width: fit-content;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits {
  background: var(--color-neutral-dark);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  transition: all var(--ease);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(255, 205, 178, 0.2);
}

.benefit-icon {
  width: 62px;
  height: 62px;
  background: rgba(255, 205, 178, 0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.65rem;
  color: var(--peach-light);
}

.benefit-item h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}

.benefit-item p {
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ============================================================
   CTA REINFORCEMENT
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--peach) 0%, var(--rose) 100%);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.cta-content .section-tag {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.18);
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.cta-image img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: 0 10px 48px rgba(109, 104, 117, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

/* ============================================================
   ATTENDANCE INFO
   ============================================================ */
.attendance {
  background: var(--white);
}

.attendance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.attendance-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--rose);
  transition: all var(--ease);
}

.attendance-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.attendance-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--peach-light), var(--peach));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--dusty-rose);
  margin-bottom: 1.2rem;
}

.attendance-card h3 {
  color: #1a0f14;
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.attendance-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.68;
  margin-bottom: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--bg-warm);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid transparent;
  transition: border-color var(--ease);
}

.faq-item.open {
  border-color: var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.75rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: #1a0f14;
  text-align: left;
  gap: 1.2rem;
  transition: color var(--ease);
}

.faq-question:hover {
  color: var(--dusty-rose);
}

.faq-question i {
  font-size: 1.2rem;
  color: var(--rose);
  flex-shrink: 0;
  transition: transform var(--ease);
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 1.2rem 1.75rem 1.5rem;
  color: #1a0f14;
  font-size: 0.93rem;
  line-height: 1.72;
  border-top: 1px solid var(--border);
  margin-bottom: 0;
}

/* ============================================================
   CLOSING / CONTACT
   ============================================================ */
.closing {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0;
  background: #f7f2ee;
}

.closing .container {
  position: relative;
  z-index: 1;
}

/* Shell — apenas wrapper */
.closing-shell {
  max-width: 680px;
  margin: 0 auto;
}

/* ── COLUNA ESQUERDA — card próprio ── */
.closing-left {
  padding: 2rem 2.5rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: #fcfaf8;
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(74, 59, 61, 0.09), 0 4px 14px rgba(74, 59, 61, 0.05);
  border: 1px solid rgba(196, 138, 147, 0.12);
}

.closing-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Badge "CONTATO" */
.contact-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c48a93;
  margin-bottom: 0.85rem;
}

/* Headline */
.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 600;
  line-height: 1.08;
  color: #2a1e20;
  margin: 0 0 0.5rem;
}

.closing-headline em {
  font-style: italic;
  color: #c48a93;
}

/* Divisória decorativa */
.closing-divider {
  display: none;
}

.closing-content p {
  font-size: 0.9rem;
  line-height: 1.62;
  color: #6b5659;
  margin: 0;
}

/* Badges pills */
.contact-meta {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.4rem;
  align-items: center;
}

.contact-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.73rem;
  font-weight: 600;
  color: #4a3b3d;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  background: rgba(231, 209, 212, 0.3);
  border: 1px solid rgba(196, 138, 147, 0.2);
  white-space: nowrap;
}

.contact-meta i {
  font-size: 0.88rem;
  color: #c48a93;
}

/* ── Cards de contato em linha ── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
  padding: 1.4rem 1rem 1.2rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(196, 138, 147, 0.14);
  box-shadow: 0 2px 12px rgba(74, 59, 61, 0.06);
  text-decoration: none;
  color: #2a1e20;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(74, 59, 61, 0.13);
}

.cc-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.contact-card--whatsapp .cc-icon {
  background: #25d366;
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.contact-card--instagram .cc-icon {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(238, 42, 123, 0.35);
}

.contact-card--email .cc-icon {
  background: #4285f4;
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(66, 133, 244, 0.35);
}

.cc-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9e8385;
}

.cc-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: #2a1e20;
  word-break: normal;
  overflow-wrap: anywhere;
}

.cc-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #c48a93;
  margin-top: 0.3rem;
}

.cc-cta i {
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.contact-card:hover .cc-cta i {
  transform: translateX(3px);
}

/* Glow ring no ícone ao hover */
@keyframes glow-ring {
  0%   { box-shadow: 0 0 0 0px var(--glow-color, rgba(255,255,255,0.6)), 0 4px 14px var(--glow-shadow); }
  50%  { box-shadow: 0 0 0 6px var(--glow-color, rgba(255,255,255,0)), 0 4px 14px var(--glow-shadow); }
  100% { box-shadow: 0 0 0 0px var(--glow-color, rgba(255,255,255,0)), 0 4px 14px var(--glow-shadow); }
}

.contact-card--whatsapp {
  --glow-shadow: rgba(37, 211, 102, 0.35);
  --ring-color: rgba(37, 211, 102, 0.55);
}
.contact-card--instagram {
  --glow-shadow: rgba(238, 42, 123, 0.35);
  --ring-color: rgba(238, 42, 123, 0.55);
}
.contact-card--email {
  --glow-shadow: rgba(66, 133, 244, 0.35);
  --ring-color: rgba(66, 133, 244, 0.55);
}

.contact-card:hover .cc-icon {
  animation: none;
  outline: 3px solid var(--ring-color);
  outline-offset: 4px;
  transition: outline 0.15s ease, outline-offset 0.15s ease;
}

.cc-icon {
  transition: box-shadow 0.25s ease, outline 0.15s ease;
  outline: 3px solid transparent;
  outline-offset: 0px;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(196, 138, 147, 0.14);
  box-shadow: 0 2px 10px rgba(74, 59, 61, 0.05);
  color: #2a1e20;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  text-decoration: none;
}

.contact-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(74, 59, 61, 0.12);
  border-color: rgba(196, 138, 147, 0.3);
}

.cr-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.cr-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.contact-row--whatsapp .cr-icon {
  background: rgba(37, 211, 102, 0.12);
  color: #2a8c4a;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.contact-row--instagram .cr-icon {
  background: rgba(196, 138, 147, 0.14);
  color: #c48a93;
  border: 1px solid rgba(196, 138, 147, 0.22);
}

.contact-row--email .cr-icon {
  background: rgba(196, 138, 147, 0.1);
  color: #c48a93;
  border: 1px solid rgba(196, 138, 147, 0.18);
}

.cr-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.cr-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9e8385;
}

.cr-value {
  font-size: 0.98rem;
  font-weight: 600;
  color: #2a1e20;
  font-family: 'DM Sans', sans-serif;
}

.cr-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #c48a93;
  white-space: nowrap;
  flex-shrink: 0;
}

.cr-cta i {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.contact-row:hover .cr-cta i {
  transform: translateX(3px);
}

/* Divisória vertical interna */
.contact-row::after {
  display: none;
}

/* Barra de sigilo */
.contact-trust {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  background: rgba(231, 209, 212, 0.18);
  border: 1px solid rgba(196, 138, 147, 0.16);
  font-size: 0.79rem;
  color: #7a6668;
  font-weight: 500;
}

.contact-trust i {
  font-size: 0.95rem;
  color: #c48a93;
  flex-shrink: 0;
}

/* ── COLUNA DIREITA — card próprio ── */
.closing-right {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(74, 59, 61, 0.09), 0 4px 14px rgba(74, 59, 61, 0.05);
  background: #ede4df;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2.5rem 2rem 0;
}

.closing-photo {
  width: 78%;
  height: auto;
  display: block;
  border-radius: 999px 999px 0 0;
  box-shadow: 0 12px 40px rgba(74, 59, 61, 0.18);
}

/* Classes legadas — não usadas mas mantidas para não quebrar nada */
.contact-action-stack,
.contact-action-card,
.contact-email-link { display: none; }

body.contact-focus .whatsapp-float,
body.contact-focus .back-to-top,
body.contact-focus .back-to-top.visible {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #2d2530;
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer .brand-name {
  color: #ffcdb2;
  font-size: 1.6rem;
}

.footer .brand-crp {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  display: block;
  margin: 0.25rem 0 0.8rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-links h4,
.footer-social h4 {
  color: var(--peach-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.48rem;
}

.footer-links a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--ease);
}

.footer-links a:hover {
  color: var(--peach-light);
}

.social-links {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--ease);
}

.social-links a:hover {
  background: var(--dusty-rose);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  color: var(--white);
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.48);
  z-index: 999;
  transition: all var(--ease);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 7px 30px rgba(37, 211, 102, 0.6);
}

/* Botão Voltar ao Topo */
.back-to-top {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--dusty-rose);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(181, 131, 141, 0.45);
  z-index: 998;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--dim-grey);
  transform: translateY(-3px);
  box-shadow: 0 7px 24px rgba(109, 104, 117, 0.4);
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .services-layout {
    gap: 1.25rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content {
    gap: 2rem;
  }

  .mosaic-main {
    height: 400px;
  }
}

@media (max-width: 900px) {
  .services-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  section {
    padding: 3.5rem 0;
  }

  /* Navigation */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 248, 245, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateX(0);
    pointer-events: all;
  }

  .nav-links a {
    font-size: 1.2rem;
    font-weight: 500;
  }

  .hamburger {
    display: flex;
  }

  .btn-nav {
    display: none;
  }

  /* Hero */
  .hero-content {
    grid-template-columns: 1fr;
    width: 100%;
    padding-top: 5.5rem;
    padding-bottom: 3rem;
    min-height: auto;
    gap: 2.25rem;
  }

  .hero-text {
    padding: 0;
    order: 2;
    text-align: center;
  }

  .hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-note {
    justify-content: center;
  }

  .hero-image {
    order: 1;
    min-height: auto;
    padding-bottom: 2rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .hero-image::before {
    display: none;
  }

  .hero-img {
    height: 280px;
    max-width: 220px;
    margin: 0 auto;
    border-radius: 24px;
  }

  .hero-badge {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    margin: 0;
    width: fit-content;
    max-width: calc(100% - 2rem);
    white-space: nowrap;
    text-align: center;
    font-size: 0.78rem;
    z-index: 3;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image::before,
  .about-image::after {
    display: none;
  }

  .about-img,
  .mosaic-main {
    height: auto;
    border-radius: 24px;
    max-width: 250px;
    margin: 0 auto;
  }

  .mosaic-accent {
    right: calc(50% - 150px);
  }

  .about-content {
    text-align: left;
  }

  .about-content .section-tag,
  .about-content h2 {
    display: block;
    text-align: center;
  }

  .about-content h2 {
    text-align: center;
  }

  .about-badges {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }

  /* Services */
  .services-layout {
    grid-template-columns: 1fr;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Benefits */
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CTA */
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-image {
    order: -1;
  }

  .cta-image img {
    height: 280px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.15);
  }

  .cta-content {
    text-align: center;
  }

  /* Attendance */
  .attendance-grid {
    grid-template-columns: 1fr;
  }

  /* Closing */
  .closing {
    padding: 3rem 0;
  }

  .closing-shell {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .closing-left {
    padding: 2.2rem 1.6rem 2rem;
    gap: 1.4rem;
  }

  .closing-headline {
    font-size: clamp(2rem, 6vw, 2.6rem);
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .contact-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 1.2rem 1rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }

  .closing {
    padding: 2rem 0;
  }

  .closing-shell {
    border-radius: 18px;
  }

  .closing-left {
    padding: 1.6rem 1.2rem 1.5rem;
    gap: 1.1rem;
  }

  .closing-headline {
    font-size: 2rem;
  }

  .closing-content p {
    font-size: 0.91rem;
  }

  .contact-meta {
    flex-wrap: wrap;
  }

  .contact-meta span {
    font-size: 0.75rem;
    padding: 0.34rem 0.62rem;
  }

  .cr-cta {
    font-size: 0.78rem;
  }

  .contact-action-card small {
    font-size: 0.8rem;
  }

  .contact-action-cta {
    font-size: 0.82rem;
  }

  .contact-email-link {
    width: 100%;
    font-size: 0.82rem;
    padding: 0.62rem 0.74rem;
  }

  .btn-primary {
    width: 100%;
    font-size: 0.9rem;
    padding: 0.9rem 1.4rem;
    white-space: normal;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .about-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-img {
    height: 230px;
    max-width: 190px;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 0.6rem 1rem;
  }

  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
    font-size: 1.45rem;
  }

  /* 1.25rem (bottom WA) + 52px (altura WA) + 12px de folga */
  .back-to-top {
    bottom: calc(1.25rem + 52px + 0.75rem);
    right: 1.25rem;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
}
