/* =====================================================
   POINT FITNESS — Folha de estilo EXCLUSIVA
   Nicho: Academia de Musculação e Artes Marciais (Petrópolis)
   Paleta: Azul Forte + Laranja Vibrante (extraída do Logo.png)
   Tipografia forte/esportiva: Anton (display) + Montserrat
   Standalone — não depende do CSS das clínicas
   ===================================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Paleta oficial (extraída do Logo.png) */
  --orange: #F85117;        /* Laranja vibrante da marca (CTA) */
  --orange-600: #E8420B;    /* Laranja escuro (hover) */
  --orange-700: #C4360A;
  --orange-tint: #FFEDE5;   /* Laranja clarinho (fundos suaves) */

  --blue: #0A46C0;          /* Azul forte da marca */
  --blue-600: #0241A6;      /* Azul do logo */
  --blue-700: #06327E;      /* Azul escuro (seções de destaque) */
  --blue-900: #06122E;      /* Azul quase preto (hero/rodapé) */
  --blue-tint: #E7EEFB;     /* Azul clarinho */

  --ink: #111318;           /* Texto principal (grafite/preto do logo) */
  --white: #FFFFFF;
  --cream: #F5F7FA;         /* Off-white frio */
  --gray-50: #F4F6F9;
  --gray-100: #EBEFF4;
  --gray-200: #DDE3EA;
  --gray-300: #C4CCD6;
  --gray-400: #909AA6;
  --gray-500: #626C78;
  --gray-600: #414954;

  --font-body: 'Montserrat', 'Roboto', sans-serif;
  --font-display: 'Anton', 'Montserrat', sans-serif;

  --shadow-sm: 0 1px 2px rgba(6, 18, 46, 0.06);
  --shadow-md: 0 6px 16px -4px rgba(6, 18, 46, 0.16);
  --shadow-lg: 0 16px 32px -8px rgba(6, 18, 46, 0.20);
  --shadow-xl: 0 28px 50px -12px rgba(6, 18, 46, 0.30);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===========================
   UTILITÁRIOS
   =========================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 92px 0; }
.section--alt { background-color: var(--cream); }

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section__title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--blue-900);
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* Filete que une as duas cores da marca (laranja → azul) */
.brand-divider {
  width: 72px;
  height: 5px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  margin: 0 auto 22px;
}

/* ===========================
   BOTÕES
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
}

/* Ação principal — Laranja vibrante (CTA da marca) */
.btn--primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-600) 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(248, 81, 23, 0.32);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--orange-600) 0%, var(--orange-700) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(248, 81, 23, 0.42);
}

/* Azul forte da marca */
.btn--blue {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-700) 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(10, 70, 192, 0.28);
}
.btn--blue:hover {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-900) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(10, 70, 192, 0.38);
}

/* Contorno (mantém tamanho idêntico via inset box-shadow) */
.btn--outline {
  background-color: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55);
}
.btn--outline:hover {
  background-color: var(--white);
  color: var(--blue-900);
  transform: translateY(-2px);
}

.btn--ghost-light {
  background-color: var(--white);
  color: var(--orange);
  box-shadow: inset 0 0 0 2px var(--white);
}
.btn--ghost-light:hover {
  background-color: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.7);
}

.btn--lg { font-size: 15px; padding: 17px 36px; }

/* ===========================
   HEADER
   =========================== */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s ease;
}
.header--scrolled { box-shadow: var(--shadow-md); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 112px;
}

.header__logo { margin-right: auto; }
.header__logo img {
  height: 88px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__menu {
  display: flex;
  gap: 28px;
}

.header__menu a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--gray-600);
  transition: color 0.2s;
  position: relative;
}
.header__menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transition: width 0.25s ease;
}
.header__menu a:hover { color: var(--blue-900); }
.header__menu a:hover::after { width: 100%; }

.header__cta {
  padding: 12px 24px;
  font-size: 13px;
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.header__toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: var(--blue-900);
  border-radius: 2px;
  transition: all 0.3s;
}
.header__toggle--active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header__toggle--active span:nth-child(2) { opacity: 0; }
.header__toggle--active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===========================
   HERO — fundo escuro, texto à esquerda, foto à direita
   =========================== */
