/* ═══════════════════════════════════════════════════════
   CT HELP PRIME — DESIGN SYSTEM
   Paleta: Azul petróleo, verde teal/WhatsApp, branco, cinza claro
   Fonte: Poppins
═══════════════════════════════════════════════════════ */

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

:root {
  --teal:        #1a4a66;      /* azul petróleo */
  --teal-dark:   #123548;
  --teal-mid:    #1e5c7a;
  --green:       #25d366;      /* verde WhatsApp */
  --green-dark:  #1aad52;
  --green-btn:   #28a745;      /* verde botões gerais */
  --green-btn-d: #1e8035;
  --white:       #ffffff;
  --off-white:   #f7f9fb;
  --gray-light:  #f0f4f8;
  --gray-mid:    #e2e8f0;
  --gray:        #94a3b8;
  --text-dark:   #1e293b;
  --text-mid:    #475569;
  --text-light:  #64748b;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.16);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TOPBAR ──────────────────────────────────────── */
.topbar {
  background: var(--teal-dark);
  padding: 8px 0;
  position: relative;
  z-index: 100;
}

.topbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #c8dce8;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}

.topbar-item:hover {
  color: var(--white);
}

.topbar-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.85;
}

/* ─── HEADER / NAVBAR ─────────────────────────────── */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 500;
  overflow: visible;
  box-shadow: 0 2px 12px rgba(0,0,0,.09);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.14);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  gap: 16px;
}

/* Nav left */
.nav-left {
  display: flex;
  align-items: center;
  gap: 52px;
  justify-content: flex-end;
}

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 52px;
  justify-content: flex-start;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-btn);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--teal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  transition: opacity var(--transition);
}

.logo:hover {
  opacity: 0.85;
}

.logo-icon {
  width: 90px;
  height: auto;
  flex-shrink: 0;
}

/* Logo PNG real */
.logo-img {
  width: 90px;
  height: auto;
  display: block;
  object-fit: contain;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

/* logo-text escondido quando usa PNG (o PNG ja tem o texto 'Prime') */
.logo-text {
  display: none;
}

.logo-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #3a9e3a;
  letter-spacing: -0.02em;
}

.logo-sub {
  font-size: 0.58rem;
  font-weight: 600;
  color: #2a6db5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  grid-column: 3;
  justify-self: end;
}

.hamburger:hover {
  background: var(--gray-light);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--teal);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-mid);
  padding: 16px 24px 20px;
  gap: 4px;
}

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

.mobile-nav-link {
  padding: 10px 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.mobile-nav-link:hover {
  background: var(--gray-light);
  color: var(--teal);
}

/* Mobile dropdown */
.mobile-dropdown {
  position: relative;
  width: 100%;
}

.mobile-dropdown-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 10px 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

.mobile-dropdown-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  transition: transform 0.3s ease;
}

.mobile-dropdown-btn[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  background: var(--gray-light);
  border-left: 3px solid var(--green-btn);
  margin-left: 12px;
}

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

.mobile-dropdown-item {
  padding: 10px 12px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  margin: 4px 8px;
}

.mobile-dropdown-item:hover {
  background: rgba(37, 211, 102, 0.15);
  color: var(--green-btn);
  padding-left: 16px;
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.03);
  transition: transform 8s ease;
}

.hero:hover .hero-img {
  transform: scale(1.07);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 30, 50, 0.82) 0%,
    rgba(10, 30, 50, 0.65) 45%,
    rgba(10, 30, 50, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 24px;
  width: 100%;
}

.hero-text {
  max-width: 560px;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.hero-title-highlight {
  color: #7edfb8;
}

.hero-subtitle {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #1aad52);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 14px 26px;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(37,211,102,.40);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #1fbc58, #178a41);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
  transform: translateY(-2px);
}

.btn-whatsapp:active {
  transform: translateY(0);
}

/* Hero dois botões */
.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Botão Ligue Agora */
.btn-ligue {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 14px 26px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.7);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-ligue:hover {
  background: rgba(255,255,255,0.28);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}

/* ─── TRATAMENTOS SECTION ─────────────────────────── */
.tratamentos-section {
  background: var(--white);
  padding: 70px 0 80px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.section-subtitle {
  font-size: 0.92rem;
  color: var(--text-light);
  font-weight: 400;
}

/* Cards grid */
.cards-row {
  display: grid;
  gap: 28px;
  margin-bottom: 28px;
}

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

.cards-row-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

/* Card */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,.14);
}

