/* ============================================
   CEIH — Centro de Excelência em Medicina Hiperbárica
   ============================================ */

:root {
  --navy: #1a2b5f;
  --navy-dark: #0f1a3d;
  --navy-light: #2a4080;
  --cyan: #4ec4e0;
  --cyan-dark: #2ba8c8;
  --green: #7cb82f;
  --green-dark: #5f9a1f;
  --gold: #c9a84c;
  --gold-light: #e8d5a0;
  --cream: #faf9f7;
  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #eef1f6;
  --gray-200: #dde3ec;
  --gray-400: #8b95a8;
  --gray-600: #4a5568;
  --gray-800: #2d3748;
  --text: #2c3e50;
  --shadow-sm: 0 2px 8px rgba(26, 43, 95, 0.06);
  --shadow-md: 0 8px 30px rgba(26, 43, 95, 0.1);
  --shadow-lg: 0 20px 60px rgba(26, 43, 95, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --header-h: 80px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(124, 184, 47, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 184, 47, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn--full { width: 100%; }

.btn--secondary {
  background: var(--gray-50);
  color: var(--navy);
  border: 1px solid var(--gray-200);
  margin-top: 12px;
}

.btn--secondary:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: var(--transition);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.header__logo img {
  height: 44px;
  width: auto;
  transition: var(--transition);
}

.header__logo {
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 14px;
  border-radius: 10px;
  transition: var(--transition);
}

.header--scrolled .header__logo {
  background: transparent;
  padding: 0;
}

.nav__list {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: var(--transition);
}

.nav__link:hover::after { width: 100%; }

.nav__cta {
  display: none;
}

.header--scrolled .nav__link {
  color: var(--navy);
}

.header__cta {
  font-size: 0.85rem;
  padding: 10px 22px;
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}

.header--scrolled .header__toggle span {
  background: var(--navy);
}

.header__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg picture,
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 26, 61, 0.88) 0%,
    rgba(26, 43, 95, 0.75) 40%,
    rgba(26, 43, 95, 0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 60px) 24px 80px;
  max-width: 800px;
}

.hero__badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(78, 196, 224, 0.15);
  border: 1px solid rgba(78, 196, 224, 0.3);
  border-radius: 50px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  color: var(--cyan);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- Sections ---- */
.section {
  padding: 100px 0;
}

.section__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section__text {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.section__text--center {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

/* ---- Sobre ---- */
.sobre {
  background: var(--cream);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre__visual {
  position: relative;
}

.sobre__image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sobre__image-main picture,
.sobre__image-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.sobre__image-accent picture,
.sobre__image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sobre__image-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

.sobre__card {
  position: absolute;
  top: 30px;
  left: -30px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 240px;
}

.sobre__card-icon {
  color: var(--gold);
  flex-shrink: 0;
}

.sobre__card p {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
}

.sobre__features {
  margin: 28px 0 36px;
}

.sobre__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.sobre__features svg {
  color: var(--green);
  flex-shrink: 0;
}

/* ---- Serviços ---- */
.servicos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.servico-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.servico-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  transform: scaleX(0);
  transition: var(--transition);
}

.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.servico-card:hover::before {
  transform: scaleX(1);
}

.servico-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(78, 196, 224, 0.1), rgba(124, 184, 47, 0.1));
  border-radius: 14px;
  color: var(--navy);
  margin-bottom: 24px;
}

.servico-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.servico-card__text {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 20px;
}

.servico-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan-dark);
  transition: var(--transition);
}

.servico-card__link:hover {
  color: var(--green);
}

/* ---- Tratamento ---- */
.tratamento {
  background: var(--navy-dark);
  color: var(--white);
}

.tratamento .section__tag { color: var(--cyan); }
.tratamento .section__title { color: var(--white); }
.tratamento .section__text { color: rgba(255, 255, 255, 0.75); }

.tratamento__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.tratamento__steps {
  margin-top: 36px;
}

.step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.step:last-child { border-bottom: none; }

.step__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.step h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.step p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.tratamento__indicacoes {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}

.tratamento__indicacoes h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.indicacoes-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.indicacoes-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.tratamento__indicacoes .btn {
  margin-top: 28px;
}

/* ---- Galeria ---- */
.estrutura {
  background: var(--gray-50);
}

.galeria {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.galeria__item {
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  position: relative;
  background: var(--gray-200);
}

.galeria__item picture,
.galeria__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.galeria__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 43, 95, 0);
  transition: var(--transition);
}

.galeria__item:hover picture img,
.galeria__item:hover img {
  transform: scale(1.08);
}

.galeria__item:hover::after {
  background: rgba(26, 43, 95, 0.2);
}

.galeria__item--large {
  grid-column: span 2;
  grid-row: span 2;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--cyan-dark) 100%);
  padding: 80px 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner__content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  flex-shrink: 0;
}

