/* ======================================================
   Dra. Yasmin Mino — Landing Page (Alta Conversão)
   Design: Premium Medical – Inspired by HealthCare Landing
   ====================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Primary palette — very dark navy blue */
  --primary: #0b1a33;
  --primary-dark: #060e1f;
  --primary-light: #edf1f7;
  --primary-glass: rgba(11, 26, 51, 0.08);

  /* Accent — soft gold */
  --accent: #c9a84c;
  --accent-light: #fcf8ee;

  /* Neutrals */
  --text-heading: #1a1f2e;
  --text-body: #4a5568;
  --text-muted: #94a0b4;
  --bg-white: #ffffff;
  --bg-section: #f7faf9;
  --bg-dark: #0f1b2d;

  /* Borders & shadows */
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);

  /* Dimensions */
  --max-width: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;

  /* Transition */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease);
}

ul {
  list-style: none;
}

/* ---------- UTILITY ---------- */
.section__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 1.5rem;
}

.section__tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section__tag--light {
  color: var(--accent);
  background: rgba(212, 164, 76, 0.15);
}

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-heading);
  margin-bottom: 1.5rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid var(--accent);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.btn--primary {
  color: var(--accent);
  background: transparent;
  box-shadow: none;
}

.btn--primary:hover {
  transform: translateY(-2px);
  background: rgba(201, 168, 76, 0.12);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}

.btn--lg {
  padding: 18px 44px;
  font-size: 1.1rem;
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.reveal:nth-child(4) {
  transition-delay: 0.3s;
}

.reveal:nth-child(5) {
  transition-delay: 0.4s;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(6, 14, 31, 0.85);
  backdrop-filter: blur(8px);
  transition: all 0.35s var(--ease);
}

#header.header--scrolled {
  background: rgba(6, 14, 31, 0.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem !important;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.nav__logo img {
  height: 350px;
  width: auto;
  object-fit: contain;
  margin-top: -145px;
  margin-bottom: -145px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem !important;
}

.logo__name {
  color: var(--accent);
}

.logo__accent {
  color: var(--accent);
}

#header.header--scrolled .logo__name {
  color: var(--accent);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding: 4px 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__links a:hover {
  color: var(--accent);
}

.nav__cta {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
}

/* =============================================
   1. HERO
   ============================================= */
.hero {
  position: relative;
  background: linear-gradient(160deg, #0d1e38 0%, #0f2440 40%, #111e35 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 4rem;
  min-height: calc(100vh - 80px);
  padding-top: 4rem;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1.2rem;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
}

.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.hero__bullets i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--primary-dark);
  background: var(--accent);
  border-radius: 50%;
}

.hero__micro {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-self: stretch;
  align-items: flex-start;
  margin-top: -2rem;
}

.hero__image img {
  border-radius: 0;
  object-fit: cover;
  object-position: top center;
  max-height: 650px;
  width: 100%;
  box-shadow: none;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 8%, rgba(0, 0, 0, 1) 92%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 8%, rgba(0, 0, 0, 1) 92%, rgba(0, 0, 0, 0) 100%);
  mask-composite: intersect;
}

.hero__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  box-shadow: none;
  animation: float 4s ease-in-out infinite;
}

.hero__badge i {
  font-size: 1.8rem;
  color: var(--accent);
}

.hero__badge strong {
  display: block;
  font-size: 1rem;
  color: #fff;
}

.hero__badge span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.hero__badge--bottom {
  bottom: 35%;
  left: -20px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* =============================================
   2. PAIN (Bloco de Identificação)
   ============================================= */
.pain {
  background: var(--bg-white);
}

.pain__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.pain__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.pain__card {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.35s var(--ease);
}

.pain__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.pain__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 50%;
  transition: all 0.35s var(--ease);
}

.pain__card:hover .pain__icon {
  background: var(--primary);
  color: #fff;
}

.pain__card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.4;
}

.pain__closing {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.15rem;
  color: var(--text-heading);
}

/* =============================================
   3. QUEBRA DE CRENÇA
   ============================================= */
.belief {
  background: var(--bg-section);
}

.belief__container {
  max-width: 800px;
}

.belief__content {
  text-align: center;
}

.belief__text {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 2rem;
}