.card-img-wrap {
  width: 100%;
  height: 185px;
  overflow: hidden;
  flex-shrink: 0;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
}

.card:hover .card-img-wrap img {
  transform: scale(1.07);
}

.card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-mid);
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-desc {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 14px;
}

/* Card actions: Veja Mais + WA side by side */
.card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--teal-mid);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 7px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--teal-mid);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-card:hover {
  background: var(--teal-mid);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(30,92,122,.28);
  transform: translateY(-1px);
}

/* Botão WhatsApp nos cards */
.btn-card-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #25d366, #1aad52);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 7px 14px;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(37,211,102,.30);
}

.btn-card-wa:hover {
  background: linear-gradient(135deg, #1fbc58, #178a41);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
}

/* ─── BANNER 24H ──────────────────────────────────── */
.banner-24h {
  background: linear-gradient(135deg, #1e7a4a 0%, #25a35a 50%, #1e7a4a 100%);
  padding: 0;
}

.banner-24h-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.banner-24h-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.banner-wa-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.banner-wa-icon svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}

.banner-24h-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
}

.banner-24h-text strong {
  font-weight: 800;
}

.btn-especialista {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 11px 24px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.8);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-especialista:hover {
  background: var(--white);
  color: var(--green-btn);
  border-color: var(--white);
  box-shadow: 0 4px 18px rgba(0,0,0,.15);
  transform: translateY(-2px);
}

/* ─── ESTRUTURA SECTION ───────────────────────────── */
.estrutura-section {
  background: var(--off-white);
  padding: 0;
  overflow: hidden;
}

.estrutura-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}

.estrutura-img-col {
  position: relative;
  overflow: hidden;
}

/* Foto real da estrutura */
.estrutura-real-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.estrutura-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 380px;
  background: linear-gradient(135deg, #1a4a4a 0%, #1e6655 40%, #2a7a5a 70%, #1a5c42 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.estrutura-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.estrutura-placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 24px;
}

.placeholder-icon {
  width: 100px;
  height: 75px;
  opacity: 0.8;
}

.placeholder-sub {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
}

.estrutura-text-col {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.estrutura-title {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--teal);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
}

.estrutura-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.btn-outline-teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-mid);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 11px 28px;
  border-radius: 50px;
  margin-top: 8px;
  width: fit-content;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(26,74,102,.25);
}

.btn-outline-teal:hover {
  background: var(--teal-dark);
  box-shadow: 0 6px 22px rgba(26,74,102,.38);
  transform: translateY(-2px);
}

/* ─── BOTÃO WA SLIM (seção contato) ──────────────────────── */
.btn-whatsapp-slim {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #1aad52);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 13px 34px;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(37,211,102,.38);
  transition: all var(--transition);
  margin-top: 10px;
  white-space: nowrap;
}

.btn-whatsapp-slim svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-whatsapp-slim:hover {
  background: linear-gradient(135deg, #1fbc58, #178a41);
  box-shadow: 0 6px 26px rgba(37,211,102,.52);
  transform: translateY(-2px);
}

/* ─── CONTATO / FALE CONOSCO ──────────────────────────────── */
.contato-section {
  background: var(--white);
  padding: 60px 0 70px;
}

.contato-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contato-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 16px;
  transition: color var(--transition);
}

.contato-item:hover {
  color: var(--teal-mid);
}

.contato-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contato-icon-wrap.teal {
  background: var(--teal-mid);
  color: var(--white);
}

.contato-icon-wrap svg {
  width: 18px;
  height: 18px;
}

