/* ============================================================
   Dra. Viviane Tamura – Odontologia
   Mobile-First Design — Revisão completa de responsividade
   ============================================================ */

/* ─── VARIÁVEIS ─── */
:root {
  --cream: #f5f2ee;
  --dark: #1a1a18;
  --mid: #3a3835;
  --accent: #9b7e5e;
  --accent-light: #c9a87c;
  --light-warm: #e8e2d9;
  --white: #fafaf8;
  --radius: 8px;
  --touch-min: 52px;
  --px: 1.1rem;
  --section-py: 3rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
  max-width: 100vw;
}

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

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

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--px);
  height: 64px;
  background: rgba(245, 242, 238, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(155, 126, 94, 0.18);
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: var(--touch-min);
  height: var(--touch-min);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(80vw, 300px);
  height: 100dvh;
  background: var(--white);
  z-index: 99;
  padding: 5rem 1.75rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 24, 0.5);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.nav-drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-drawer a {
  display: flex;
  align-items: center;
  padding: 1rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  border-bottom: 1px solid rgba(155, 126, 94, 0.12);
  min-height: var(--touch-min);
  transition: color 0.2s;
}

.nav-drawer a:last-child {
  border-bottom: none;
}

.nav-drawer .drawer-cta {
  margin-top: 1.2rem;
  background: var(--dark);
  color: var(--cream) !important;
  border-radius: 4px;
  justify-content: center;
  border-bottom: none !important;
  padding: 1rem;
}

.nav-links {
  display: none;
}

/* ─── HERO ─── */
#hero {
  padding-top: 64px;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

/* Imagem aparece primeiro em mobile */
.hero-right {
  order: 0;
  position: relative;
  overflow: hidden;
  background: var(--light-warm);
  width: 100%;
  height: 500px;
  flex-shrink: 0;
}

.hero-left {
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem var(--px) 2.5rem;
  flex: 1;
}

.hero-tag {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-left h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 9vw, 3rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 1rem;
}

.hero-left h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-left p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 1.5rem;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  width: 100%;
}

.hero-btns .btn-primary,
.hero-btns .btn-outline {
  width: 100%;
  justify-content: center;
}

.hero-right .img-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e4ddd3 0%, #d4cab8 50%, #c8b99e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--accent);
}

.hero-right .img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(250, 250, 248, 0.95);
  border: 1px solid rgba(155, 126, 94, 0.2);
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);
  z-index: 2;
}

.badge-icon {
  font-size: 1rem;
}

.badge-text strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}

.badge-text span {
  font-size: 0.6rem;
  color: var(--mid);
  font-weight: 300;
  white-space: nowrap;
}

/* ─── BOTÕES ─── */
.btn-primary {
  background: var(--dark);
  color: var(--cream);
  padding: 1rem 1.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--touch-min);
  user-select: none;
  transition: background 0.25s, transform 0.15s;
}

.btn-primary:active {
  background: var(--accent);
  transform: scale(0.98);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  padding: 1rem 1.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid var(--dark);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--touch-min);
  transition: all 0.2s;
}

.btn-outline:active {
  background: var(--dark);
  color: var(--cream);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 1rem 1.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: var(--touch-min);
  width: 100%;
  transition: transform 0.2s, opacity 0.2s;
}

.btn-whatsapp:active {
  transform: scale(0.97);
  opacity: 0.9;
}

/* ─── REGION BANNER ─── */
#region-banner {
  background: var(--dark);
  color: var(--cream);
  padding: 1.25rem var(--px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.region-text {
  font-size: 0.84rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.65;
}

.region-text strong {
  color: var(--accent-light);
  font-weight: 500;
}

.region-cta-btn {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.9rem 1.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  min-height: var(--touch-min);
  transition: transform 0.15s;
}

.region-cta-btn:active {
  transform: scale(0.98);
}

/* ─── SECTION HEADER ─── */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0;
}

.section-tag {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
  display: block;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 7vw, 2.8rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.15;
}

.section-header p {
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--mid);
  max-width: 480px;
  margin: 0.75rem auto 0;
  line-height: 1.75;
}

/* ─── SERVIÇOS ─── */
#servicos {
  padding: var(--section-py) var(--px);
  background: var(--white);
}

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