/* ---- FAQ ---- */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--gray-100);
  padding: 0;
}

.faq__item summary {
  padding: 24px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cyan-dark);
  transition: var(--transition);
}

.faq__item[open] summary::after {
  content: '−';
}

.faq__item p {
  padding: 0 0 24px;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ---- Contato ---- */
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.contato__items {
  margin-top: 32px;
}

.contato__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  transition: var(--transition);
}

a.contato__item:hover {
  color: var(--cyan-dark);
}

.contato__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: 12px;
  color: var(--navy);
  flex-shrink: 0;
}

.contato__item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.contato__item span {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.contato__cta {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contato__cta h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.contato__cta p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.contato__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ---- Footer ---- */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__brand img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 8px;
}

.footer__brand p {
  font-size: 0.8rem;
}

.footer__links {
  display: flex;
  gap: 28px;
}

.footer__links a {
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--cyan);
}

.footer__copy {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 8px;
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 32px rgba(37, 211, 102, 0.6); }
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] { display: none; }

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: var(--transition);
}

.lightbox__close:hover { opacity: 1; }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

/* ---- Reveal Animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Mobile conversion bar ---- */
.mobile-bar {
  display: none;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .servicos__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sobre__grid,
  .tratamento__grid,
  .contato__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sobre__image-accent,
  .sobre__card {
    display: none;
  }

  .galeria {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .galeria__item--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner__actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 70px;
    --mobile-bar-h: 68px;
  }

  body {
    padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px));
  }

  .container {
    padding: 0 20px;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 16px 24px 32px;
    box-shadow: var(--shadow-md);
    transform: translateX(100%);
    opacity: 1;
    transition: transform 0.35s ease;
    pointer-events: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav--open {
    transform: translateX(0);
    pointer-events: all;
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
  }

  .nav__link {
    display: block;
    padding: 16px 0;
    color: var(--navy);
    border-bottom: 1px solid var(--gray-100);
    font-size: 1rem;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav__link::after { display: none; }

  .nav__cta {
    display: flex;
    width: 100%;
    margin-top: 24px;
    padding: 16px 24px;
    font-size: 1rem;
    min-height: 52px;
  }

  .header__cta { display: none; }
  .header__toggle { display: flex; }

  .header__toggle {
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: calc(var(--header-h) + 40px) 20px 48px;
  }

  .hero__badge {
    font-size: 0.7rem;
    padding: 6px 14px;
    margin-bottom: 16px;
  }

  .hero__title {
    font-size: clamp(2.2rem, 9vw, 3rem);
    margin-bottom: 16px;
  }

  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.7;
  }

  .hero__actions {
    margin-bottom: 36px;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 52px;
    font-size: 1rem;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 28px;
  }

  .stat__number {
    font-size: 1.8rem;
  }

  .hero__scroll {
    display: none;
  }

  .servicos__grid {
    grid-template-columns: 1fr;
  }

  .servico-card {
    padding: 28px 24px;
  }

  .sobre__image-main img {
    height: 280px;
  }

  .tratamento__indicacoes {
    padding: 28px 24px;
  }

  .galeria {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
    gap: 10px;
  }

  .galeria__item--large {
    grid-column: span 2;
    grid-row: span 1;
    grid-auto-rows: 180px;
  }

  .section {
    padding: 56px 0;
  }

  .section__header {
    margin-bottom: 40px;
  }

  .section__title {
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

  .cta-banner {
    padding: 48px 0;
  }

  .cta-banner__actions {
    width: 100%;
    flex-direction: column;
  }

  .cta-banner__actions .btn {
    width: 100%;
    min-height: 52px;
  }

  .contato__cta {
    padding: 28px 20px;
  }

  .contato__map iframe {
    height: 280px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }

  .footer__links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    gap: 10px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--gray-100);
    box-shadow: 0 -4px 24px rgba(26, 43, 95, 0.1);
  }

  .mobile-bar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-bar__btn--phone {
    flex: 0 0 auto;
    padding: 0 18px;
    background: var(--gray-50);
    color: var(--navy);
    border: 1px solid var(--gray-200);
  }

  .mobile-bar__btn--cta {
    flex: 1;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(124, 184, 47, 0.35);
  }

  .lightbox__nav {
    width: 48px;
    height: 48px;
    font-size: 2rem;
  }

  .lightbox__nav--prev { left: 10px; }
  .lightbox__nav--next { right: 10px; }

  .lightbox__close {
    top: 12px;
    right: 12px;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .btn {
    min-height: 48px;
  }
}

@media (max-width: 380px) {
  .hero__title {
    font-size: 2rem;
  }

  .mobile-bar__btn--phone span,
  .mobile-bar__btn--phone {
    font-size: 0.85rem;
    padding: 0 14px;
  }

  .galeria {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }

  .galeria__item--large {
    grid-column: span 1;
  }
}