.btn-whatsapp-contato {
  margin-top: 10px;
}

.contato-mapa {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 280px;
  position: relative;
}

.contato-mapa iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.mapa-pin {
  display: none;
}

/* ─── FOOTER ──────────────────────────────────────── */
.footer {
  background: linear-gradient(160deg, var(--teal-dark) 0%, #0e2d40 100%);
  padding: 54px 0 0;
  color: rgba(255,255,255,0.78);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1.5fr;
  gap: 40px;
  align-items: stretch;
}

/* Footer brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 70px;
  height: auto;
  flex-shrink: 0;
}

.footer-logo-img {
  width: 70px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-logo-icon svg {
  width: 100%;
  height: 100%;
}

.footer-logo-name {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.footer-logo-sub {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  color: #4ecba8;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--green-btn);
  border-color: var(--green-btn);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(40,167,69,.4);
}

.social-btn svg {
  width: 16px;
  height: 16px;
}

/* Footer cols */
.footer-col {}

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

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-list a,
.footer-list li {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.68);
  transition: color var(--transition);
  line-height: 1.4;
}

.footer-list a:hover {
  color: #4ecba8;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255,255,255,0.68);
  font-size: 0.83rem;
}

.footer-contact-list li svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-list a {
  color: rgba(255,255,255,0.68);
}

.footer-contact-list a:hover {
  color: #4ecba8;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 24px;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ─── FLOAT WHATSAPP ──────────────────────────────── */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25d366, #1aad52);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  z-index: 999;
  transition: all var(--transition);
}

.float-whatsapp svg {
  width: 30px;
  height: 30px;
}

.float-whatsapp:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 10px 34px rgba(37,211,102,.65);
}

/* ─── SCROLL ANIMATIONS ───────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════════════════ */

/* ─── TABLET (≤ 900px) ────────────────────────────── */
@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr;
    height: 64px;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .logo {
    justify-content: flex-start;
    grid-column: 1;
  }

  .hamburger {
    display: flex;
    grid-column: 2;
  }

  .hero {
    min-height: 420px;
  }

  .hero-content {
    padding: 56px 24px;
  }

  .hero-title {
    font-size: clamp(1.7rem, 5vw, 2.4rem);
  }

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

  .cards-row-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

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

  .estrutura-img-placeholder {
    min-height: 260px;
  }

  .estrutura-text-col {
    padding: 40px 32px;
  }

  .contato-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contato-mapa {
    height: 240px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .topbar-inner {
    justify-content: center;
    gap: 20px;
  }
}

/* ─── MOBILE (≤ 600px) ────────────────────────────── */
@media (max-width: 600px) {
  .topbar-inner {
    flex-direction: column;
    gap: 4px;
  }

  .topbar-item {
    font-size: 0.73rem;
  }

  .hero {
    min-height: 380px;
  }

  .hero-content {
    padding: 44px 20px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .btn-whatsapp {
    font-size: 0.77rem;
    padding: 12px 20px;
  }

  .tratamentos-section {
    padding: 48px 0 56px;
  }

  .cards-row-3,
  .cards-row-2 {
    grid-template-columns: 1fr;
  }

  .cards-row-2 {
    max-width: 100%;
  }

  .banner-24h-inner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .banner-24h-left {
    flex-direction: column;
    text-align: center;
  }

  .banner-24h-text {
    font-size: 0.95rem;
  }

  .estrutura-text-col {
    padding: 36px 20px;
  }

  .estrutura-title {
    font-size: 2rem;
  }

  .contato-section {
    padding: 44px 0 52px;
  }

  .contato-inner {
    padding: 0 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 20px 40px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px;
  }

  .float-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .float-whatsapp svg {
    width: 26px;
    height: 26px;
  }
}

/* ─── SMALL MOBILE (≤ 380px) ─────────────────────── */
@media (max-width: 380px) {
  .hero-title {
    font-size: 1.45rem;
  }

  .logo-name {
    font-size: 1.1rem;
  }
}
