/* ═══════════════════════════════════════════════════════════════
   Pablo S. Alexandre — Advocacia em Direito da Saúde
   Folha de Estilos Principal
   ═══════════════════════════════════════════════════════════════ */

/* ─── VARIÁVEIS ─────────────────────────────────────────────── */
:root {
  --gold:       #C9A84C;
  --gold-light: #D4AF37;
  --navy:       #1A2340;
  --dark:       #111827;
  --text:       #3D3D50;
  --text-light: #6B7280;
  --bg:         #FEFDF8;
  --bg-alt:     #F5F3ED;
  --border:     #E8E4DC;
  --white:      #FFFFFF;
  --green-wa:   #25D366;
  --radius:     8px;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --transition: 0.22s ease;
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ─── UTILITÁRIOS ────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.gold         { color: var(--gold); }
.gold-italic  { color: var(--gold); font-style: italic; }

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(254, 253, 248, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.07); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo { height: 42px; width: auto; }
.brand-text  { display: flex; flex-direction: column; }
.brand-name  {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.brand-sub {
  font-size: 8.5px;
  letter-spacing: 1.8px;
  color: var(--gold);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  border: 1.5px solid var(--gold) !important;
  padding: 7px 18px !important;
  border-radius: var(--radius) !important;
  color: var(--gold) !important;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  border-radius: 4px;
}
.nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  /* imagem como segundo plano — cobre toda a área */
  background-color: #12293E;
  background-image: url('assets/images/pablo-alexandre.jpg');
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-bg { display: none; }
.hero-bg-full { display: none; }
.hero-overlay { display: none; }
.hero-photo-col { display: none; }
.hero-portrait-img { display: block; }

/* overlay via pseudo-elemento: escurece à esquerda, abre à direita */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 18, 32, 0.90) 0%,
    rgba(8, 18, 32, 0.78) 35%,
    rgba(8, 18, 32, 0.45) 60%,
    rgba(8, 18, 32, 0.15) 80%,
    transparent 100%
  );
}

/* texto em primeiro plano */
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 100px 0 72px;
}
.hero-content {
  max-width: 580px;
}

/* cores do texto sobre fundo escuro */
.hero .hero-title   { color: #F0EDE5; }
.hero .hero-sub     { color: rgba(240,237,229,.76); max-width: 520px; margin-left: 0; margin-right: 0; }
.hero .badge        { background: rgba(255,255,255,.08); border-color: rgba(212,175,55,.4); color: rgba(240,237,229,.92); }
.hero .hero-oab     { color: rgba(240,237,229,.38); }
.hero .hero-actions { justify-content: flex-start; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--text-light);
  margin-bottom: 28px;
  background: var(--white);
}
.dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-oab {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 1px;
}

/* ─── BOTÕES ─────────────────────────────────────────────────── */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green-wa);
  color: var(--white);
  text-decoration: none;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: background var(--transition), transform var(--transition);
}
.btn-whatsapp:hover { background: #1EBE58; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

.btn-gold {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: opacity var(--transition);
}
.btn-gold:hover { opacity: 0.88; }

.btn-whatsapp-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-wa);
  color: var(--white);
  text-decoration: none;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  transition: background var(--transition);
}
.btn-whatsapp-lg:hover { background: #1EBE58; }

.btn-phone {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  border: 1.5px solid rgba(255,255,255,0.32);
  color: var(--white);
  transition: border-color var(--transition), background var(--transition);
}
.btn-phone:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ─── SEÇÕES ─────────────────────────────────────────────────── */
.section     { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }

.section-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.8px;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}

.section-sub {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 52px;
  max-width: 560px;
}

/* ─── CARDS DE ATUAÇÃO ───────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-top: 52px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.card-icon {
  color: var(--gold);
  margin-bottom: 16px;
}

.card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 18px;
}

.card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: text-decoration var(--transition);
}
.card-link:hover { text-decoration: underline; }

/* ─── ETAPAS ─────────────────────────────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 52px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.step { display: flex; gap: 24px; align-items: flex-start; }

.step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  min-width: 54px;
}

.step-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.step-body p { color: var(--text-light); font-size: 15px; }

/* ─── DIFERENCIAIS ───────────────────────────────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.diff-item {
  padding: 28px 22px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.diff-item:hover { box-shadow: var(--shadow); }

.diff-icon  { font-size: 26px; margin-bottom: 14px; }
.diff-item h3 { font-size: 14.5px; font-weight: 600; color: var(--navy); margin-bottom: 9px; white-space: nowrap; }
.diff-item p  { font-size: 13.5px; color: var(--text-light); line-height: 1.65; }

/* ─── DEPOIMENTOS ────────────────────────────────────────────── */
/* ─── Slider wrapper ──────────────────────────────────────────── */
.depo-slider-wrap {
  position: relative;
  margin-top: 52px;
}