.belief__result {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  text-align: left;
  padding: 2rem;
  background: var(--bg-white);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.belief__result>i {
  font-size: 2.5rem;
  color: var(--accent);
  flex-shrink: 0;
}

.belief__result ul {
  margin: 0.5rem 0 0.5rem 1.2rem;
  list-style: disc;
}

.belief__result li {
  color: var(--text-body);
  margin-bottom: 0.3rem;
}

.belief__emphasis {
  font-weight: 700;
  color: var(--text-heading);
  margin-top: 0.5rem;
}

/* =============================================
   4. DIFERENCIAL (POSICIONAMENTO)
   ============================================= */
.differentiator {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.differentiator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(11, 26, 51, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.differentiator__box {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.differentiator__title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 3rem;
}

.differentiator__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.differentiator__item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
}

.differentiator__item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.differentiator__item i {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.differentiator__item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.differentiator__quote {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

/* =============================================
   5. SOBRE A MÉDICA
   ============================================= */
.about {
  background: var(--bg-white);
}

.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__image img {
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about__specialty {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.about__content p {
  margin-bottom: 1rem;
}

.about__quote {
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-xs);
  font-style: italic;
  color: var(--text-heading);
  line-height: 1.7;
}

.about__credentials {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.credential {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-section);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-heading);
}

.credential i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* =============================================
   6. SERVIÇOS
   ============================================= */
.services {
  background: var(--bg-section);
}

.services__header {
  text-align: center;
  margin-bottom: 3rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service__card {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
  overflow: hidden;
}

.service__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.service__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service__card:hover::before {
  opacity: 1;
}

.service__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  transition: all 0.35s var(--ease);
}

.service__card:hover .service__icon {
  background: var(--primary);
  color: #fff;
}

.service__card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.service__card p {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.service__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 50%;
  transition: all 0.35s var(--ease);
}

.service__card:hover .service__arrow {
  background: var(--primary);
  color: #fff;
  transform: translateX(4px);
}

/* =============================================
   7. PROCESSO (Timeline)
   ============================================= */
.process {
  background: var(--bg-white);
}

.process__header {
  text-align: center;
  margin-bottom: 4rem;
}

.process__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process__timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
  z-index: 0;
}

.process__step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__number {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--bg-white);
  border: 3px solid var(--primary);
  border-radius: 50%;
  transition: all 0.35s var(--ease);
}

.process__step:hover .step__number {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

.step__content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.step__content p {
  font-size: 0.9rem;
  color: var(--text-body);
}

.process__closing {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.15rem;
  color: var(--text-heading);
}

/* =============================================
   8. FAQ (Objeções)
   ============================================= */
.faq {
  background: var(--bg-section);
}

.faq__header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq__list {
  max-width: 750px;
  margin: 0 auto;
}

.faq__item {
  margin-bottom: 1rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.35s var(--ease);
}

.faq__item[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-heading);
  cursor: pointer;
  list-style: none;
  transition: color 0.3s var(--ease);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question:hover {
  color: var(--primary);
}

.faq__icon {
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform 0.35s var(--ease);
}

.faq__item[open] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-body);
  animation: fadeIn 0.35s var(--ease);
}

.faq__answer ul {
  margin: 0.5rem 0 0.5rem 1.2rem;
  list-style: disc;
}

.faq__answer li {
  margin-bottom: 0.3rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================
   9. PROVA / CONFIANÇA
   ============================================= */
.trust {
  background: var(--bg-white);
}

.trust__header {
  text-align: center;
  margin-bottom: 3rem;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.trust__card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
}

.trust__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.trust__card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.trust__card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.trust__card p {
  font-size: 0.92rem;
  color: var(--text-body);
}

.trust__closing {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.15rem;
  color: var(--text-heading);
}

/* =============================================
   10. CTA FINAL
   ============================================= */
.cta-final {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.cta-final::after {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.cta-final__container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-final__title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  max-width: 700px;
  margin: 0 auto 1rem;
}

.cta-final__text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
}

.cta-final .btn--primary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}

.cta-final .btn--primary:hover {
  background: rgba(201, 168, 76, 0.12);
  color: var(--accent);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}

/* =============================================
   11. FOOTER
   ============================================= */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
}

.footer__container {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
}

.footer__logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.footer__logo a {
  display: inline-block;
}

.footer__logo img {
  height: 350px;
  width: auto;
  object-fit: contain;
  margin-top: -140px;
  margin-bottom: -140px;
}

.footer__logo span {
  color: var(--accent);
}

.footer__brand p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
}

.footer__socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s var(--ease);
}

.footer__socials a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer__col h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.2rem;
}

