/* ============================================================
   ESTILOS GLOBAIS — Débora Borges Psicóloga
   ============================================================ */

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  outline: none;
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 4vw, var(--text-5xl));
}
h2 {
  font-size: clamp(1.75rem, 3vw, var(--text-4xl));
}
h3 {
  font-size: clamp(1.25rem, 2vw, var(--text-2xl));
}
h4 {
  font-size: var(--text-xl);
}

p {
  color: var(--color-text-body);
  line-height: 1.7;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ── Section Tags ── */
.section-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-tag);
  margin-bottom: var(--spacing-xs);
}

/* ── Section Titles ── */
.section-title {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-md);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: all var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-text-light);
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-dark {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-color: var(--color-primary);
}
.btn-dark:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text-dark);
  border-color: var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-1px);
}

.btn-whatsapp {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-color: var(--color-primary);
}
.btn-whatsapp:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ── Divider ── */
.divider {
  width: 48px;
  height: 3px;
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
  margin: var(--spacing-sm) 0 var(--spacing-md);
}

/* ── Stars ── */
.stars {
  display: flex;
  gap: 2px;
  color: var(--color-star);
  font-size: var(--text-sm);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-height);
  background-color: var(--color-surface-warm);
  border-bottom: 1px solid var(--color-border-light);
  transition:
    box-shadow var(--transition-base),
    background-color var(--transition-base);
  /* garante que o container interno não grude nas bordas verticais */
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(254, 249, 246, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar > .container {
  width: 100%;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  text-decoration: none;
}

.navbar-logo-img-wrapper {
  width: 42px;
  height: 31px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  mix-blend-mode: multiply; /* removes white background */
  flex-shrink: 0;
}

.navbar-logo-img {
  width: 100%;
  height: auto;
  display: block;
}

.navbar-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.navbar-logo-text .name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.01em;
}

.navbar-logo-text .subtitle {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.05rem;
}

.navbar-logo-text .crp {
  font-size: 0.55rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 0.05rem;
}

/* Nav links */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-body);
  padding: 0.35rem 0.55rem;
  border-radius: var(--radius-sm);
  transition:
    color var(--transition-fast),
    background-color var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--color-primary);
  background-color: rgba(46, 74, 61, 0.06);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  pointer-events: none;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.nav-dropdown-item {
  display: block;
  padding: 0.6rem 1rem;
  font-size: var(--text-sm);
  color: var(--color-text-body);
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast);
}

.nav-dropdown-item:hover {
  background-color: var(--color-bg);
  color: var(--color-primary);
}

/* Navbar CTA */
.navbar-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* Mobile Menu */
.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  z-index: 1100;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: var(--color-text-dark);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.navbar-hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar-hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.navbar-hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--navbar-height);
  left: 0;
  right: 0;
  background-color: var(--color-surface-warm);
  border-top: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  padding: var(--spacing-sm) var(--spacing-md);
  flex-direction: column;
  gap: 0.25rem;
  max-height: calc(100vh - var(--navbar-height));
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 0.5rem;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text-body);
  border-bottom: 1px solid var(--color-border-light);
  transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--color-primary);
}

.mobile-menu-cta {
  margin-top: var(--spacing-sm);
  width: 100%;
  justify-content: center;
  padding: 0.875rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding-top: var(--navbar-height);
  padding-bottom: 2rem;
  background-color: var(--color-bg-alt);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 70% 50%,
      rgba(218, 110, 166, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(249, 179, 141, 0.08) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: flex-end;
  padding: 2rem 0 2.5rem;
  position: relative;
}

.hero-content {
  z-index: 2;
}

.hero-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background-color: var(--color-accent);
  border-radius: 2px;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  line-height: 1.15;
  margin-bottom: var(--spacing-md);
}

.hero-title em {
  color: var(--color-primary);
  font-style: italic;
}

.hero-description {
  font-size: var(--text-base);
  color: var(--color-text-body);
  max-width: 440px;
  margin-bottom: var(--spacing-lg);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.hero-badge-icon {
  width: 36px;
  height: 36px;
  color: var(--color-primary);
}

.hero-badge-text {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text-dark);
  line-height: 1.3;
  text-align: center;
}

/* Hero image column */
.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-photo-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  /* object-position: top center; */
  object-position: center center;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: var(--shadow-lg);
  display: block;
}

/* Quote card */
.hero-quote-card {
  position: absolute;
  bottom: 48px;
  right: -24px;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: var(--radius-lg);
  padding: 1rem 1rem 0.75rem;
  max-width: 185px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

.hero-quote-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 0.25rem;
}

.hero-quote-text {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.hero-quote-heart {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.75rem;
}

.hero-quote-heart svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent-light);
}

/* ============================================================
   AREAS DE ATUAÇÃO
   ============================================================ */
.areas {
  padding: 3.5rem 0;
  background-color: var(--color-surface);
}