.testimonials {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 22px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testimonials::-webkit-scrollbar { display: none; }

.testimonial {
  flex: 0 0 calc(33.333% - 15px);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

/* Arrow nav buttons */
.depo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.10);
  transition: background .18s, color .18s, border-color .18s, opacity .18s;
  z-index: 2;
}
.depo-nav:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.depo-prev { left: -20px; }
.depo-next { right: -20px; }

/* Dot indicators */
.depo-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 22px;
}
.depo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.depo-dot.active { background: var(--gold); transform: scale(1.3); }

/* Source badge */
.depo-source {
  display: inline-block;
  margin-left: 7px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
  vertical-align: middle;
}

.stars { color: var(--gold); font-size: 17px; margin-bottom: 14px; letter-spacing: 2px; }

.testimonial p {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}

.testimonial-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 24px;
  font-style: italic;
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-list {
  margin-top: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--bg-alt); }

.faq-icon {
  font-size: 22px;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.32s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a[hidden] { display: block !important; } /* controlado por max-height */

.faq-a p {
  padding: 4px 24px 22px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
}

.faq-contact {
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
  font-style: italic;
  margin: 32px 0 16px;
}

/* ─── BLOG ───────────────────────────────────────────────────── */
.blog-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}
.blog-header .section-title { margin-bottom: 0; }

.ver-todos {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: opacity var(--transition);
}
.ver-todos:hover { opacity: 0.75; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow); }

/* Thumbnail do blog (controlada pelo admin) */
.blog-thumb {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
  flex-shrink: 0;
}
.blog-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border);
}

.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }

.blog-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 10px;
}

.blog-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.blog-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  align-self: flex-start;
}
.blog-link:hover { text-decoration: underline; }

/* ─── SEÇÃO CTA ──────────────────────────────────────────────── */
.cta-section {
  background: var(--navy);
  padding: 88px 0;
  text-align: center;
}

.cta-inner .section-label { color: rgba(201, 168, 76, 0.85); }

.cta-inner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  margin: 14px 0 16px;
}

.cta-inner p {
  color: rgba(255,255,255,0.68);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── RODAPÉ ─────────────────────────────────────────────────── */
.footer {
  background: #0F172A;
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.55);
}

.footer-inner { display: flex; flex-direction: column; gap: 0; }

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}

.footer-logo {
  height: 52px;
  width: auto;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.footer-brand-text strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  color: var(--gold);
  font-weight: 700;
}
.footer-brand-text span {
  font-size: 9.5px;
  letter-spacing: 1.8px;
  color: var(--gold);
}
.footer-brand-text em {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  font-style: italic;
}