.footer__col ul li {
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}

.footer__col ul li a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
}

.footer__col ul li a:hover {
  color: var(--accent);
}

.footer__col ul li i {
  color: var(--primary);
}

.footer__bar {
  text-align: center;
  padding: 1.2rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

/* =============================================
   WhatsApp Float
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.35s var(--ease);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

@keyframes pulse-whatsapp {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

/* ---------- WhatsApp Tooltip ---------- */
.whatsapp-tooltip {
  position: fixed;
  bottom: 100px;
  left: 28px;
  background: #fff;
  color: var(--text-heading);
  padding: 14px 18px;
  padding-right: 32px;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
  max-width: 230px;
  z-index: 998;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
}

.whatsapp-tooltip.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 22px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}

.whatsapp-tooltip__close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: var(--text-muted);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.whatsapp-tooltip__close:hover {
  color: var(--text-heading);
  background: var(--primary-light);
}

/* =============================================
   FOOTER — LEGAL LINKS
   ============================================= */
.footer__bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer__legal {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  transition: color 0.3s var(--ease);
}

.footer__legal a:hover {
  color: var(--accent);
}

/* =============================================
   REVIEWS / TESTIMONIALS (Prova Social)
   ============================================= */
.reviews {
  background: var(--bg-section);
}

.reviews__header {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review__card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.35s var(--ease);
  position: relative;
}

.review__card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary-light);
  line-height: 1;
}

.review__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.review__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.review__stars i {
  color: #f5c518;
  font-size: 1rem;
}

.review__text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  min-height: 80px;
}

.review__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

.review__author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-heading);
}

.review__author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.reviews__badge {
  text-align: center;
  margin-top: 2.5rem;
}

.reviews__badge a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  padding: 10px 24px;
  background: var(--primary-light);
  border-radius: 50px;
  transition: all 0.3s var(--ease);
}

.reviews__badge a:hover {
  background: var(--primary);
  color: #fff;
}

/* =============================================
   LOCATION (Mapa compacto na Landing Page)
   ============================================= */
.location {
  background: var(--bg-white);
}

.location__container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
}

.location__address {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.location__address>i {
  font-size: 1.6rem;
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.location__address p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

.location__address strong {
  color: var(--text-heading);
}

.location__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.location__map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* =============================================
   INTERNAL PAGE — HERO COMPACT
   ============================================= */
.page-hero {
  background: linear-gradient(160deg, #0d1e38 0%, #0f2440 40%, #111e35 100%);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__container {
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  margin-bottom: 1.5rem;
}

.page-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}

.page-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================
   ABOUT / SOBRE PAGE (Extended)
   ============================================= */
.about-full {
  background: var(--bg-white);
}

.about-full__container {
  max-width: 900px;
}

.about-full__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.about-full__image img {
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.about-full__text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--text-heading);
  margin-bottom: 1rem;
}

.about-full__text p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-full__philosophy {
  background: var(--bg-section);
  border-radius: var(--radius);
  padding: 3rem;
  margin-bottom: 4rem;
}

.about-full__philosophy h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--text-heading);
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-full__philosophy p {
  margin-bottom: 1rem;
  line-height: 1.8;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-full__philosophy blockquote {
  padding: 1.5rem 2rem;
  background: var(--bg-white);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-xs);
  font-style: italic;
  color: var(--text-heading);
  line-height: 1.7;
  margin-top: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.credentials-section {
  margin-bottom: 2rem;
}

.credentials-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--text-heading);
  text-align: center;
  margin-bottom: 2rem;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.credential-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
}

.credential-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.credential-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.credential-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.3rem;
}

.credential-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact {
  background: var(--bg-white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact__info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.35s var(--ease);
}

.contact__info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--primary);
}

.contact__info-card i {
  font-size: 1.6rem;
  color: var(--primary);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: var(--radius-xs);
  flex-shrink: 0;
}

.contact__info-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.3rem;
}

.contact__info-card p,
.contact__info-card a {
  font-size: 0.92rem;
  color: var(--text-body);
}

.contact__info-card a:hover {
  color: var(--primary);
}

.contact__map-section {
  margin-bottom: 2rem;
}

.contact__map-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--text-heading);
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact__map iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

.contact__cta {
  text-align: center;
  margin-top: 3rem;
}