.hero {
  position: relative;
  padding: 150px 0 100px;
  background:
    radial-gradient(120% 120% at 90% 0%, rgba(10, 70, 192, 0.45) 0%, transparent 50%),
    radial-gradient(90% 90% at 5% 100%, rgba(248, 81, 23, 0.20) 0%, transparent 48%),
    linear-gradient(160deg, #0B1633 0%, var(--blue-900) 60%, #05060F 100%);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(80% 80% at 50% 40%, #000 0%, transparent 75%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 74px;
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0.005em;
  text-transform: none;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title em {
  font-style: normal;
  color: var(--orange);
}

.hero__subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  margin-bottom: 34px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero__media {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.hero__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid rgba(255, 255, 255, 0.10);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Selo flutuante de autoridade — canto superior direito, saindo um pouco pra fora */
.hero__seal {
  position: absolute;
  top: -18px;
  right: -16px;
  z-index: 2;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  max-width: 240px;
}
.hero__seal-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
}
.hero__seal-stars { color: #FFB300; font-size: 13px; letter-spacing: 1px; margin-bottom: 2px; }
.hero__seal-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--blue-900);
  line-height: 1.05;
  display: block;
}

/* ===========================
   NOSSA ESTRUTURA
   =========================== */
.structure__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.structure__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid var(--white);
  outline: 1px solid var(--gray-200);
}
.structure__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.structure__title {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 400;
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--blue-900);
  margin-bottom: 20px;
}
.structure__title em { font-style: normal; color: var(--orange); }
.structure__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 30px;
}
.structure__text strong { color: var(--blue); font-weight: 700; }

.structure__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pillar-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.pillar-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.pillar-card__icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue-tint), var(--orange-tint));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 26px;
}
.pillar-card strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--blue-900);
  display: block;
  line-height: 1.1;
}
.pillar-card span {
  font-size: 13px;
  color: var(--gray-500);
}

/* ===========================
   MODALIDADES — cards esportivos com ícone
   =========================== */
.modalities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.modality-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.35s, transform 0.35s, border-color 0.35s;
}
.modality-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--orange);
}
.modality-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.modality-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.modality-card:hover .modality-card__media img { transform: scale(1.06); }
.modality-card__media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(6, 18, 46, 0.55) 0%, transparent 55%);
}
.modality-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background-color: rgba(248, 81, 23, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  box-shadow: var(--shadow-sm);
}
.modality-card__body { padding: 20px 22px 24px; }
.modality-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--blue-900);
  margin-bottom: 8px;
}
.modality-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-500);
}

/* ===========================
   CASOS REAIS — mural de resultados
   =========================== */
/* Masonry por colunas: cada foto mantém a proporção natural (nada é cortado) */
.cases__grid {
  column-count: 3;
  column-gap: 20px;
}
.case-tile {
  position: relative;
  display: block;
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: var(--blue-900);
}
.case-tile img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.case-tile:hover img { transform: scale(1.05); }

/* ===========================
   DEPOIMENTOS — fundo azul escuro
   =========================== */
.reviews {
  background:
    radial-gradient(100% 100% at 100% 0%, rgba(248, 81, 23, 0.18) 0%, transparent 55%),
    var(--blue-900);
  position: relative;
}
.reviews .section__title { color: var(--white); }
.reviews .section__eyebrow { color: var(--orange); }
.reviews .section__subtitle { color: rgba(255, 255, 255, 0.72); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.review-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  border-top: 4px solid var(--orange);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
.review-card__stars {
  color: var(--orange);
  font-size: 17px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-card__text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 22px;
  flex-grow: 1;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
}
.review-card__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--blue-900);
  display: block;
}
.review-card__source {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--gray-400);
}

/* ===========================
   CTA EM DESTAQUE
   =========================== */
.cta-band {
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-700) 55%, var(--blue-700) 130%);
  padding: 74px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta-band__title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-band__text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.90);
  margin-bottom: 32px;
}

/* ===========================
   LOCALIZAÇÃO
   =========================== */
.location__inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 40px;
  align-items: stretch;
}
.location__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.location__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.location__card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.location__card--address { position: relative; padding-right: 56px; }
.location__copy {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--orange-tint);
  color: var(--orange);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}