.areas-header {
  text-align: center;
  margin-bottom: 2rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.area-card {
  text-align: center;
  padding: 1.5rem 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background-color: var(--color-surface);
  transition: all var(--transition-base);
  cursor: default;
}

.area-card:hover {
  background-color: var(--color-bg);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--color-border-light);
}

.area-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.area-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.area-card h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.4rem;
}

.area-card p {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ============================================================
   SOBRE MIM
   ============================================================ */
.about {
  padding: 3.5rem 0;
  background-color: var(--color-bg);
}

/* Layout: left=text, center=photo, right=why-therapy */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 360px 1fr;
  gap: 2rem;
  align-items: start;
}

.about-content {
  padding-right: 0;
}

.about-photo-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-photo {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  object-position: top;
}

.about-photo-placeholder {
  display: none;
}

.about-text {
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--color-text-body);
}

/* Why therapy column (right side) */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 3rem; /* align visually with photo mid-section */
}

.about-right-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.why-item:hover {
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 34px;
  height: 34px;
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}

.why-icon svg {
  width: 16px;
  height: 16px;
}

.why-text h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.1rem;
}

.why-text p {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ============================================================
   FEATURES BAR
   ============================================================ */
.features-bar {
  background-color: var(--color-primary);
  padding: 1.25rem 0;
}

.features-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.features-bar-inner .feature-item + .feature-item {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-light);
  padding: 0.75rem 1.5rem;
  justify-content: center;
}

.feature-icon {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 18px;
  height: 18px;
  color: white;
}

.feature-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.3;
}

.features-bar-divider {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 0;
  align-self: stretch;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonials {
  padding: 3.5rem 0;
  background-color: var(--color-surface);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 2rem;
}

/* Layout: 3 cards side by side + google card on right */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

/* Google rating block below the 3 cards */
.testimonials-bottom {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.testimonial-card {
  background-color: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid var(--color-border-light);
  transition: box-shadow var(--transition-base);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--color-star);
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

.testimonial-text {
  font-size: 0.8rem;
  color: var(--color-text-body);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  object-fit: cover;
  background-color: var(--color-border);
  flex-shrink: 0;
}

.testimonial-author-info .name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.testimonial-author-info .location {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

/* Google rating card — horizontal strip */
.google-rating-card {
  background-color: var(--color-primary);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  max-width: 480px;
  width: 100%;
}

.google-rating-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  flex-shrink: 0;
}

.google-logo {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.1rem;
}

.google-logo-g {
  color: #4285f4;
}
.google-logo-o1 {
  color: #ea4335;
}
.google-logo-o2 {
  color: #fbbc05;
}
.google-logo-g2 {
  color: #34a853;
}
.google-logo-l {
  color: #ea4335;
}
.google-logo-e {
  color: #4285f4;
}

.google-rating-score {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-light);
  line-height: 1;
}

.google-rating-stars {
  color: var(--color-star);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.google-rating-count {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}
/* ============================================================
   ÁREA DO PACIENTE
   ============================================================ */
.patient-area {
  padding: 4rem 0 3.5rem;
  background-color: var(--color-bg-alt);
}

.patient-area-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: center;
}

/* ── Phone wrapper ── */
.patient-phone-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* ── Phone frame (CSS-only mockup) ── */
.phone-frame {
  width: 240px;
  background-color: #1c1212;
  border-radius: 36px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 24px 60px rgba(49, 32, 27, 0.35),
    0 8px 20px rgba(49, 32, 27, 0.2);
  position: relative;
}

/* Notch */
.phone-frame::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  z-index: 10;
}

.phone-screen {
  background-color: #fdf7f4;
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

/* Status bar */
.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0.9rem 0.25rem;
  background-color: var(--color-primary);
}

.phone-time {
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
}

.phone-status-icons {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
}

/* App header strip */
.phone-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-primary);
  padding: 0.4rem 0.9rem 0.6rem;
}

.phone-app-title {
  font-size: 0.62rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.phone-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: #fff;
  font-size: 0.52rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Nav menu list */
.phone-nav-menu {
  background-color: #2a1a17;
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.phone-nav-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: default;
  transition: background-color 0.15s;
}

.phone-nav-item svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
}

.phone-nav-active {
  background-color: var(--color-accent);
  color: #fff;
  border-radius: 0 8px 8px 0;
  margin-right: 0.5rem;
}

.phone-nav-active svg {
  color: #fff;
}

/* App content area */
.phone-app-content {
  flex: 1;
  background-color: #fdf7f4;
  padding: 0.65rem 0.8rem 0.8rem;
}

.phone-content-label {
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.3rem;
}

.phone-appointment-card {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background-color: #fff;
  border-radius: 8px;
  padding: 0.45rem 0.6rem;
  border: 1px solid var(--color-border-light);
  box-shadow: 0 1px 4px rgba(49, 32, 27, 0.07);
  margin-bottom: 0.35rem;
}

.phone-apt-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-accent);
  flex-shrink: 0;
}

.phone-apt-title {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.2;
}

.phone-apt-time {
  font-size: 0.48rem;
  color: var(--color-text-muted);
}