.contact__cta p {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

/* =============================================
   FORMULÁRIO DE CONTATO
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.section-header .section-subtitle {
  font-size: 1rem;
  color: var(--text-body);
}

.contact-form {
  max-width: 700px;
  margin: 0 auto 3rem;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-body);
  background: var(--bg-light);
  border: 1px solid #45617e;
  border-radius: 8px;
  transition: all 0.3s var(--ease);
  outline: none;
}

.form-input:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-input::placeholder {
  color: #999;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  display: none;
  font-size: 0.8rem;
  color: #e74c3c;
  margin-top: 0.25rem;
}

.form-input.error {
  border-color: #e74c3c;
}

.form-input.error + .form-error {
  display: block;
}

.form-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.form-disclaimer {
  font-size: 0.85rem;
  color: #777;
  text-align: center;
  max-width: 500px;
}

.form-message {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.btn-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =============================================
   BIO / LINK IN BIO
   ============================================= */
.bio-page {
  min-height: 100vh;
  background: linear-gradient(160deg, #0d1e38 0%, #0f2440 40%, #111e35 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.bio-page::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.bio__container {
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
}

.bio__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.bio__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.bio__specialty {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.3rem;
}

.bio__crm {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2rem;
}

.bio__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2rem;
}

.bio__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  transition: all 0.35s var(--ease);
  letter-spacing: 0.3px;
}

.bio__link:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.2);
}

.bio__link--whatsapp {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.3);
  color: #25d366;
}

.bio__link--whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2);
}

.bio__socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 1.5rem;
}

.bio__social {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: all 0.3s var(--ease);
}

.bio__social:hover {
  color: var(--accent);
  background: rgba(201, 168, 76, 0.15);
  transform: translateY(-3px);
}

/* =============================================
   404 ERROR PAGE
   ============================================= */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-white);
}

.error-page__container {
  max-width: 600px;
  padding: 4rem 1.5rem;
}

.error-page__code {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  font-weight: 700;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-page__title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 1rem;
}

.error-page__text {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 2rem;
}

/* =============================================
   LEGAL PAGES (Políticas / Termos)
   ============================================= */
.legal {
  background: var(--bg-white);
}

.legal__container {
  max-width: 800px;
}

.legal__content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--text-heading);
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.legal__content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal__content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal__content ul {
  margin: 0.5rem 0 1rem 1.5rem;
  list-style: disc;
}

.legal__content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.legal__content strong {
  color: var(--text-heading);
}

.legal__update {
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--bg-section);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero__title {
    font-size: 2.6rem;
  }

  .hero__subtitle {
    margin: 0 auto 2rem;
  }

  .hero__bullets {
    align-items: center;
  }

  .hero__micro {
    justify-content: center;
  }

  .hero__image {
    max-width: 450px;
    margin: 0 auto;
  }

  .hero__badge--bottom {
    left: -5px;
  }

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

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

  .about__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__image {
    max-width: 400px;
    margin: 0 auto;
  }

  .process__timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .process__timeline::before {
    display: none;
  }

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

  /* Internal pages */
  .about-full__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-full__image {
    max-width: 400px;
    margin: 0 auto;
  }

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

  .location__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .section__container {
    padding: 4rem 1.2rem;
  }

  .section__title {
    font-size: 2rem;
  }

  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    z-index: 998;
  }

  .nav__links--open {
    display: flex;
  }

  .nav__links--open a {
    color: var(--text-heading);
  }

  .nav__links--open a:hover {
    color: var(--primary);
  }

  .nav__links a {
    font-size: 1.2rem;
  }

  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: block;
    z-index: 999;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__badge {
    display: none;
  }

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

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

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

  .differentiator__title {
    font-size: 2rem;
  }

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

  .cta-final__title {
    font-size: 2rem;
  }

  .footer__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__legal {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Internal pages responsive */
  .page-hero__title {
    font-size: 2.2rem;
  }

  .about-full__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-full__image {
    max-width: 350px;
    margin: 0 auto;
  }

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

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

  .contact__map iframe {
    height: 350px;
  }

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

  .error-page__code {
    font-size: 5rem;
  }

  .location__container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .location__map iframe {
    height: 280px;
  }

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

  .contact-form {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.8rem;
  }

  .section__title {
    font-size: 1.6rem;
  }

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

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

  .btn--lg {
    padding: 16px 30px;
    font-size: 1rem;
  }

  .page-hero__title {
    font-size: 1.8rem;
  }

  .contact__map iframe {
    height: 280px;
  }
}