.location__copy i { font-size: 18px; line-height: 1; }
.location__copy:hover {
  background-color: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-1px);
}
.location__copy--copied {
  background-color: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.location__card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--blue-tint), var(--orange-tint));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 22px;
}
.location__card-content strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--blue-900);
  display: block;
  margin-bottom: 4px;
}
.location__card-content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
}
.location__card-content a { color: var(--orange); font-weight: 700; }
.partners { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.partner-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  background-color: var(--blue-tint);
  padding: 5px 11px;
  border-radius: var(--radius-full);
}

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  display: block;
}

/* ===========================
   INSTAGRAM
   =========================== */
.instagram {
  background-color: var(--cream);
  text-align: center;
}
.instagram__icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 36px;
  box-shadow: var(--shadow-md);
}
.instagram__handle {
  font-size: 17px;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 30px;
}
.instagram__grid { display: none; }

/* ===========================
   RODAPÉ
   =========================== */
.footer {
  background-color: #05060F;
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 0;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__brand { max-width: 380px; }
.footer__logo {
  height: 66px;
  width: auto;
  margin-bottom: 18px;
  /* logo com texto preto → versão branca para o fundo escuro */
  filter: brightness(0) invert(1);
}
.footer__tagline {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}
.footer__columns {
  display: flex;
  gap: 48px;
  text-align: right;
}
.footer__column-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.footer__column p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}
.footer__column a:hover { color: var(--orange); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}
.footer__bottom p { font-size: 13px; color: rgba(255, 255, 255, 0.55); }
.footer__social { display: flex; gap: 14px; }
.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.25s;
}
.footer__social-link:hover {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* ===========================
   WHATSAPP FLUTUANTE
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
  transition: all 0.3s;
  font-size: 32px;
  color: var(--white);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
}

/* ===========================
   RESPONSIVO — TABLET (900px)
   =========================== */
@media (max-width: 900px) {
  .section__title { font-size: 42px; }
  .header__inner { gap: 14px; }
  .header__toggle { display: flex; }

  .header__nav {
    position: fixed;
    top: 112px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 22px 24px 28px;
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .header__nav--open { transform: translateY(0); opacity: 1; pointer-events: all; }

  .header__menu {
    flex-direction: column;
    gap: 4px;
    text-align: center;
    order: 2;
  }
  .header__menu a {
    display: block;
    padding: 12px;
    font-size: 15px;
    border-bottom: 1px solid var(--gray-100);
  }
  .header__menu a::after { display: none; }
  .header__cta { order: 1; width: 100%; padding: 15px; font-size: 15px; }

  .hero { padding: 130px 0 80px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__media { order: -1; }

  .structure__inner { grid-template-columns: 1fr; gap: 40px; }
  .structure__media { order: -1; max-width: 460px; margin: 0 auto; }

  .modalities__grid { grid-template-columns: 1fr 1fr; }
  .cases__grid { column-count: 2; }
  .reviews__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .location__inner { grid-template-columns: 1fr; }

  .footer__top { flex-direction: column; align-items: center; text-align: center; }
  .footer__brand { max-width: 100%; }
  .footer__logo { margin-left: auto; margin-right: auto; }
  .footer__columns { flex-direction: column; gap: 24px; text-align: center; }
  .footer__bottom { flex-direction: column; gap: 14px; text-align: center; }
}

/* ===========================
   RESPONSIVO — MOBILE (560px)
   =========================== */
@media (max-width: 560px) {
  .header__logo img { height: 52px; }
  .section { padding: 60px 0; }
  .section__title { font-size: 34px; }
  .hero { padding: 118px 0 64px; }
  .hero__title { font-size: 40px; }
  .structure__title { font-size: 34px; }
  .cta-band__title { font-size: 32px; }

  .hero__seal { top: -14px; right: -8px; padding: 10px 14px; }

  .modalities__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .cases__grid { column-count: 1; max-width: 400px; margin: 0 auto; }

  .btn--lg { width: 100%; }
  .hero__actions .btn { width: 100%; }

  .whatsapp-float { width: 54px; height: 54px; font-size: 28px; bottom: 16px; right: 16px; }
}