.phone-material-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.5rem;
  color: var(--color-text-body);
  padding: 0.28rem 0.4rem;
  background-color: #fff;
  border-radius: 5px;
  margin-bottom: 0.2rem;
  border: 1px solid var(--color-border-light);
}

.phone-material-item svg {
  flex-shrink: 0;
  color: var(--color-primary-light);
}

/* ── Patient content (right column) ── */
.patient-content {
  padding-left: 0;
}

.patient-description {
  font-size: var(--text-base);
  color: var(--color-text-body);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.patient-cta-btn {
  background-color: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0;
}

.patient-cta-btn:hover {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── Feature icons strip ── */
.patient-features {
  display: flex;
  flex-direction: row;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
}

.patient-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  flex: 1;
  padding: 0 0.5rem;
  border-right: 1px solid var(--color-border-light);
}

.patient-feature:last-child {
  border-right: none;
}

.patient-feature-icon {
  width: 46px;
  height: 46px;
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--color-primary);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.patient-feature-icon:hover {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.patient-feature-icon svg {
  width: 20px;
  height: 20px;
}

.patient-feature-label {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--color-text-body);
  line-height: 1.35;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--color-primary-dark);
  color: var(--color-text-light);
  padding: 2rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  gap: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0.75rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
}

.footer-logo-img-wrapper {
  width: 42px;
  height: 31px;
  overflow: hidden;
  background-color: #fff;
  padding: 1px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.footer-logo-img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.footer-logo-text .name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.01em;
}

.footer-logo-text .subtitle {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.05rem;
}

.footer-logo-text .crp {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 0.05rem;
}

.footer-col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.6rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.35rem;
  transition: color var(--transition-fast);
}

.footer-contact-item:hover {
  color: rgba(255, 255, 255, 1);
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--color-accent-light);
}

.footer-hours-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.3rem;
}

.footer-hours-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--color-accent-light);
}

.footer-bottom {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  padding-top: 0.25rem;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: white;
}

/* Pulse ring */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  background-color: rgba(37, 211, 102, 0.25);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }
  70% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* ============================================================
   ANIMATIONS & TRANSITIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay='1'] {
  transition-delay: 0.1s;
}
[data-animate-delay='2'] {
  transition-delay: 0.2s;
}
[data-animate-delay='3'] {
  transition-delay: 0.3s;
}
[data-animate-delay='4'] {
  transition-delay: 0.4s;
}
[data-animate-delay='5'] {
  transition-delay: 0.5s;
}
[data-animate-delay='6'] {
  transition-delay: 0.6s;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --navbar-height: 64px;
  }

  .navbar-nav {
    display: none;
  }
  .navbar-cta {
    display: none;
  }
  .navbar-hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    padding: 2rem 0 0;
  }

  .hero-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }
  .hero-description {
    margin: 0 auto 1.25rem;
  }
  .hero-actions {
    justify-content: center;
  }

  .hero-badges {
    grid-template-columns: repeat(2, 1fr);
    max-width: 380px;
    margin: 0 auto;
  }

  .hero-visual {
    order: -1;
  }

  .hero-photo {
    height: 360px;
    max-width: 360px;
    margin: 0 auto;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  }

  .hero-quote-card {
    right: 0;
    bottom: 16px;
  }

  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* About: stack as single column on tablet */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-content {
    order: 2;
  }
  .about-photo-wrapper {
    order: 1;
  }
  .about-right {
    order: 3;
    padding-top: 0;
  }
  .about-photo {
    height: 320px;
  }

  .features-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-bar-inner .feature-item + .feature-item {
    border-left: none;
  }

  .features-bar-inner .feature-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  /* Testimonials: 1 col on tablet */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .google-rating-card {
    max-width: 100%;
  }

  /* Patient area: stack */
  .patient-area-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .phone-frame {
    width: 210px;
  }

  .patient-description {
    margin: 0 auto 1.5rem;
  }

  .patient-cta-btn {
    margin: 0 auto;
  }

  .patient-features {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  :root {
    --navbar-height: var(--navbar-height-mob);
  }

  .navbar-logo-img-wrapper {
    width: 32px;
    height: 23px;
  }

  .navbar-logo-text .name {
    font-size: 0.85rem;
  }

  .navbar-logo-text .subtitle {
    font-size: 0.55rem;
  }

  .navbar-logo-text .crp {
    font-size: 0.5rem;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-quote-card {
    position: static;
    margin-top: 0.75rem;
    max-width: 100%;
  }

  .features-bar-inner {
    grid-template-columns: 1fr 1fr;
  }

  .patient-features {
    flex-wrap: wrap;
    gap: 0.75rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1rem;
  }

  .patient-feature {
    flex: 0 0 calc(33% - 0.5rem);
    border-right: none;
  }

  .patient-phone-wrapper {
    display: none; /* hide phone on mobile to save space */
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .google-rating-card {
    flex-direction: column;
    text-align: center;
  }
}