.service-card {
  background: var(--cream);
  border: 1px solid rgba(155, 126, 94, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.15s;
}

.service-card:active {
  transform: scale(0.99);
}

/* aspect-ratio resolve as distorções de imagem */
.service-img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e4ddd3 0%, #c8b99e 100%);
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.service-img-wrap:has(img)::before {
  content: 'Antes → Depois';
  position: absolute;
  bottom: 0.6rem;
  left: 0.6rem;
  background: rgba(26, 26, 24, 0.72);
  color: var(--accent-light);
  font-family: 'Jost', sans-serif;
  font-size: 0.54rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  backdrop-filter: blur(6px);
  z-index: 2;
}

.service-img-wrap.service-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 2rem;
}

.service-body {
  padding: 1rem var(--px) 1.25rem;
}

.service-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

.service-body p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.service-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 40px;
}

/* ─── SOBRE ─── */
#sobre {
  padding: var(--section-py) var(--px);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.about-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  height: 400px;
}

.about-img .img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e4ddd3 0%, #c8b99e 100%);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--accent);
  position: relative;
  overflow: hidden;
}

.about-img .img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

.about-img .img-deco {
  display: none;
}

.about-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 7vw, 2.6rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.about-content h2 em {
  font-style: italic;
  color: var(--accent);
}

.about-content p {
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.82;
  color: var(--mid);
  margin-bottom: 0.9rem;
}

.about-cro {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  background: var(--light-warm);
  border: 1px solid rgba(155, 126, 94, 0.2);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--mid);
  margin-top: 0.5rem;
  text-align: center;
}

/* ─── BLOCO CONVERSÃO ─── */
#depoimentos {
  padding: var(--section-py) var(--px);
  background: var(--dark);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.conv-icons {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: nowrap;
}

.conv-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  min-width: 0;
}

.conv-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.conv-icon-item span {
  font-size: 0.62rem;
  font-weight: 400;
  color: rgba(245, 242, 238, 0.5);
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-align: center;
  word-break: break-word;
}

.conv-content {
  max-width: 100%;
  margin: 0 auto;
}

.conv-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.85rem;
}

.conv-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.65rem, 7vw, 2.4rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 1rem;
}

.conv-text {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245, 242, 238, 0.65);
  margin-bottom: 1.75rem;
}

.btn-conv-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 1rem 1.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  width: 100%;
  min-height: var(--touch-min);
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 6px 28px rgba(155, 126, 94, 0.35);
  margin-bottom: 1rem;
}

.btn-conv-cta:active {
  transform: scale(0.97);
}

.conv-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(245, 242, 238, 0.38);
  letter-spacing: 0.02em;
}

/* ─── CONTATO ─── */
#contato {
  padding: var(--section-py) var(--px);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contato-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 6.5vw, 2.4rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.contato-info h2 em {
  font-style: italic;
  color: var(--accent);
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  background: var(--white);
  border: 1px solid rgba(155, 126, 94, 0.12);
  border-radius: var(--radius);
  min-height: var(--touch-min);
}

.info-icon {
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.15rem;
}

.info-item span,
.info-item a {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.5;
  text-decoration: none;
  word-break: break-word;
}

.info-item a {
  color: var(--accent);
  font-weight: 400;
}

.contato-cta {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 2rem var(--px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}

.contato-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
}

.contato-cta p {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245, 242, 238, 0.62);
  line-height: 1.75;
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  color: rgba(245, 242, 238, 0.5);
  padding: 2rem var(--px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

footer .footer-logo img {
  height: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  margin: 0 auto;
}

footer p {
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.6;
}

footer .footer-links {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

footer .footer-links a {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 242, 238, 0.4);
  text-decoration: none;
  min-height: 36px;
  display: flex;
  align-items: center;
}

/* ─── FLOATING WHATSAPP ─── */
.fab-whatsapp {
  position: fixed;
  bottom: 1.25rem;
  right: 1.1rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  animation: pulse 2.5s infinite;
  transition: transform 0.2s;
}

.fab-whatsapp:active {
  transform: scale(0.92);
  animation: none;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 24, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 2rem var(--px) 2.5rem;
  width: 100%;
  max-height: 92dvh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-box::before {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background: rgba(155, 126, 94, 0.28);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--light-warm);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  color: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-tag {
  font-size: 0.63rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}

.modal-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.modal-box p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.modal-input,
.modal-select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1.5px solid rgba(155, 126, 94, 0.25);
  border-radius: 6px;
  background: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--dark);
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  min-height: var(--touch-min);
}