/* Ícones de redes sociais */
.social-links {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition),
              color var(--transition), transform var(--transition);
}
.social-icon:hover { transform: translateY(-2px); }
.social-instagram:hover { background: #E1306C; border-color: #E1306C; color: var(--white); }
.social-facebook:hover  { background: #1877F2; border-color: #1877F2; color: var(--white); }
.social-youtube:hover   { background: #FF0000; border-color: #FF0000; color: var(--white); }
.social-tiktok:hover    { background: #010101; border-color: #69C9D0; color: var(--white); }

/* Grid de links no footer */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 32px;
  margin-bottom: 44px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13.5px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
}
.footer-contact svg { margin-top: 2px; flex-shrink: 0; color: var(--gold); }
.footer-contact a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p { font-size: 12px; line-height: 1.75; }
.footer-coverage { color: rgba(255,255,255,0.42); margin-top: 6px; font-style: italic; letter-spacing: 0.02em; }
.disclaimer { color: rgba(255,255,255,0.28); margin-top: 4px; }

/* ─── RESPONSIVO ─────────────────────────────────────────────── */

/* Tablet / Mobile */
@media (max-width: 768px) {
  .container { padding: 0 18px; }

  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    gap: 18px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  }
  .nav-links.open { display: flex; }
  .navbar { position: sticky; }

  /* Hero — layout dividido: foto esquerda / texto direita */
  .hero { background-image: none !important; min-height: auto; }
  .hero::before { display: none; }
  .hero .hero-inner { padding: 0; max-width: 100%; display: flex; flex-direction: row; align-items: stretch; min-height: 460px; }
  .hero-photo-col { display: block; width: 42%; flex-shrink: 0; overflow: hidden; }
  .hero-portrait-img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; object-position: center top; }
  .hero-content { flex: 1; padding: 30px 18px; background: var(--navy); display: flex; flex-direction: column; justify-content: center; text-align: left; }
  .hero .hero-title { font-size: clamp(17px, 4.6vw, 28px); text-align: left; }
  .hero .hero-sub { text-align: left; margin: 0; max-width: 100%; }
  .hero .hero-actions { justify-content: flex-start; flex-direction: column; align-items: stretch; gap: 8px; }
  .hero .hero-oab { text-align: left; }
  .hero .btn-whatsapp,
  .hero .btn-outline { font-size: 13px; height: 48px; padding: 0 12px; justify-content: center; align-items: center; white-space: nowrap; box-sizing: border-box; }
  .hero .btn-whatsapp { gap: 6px; }
  .hero .btn-whatsapp svg { width: 17px; height: 17px; flex-shrink: 0; }

  /* Sections */
  .section { padding: 64px 0; }
  .cta-section { padding: 64px 0; }

  /* Steps */
  .step { flex-direction: column; gap: 6px; }
  .step-num { font-size: 28px; }

  /* Diferenciais */
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-item h3 { white-space: normal; }

  /* Cards e Blog */
  .cards-grid, .blog-grid { grid-template-columns: 1fr; }

  /* Depoimentos carousel */
  .testimonial { flex: 0 0 85%; }
  .depo-prev { left: -10px; }
  .depo-next { right: -10px; }

  /* Footer */
  .footer-brand { flex-direction: column; align-items: center; }
  .footer-brand-text { text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  /* Hero — ajuste fino para telas muito pequenas */
  .hero .hero-inner { min-height: 370px; }
  .hero-portrait-img { min-height: 370px; }
  .hero-content { padding: 22px 12px; }
  .hero .hero-title { font-size: clamp(14px, 4.2vw, 19px); }
  .hero .hero-sub { font-size: 11.5px; }
  .hero-actions   { flex-direction: column; align-items: stretch; }
  .btn-whatsapp   { justify-content: center; }
  .btn-outline    { justify-content: center; }
  .cta-buttons    { flex-direction: column; align-items: stretch; }
  .btn-whatsapp-lg { justify-content: center; }
  .btn-phone      { justify-content: center; }
  .blog-header    { flex-direction: column; align-items: flex-start; }

  /* Diferenciais 1 coluna */
  .diff-grid { grid-template-columns: 1fr; }

  /* Carousel mobile: largura quase total + esconder setas (usar swipe) */
  .testimonial { flex: 0 0 92%; }
  .depo-nav { display: none; }

  /* Footer coluna única no mobile pequeno */
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .section-title { font-size: clamp(24px, 6vw, 36px); }
}

/* ═══ HERO MOBILE — LAYOUT DIVIDIDO (OVERRIDE SAFARI/iOS) ══════════ */
@media screen and (max-width: 768px) {
  section.hero { background-image: none !important; min-height: 0 !important; }
  section.hero::before { display: none !important; }

  section.hero > div.hero-inner {
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-flex-direction: row !important;
    flex-direction: row !important;
    -webkit-align-items: stretch !important;
    align-items: stretch !important;
    padding: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    min-height: 420px;
    box-sizing: border-box;
  }

  section.hero .hero-photo-col {
    display: block !important;
    -webkit-flex: 0 0 42% !important;
    flex: 0 0 42% !important;
    width: 42% !important;
    overflow: hidden !important;
    min-height: 420px;
  }

  section.hero .hero-portrait-img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 420px;
    object-fit: cover !important;
    object-position: center top !important;
  }

  section.hero .hero-content {
    -webkit-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    padding: 24px 14px !important;
    background: #1A2340 !important;
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-flex-direction: column !important;
    flex-direction: column !important;
    -webkit-justify-content: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  section.hero .hero-title {
    text-align: center !important;
    font-size: clamp(15px, 4.5vw, 26px) !important;
  }

  section.hero .hero-sub {
    text-align: center !important;
    margin: 0 !important;
    max-width: 100% !important;
  }

  section.hero .hero-actions {
    -webkit-flex-direction: column !important;
    flex-direction: column !important;
    -webkit-align-items: stretch !important;
    align-items: stretch !important;
    gap: 8px;
  }

  section.hero .hero-oab { text-align: center !important; }
}