.modal-input:focus,
.modal-select:focus {
  outline: none;
  border-color: var(--accent);
}

.modal-form .btn-primary {
  width: 100%;
  justify-content: center;
  min-height: 54px;
  font-size: 0.86rem;
}

/* ══════════════════════════════════════
   TABLET  (≥ 600px)
══════════════════════════════════════ */
@media (min-width: 600px) {
  :root {
    --px: 2rem;
    --section-py: 4rem;
  }

  nav {
    height: 72px;
    padding: 0 2rem;
  }

  #hero {
    padding-top: 72px;
  }

  .nav-logo img {
    height: 54px;
  }

  #hero {
    flex-direction: row;
    align-items: stretch;
    min-height: 100svh;
  }

  .hero-right {
    order: 1;
    flex: 0 0 46%;
    height: auto;
    aspect-ratio: unset;
    min-height: 400px;
    max-height: none;
  }

  .hero-left {
    order: 0;
    flex: 1;
    padding: 3rem 2rem;
    justify-content: center;
  }

  .hero-btns {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-outline {
    width: auto;
    flex: 1 1 auto;
  }

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

  #region-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .region-text {
    flex: 1;
  }

  .region-cta-btn {
    width: auto;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .conv-icons {
    gap: 2.5rem;
  }

  .conv-icon {
    width: 68px;
    height: 68px;
    font-size: 1.6rem;
  }

  .btn-conv-cta {
    width: auto;
    padding: 1rem 2rem;
  }

  .about-cro {
    justify-content: flex-start;
  }
}

/* ══════════════════════════════════════
   DESKTOP (≥ 900px)
══════════════════════════════════════ */
@media (min-width: 900px) {
  :root {
    --px: 5rem;
    --section-py: 7rem;
  }

  nav {
    padding: 0 5rem;
    height: 80px;
  }

  #hero {
    padding-top: 80px;
  }

  .nav-logo img {
    height: 64px;
  }

  .nav-hamburger {
    display: none;
  }

  .nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    transition: color 0.2s;
  }

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

  .nav-cta {
    background: var(--dark);
    color: var(--cream) !important;
    padding: 0.55rem 1.3rem;
    border-radius: 2px;
    transition: background 0.2s !important;
  }

  .nav-cta:hover {
    background: var(--accent) !important;
    color: var(--white) !important;
  }

  #hero {
    min-height: 100vh;
  }

  .hero-left {
    flex: 1;
    padding: 5rem 4rem 5rem 5rem;
    justify-content: center;
  }

  .hero-left h1 {
    font-size: clamp(3rem, 4.5vw, 5rem);
  }

  .hero-left p {
    max-width: 420px;
    margin-bottom: 2.8rem;
  }

  .hero-btns {
    flex-direction: row;
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-outline {
    width: auto;
    flex: none;
  }

  .hero-right {
    flex: 1;
    max-height: none;
    aspect-ratio: unset;
  }

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

  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  }

  .service-img-wrap img {
    transition: transform 0.5s ease;
  }

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

  #sobre {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-img {
    aspect-ratio: unset;
    height: 500px;
  }

  .about-img .img-deco {
    display: block;
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 55%;
    aspect-ratio: 1;
    background: var(--light-warm);
    border-radius: 4px;
    z-index: -1;
    border: 1px solid rgba(155, 126, 94, 0.15);
  }

  .about-cro {
    justify-content: flex-start;
  }

  #contato {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .btn-conv-cta {
    width: auto;
  }

  .modal-overlay {
    align-items: center;
  }

  .modal-box {
    border-radius: var(--radius);
    max-width: 440px;
    width: 90%;
    transform: translateY(20px);
    max-height: 95vh;
  }

  .modal-box::before {
    display: none;
  }

  .modal-overlay.active .modal-box {
    transform: translateY(0);
  }

  footer {
    flex-direction: row;
    justify-content: space-between;
    padding: 2.2rem 5rem;
    text-align: left;
  }

  footer .footer-logo img {
    margin: 0;
  }
}