/* ========================================
   CSS Variables & Reset
   ======================================== */
:root {
  --primary: #224937;
  --secondary: #A38666;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --text: #2D2D2D;
  --text-light: #666666;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --container: 1200px;
  --header-h: 80px;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(34, 73, 55, 0.08);
  backdrop-filter: blur(12px);
  transition: background var(--transition), box-shadow var(--transition);
}

.header--scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo__ordinal {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.logo__text {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
}

.logo__text small {
  font-weight: 400;
  font-size: 12px;
  color: var(--secondary);
}

/* Nav */
.header__nav {
  display: flex;
}

.nav__list {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  transition: color var(--transition);
}

.nav__link:hover {
  color: var(--secondary);
}

.nav__chevron {
  transition: transform var(--transition);
}

/* Dropdowns */
.nav__item--dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
}

.nav__item--dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__item--dropdown:hover .nav__chevron {
  transform: rotate(180deg);
}

.dropdown__link {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  color: var(--text);
  transition: all var(--transition);
}

.dropdown__link:hover {
  background: var(--off-white);
  color: var(--secondary);
  padding-left: 28px;
}

/* Header WhatsApp button */
.header__whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition);
}

.header__whatsapp:hover {
  background: #1a3a2b;
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: all var(--transition);
  border-radius: 2px;
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn--primary:hover {
  background: #1a3a2b;
  border-color: #1a3a2b;
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn--full {
  width: 100%;
}

/* ========================================
   Hero
   ======================================== */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-top: var(--header-h);
  padding-bottom: 0;
  min-height: clamp(600px, 88vh, 780px);
  display: flex;
  align-items: center;
  background: var(--primary);
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
}

.hero__content {
  max-width: 660px;
  padding: 72px 0 64px;
}

.hero__carousel,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__carousel {
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1s ease, transform 6s ease;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 37, 29, 0.86) 0%, rgba(18, 37, 29, 0.62) 48%, rgba(18, 37, 29, 0.24) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #dec9ad;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.24);
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: #dec9ad;
}

.hero__subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 570px;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.24);
}

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

.hero .btn--primary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.hero .btn--primary:hover {
  background: var(--off-white);
  border-color: var(--off-white);
}

.hero .btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

.hero .btn--outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* Hero text entrance animations */
.hero-anim {
  opacity: 0;
  transform: translateY(25px);
  animation: heroTextIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-anim {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .hero__slide {
    transform: none;
    transition: none;
  }
}

/* ========================================
   Section Header
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-header__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--primary);
}

/* ========================================
   Consultas
   ======================================== */
.consultas {
  padding: 80px 0;
}

.consultas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.consulta-card {
  display: block;
  padding: 40px;
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  transition: all var(--transition);
  background: var(--white);
}

.consulta-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.consulta-card__icon {
  margin-bottom: 20px;
}

.consulta-card__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.consulta-card__desc {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.consulta-card__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary);
  transition: color var(--transition);
}

.consulta-card:hover .consulta-card__link {
  color: var(--primary);
}

.section-header--light .section-header__label {
  color: #dec9ad;
}

.section-header--light .section-header__title {
  color: var(--white);
}

.consultas--dark {
  background: var(--primary);
}

.consultas--dark .consulta-card {
  background: var(--off-white);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.consultas--dark .consulta-card:hover {
  border-color: #dec9ad;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
}

.consultas--dark .consulta-card__icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(34, 73, 55, 0.12);
}

.consultas--dark .consulta-card__link {
  color: var(--secondary);
}

.consultas--split {
  background: var(--off-white);
}

.consultas-split {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: 32px;
  align-items: stretch;
}

.consultas-split__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 48px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--primary);
  box-shadow: var(--shadow);
}

.consultas-split__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #dec9ad;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.consultas-split__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.3vw, 46px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 22px;
}

.consultas-split__text {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
  max-width: 360px;
}

.consultas-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.consulta-card--compact {
  min-height: 100%;
  padding: 28px;
  border-left: 4px solid var(--secondary);
}

.consulta-card--compact .consulta-card__icon {
  margin-bottom: 16px;
}

.consulta-card--compact .consulta-card__icon svg {
  width: 40px;
  height: 40px;
}

.consulta-card--compact .consulta-card__title {
  font-size: 21px;
  line-height: 1.2;
}

.consulta-card--compact .consulta-card__desc {
  font-size: 14px;
  margin-bottom: 16px;
}

/* ========================================
   Serviços
   ======================================== */
.servicos {
  padding: 100px 0;
  background: var(--off-white);
}

.servicos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.servico-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.servico-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(163, 134, 102, 0.2);
  transform: translateY(-4px);
}

.servico-card__icon {
  margin-bottom: 20px;
}

.servico-card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.servico-card__desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.servico-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  transition: color var(--transition);
}

.servico-card__link:hover {
  color: var(--primary);
}

/* ========================================
   Contato
   ======================================== */
.contato {
  padding: 100px 0;
}

.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contato__info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.contato__info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border-radius: 12px;
}

.contato__info-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.contato__info-item p {
  font-size: 14px;
  color: var(--text-light);
}

/* Form */
.contato__form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form__group {
  position: relative;
}

.form__group input,
.form__group textarea,
.form__group select {
  width: 100%;
  padding: 16px 0 12px;
  border: none;
  border-bottom: 1.5px solid #ddd;
  background: transparent;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  font-size: 15px;
}

.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  border-bottom-color: var(--primary);
}

.form__group label {
  position: absolute;
  left: 0;
  top: 16px;
  font-size: 15px;
  color: var(--text-light);
  pointer-events: none;
  transition: all var(--transition);
}

.form__group input:focus ~ label,
.form__group input:not(:placeholder-shown) ~ label,
.form__group textarea:focus ~ label,
.form__group textarea:not(:placeholder-shown) ~ label,
.form__group select:focus ~ label,
.form__group select:valid ~ label {
  top: -4px;
  font-size: 12px;
  color: var(--primary);
}

.form__group select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form__group select ~ label {
  top: -4px;
  font-size: 12px;
  color: var(--primary);
}

.form__group textarea {
  resize: vertical;
  min-height: 100px;
}

.form__group select option[value=""][disabled] {
  display: none;
}

/* ========================================
   Localização
   ======================================== */
.localizacao {
  padding: 100px 0;
  background: var(--off-white);
}

.localizacao__endereco {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 32px;
  text-align: center;
}

.localizacao__mapa {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.localizacao__mapa iframe {
  display: block;
  border-radius: var(--radius);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer .logo__ordinal,
.footer .logo__text {
  color: var(--white);
}

.footer .logo__text small {
  color: var(--secondary);
}

.footer__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-top: 20px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--secondary);
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   WhatsApp Float
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 998;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ========================================
   Service Page - Hero
   ======================================== */
.service-hero {
  background: var(--off-white);
  padding: 140px 0 60px;
}

.service-hero__breadcrumb {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.service-hero__breadcrumb a {
  color: var(--secondary);
  transition: color var(--transition);
}

.service-hero__breadcrumb a:hover {
  color: var(--primary);
}

.service-hero__breadcrumb span {
  margin: 0 8px;
  color: #ccc;
}

.service-hero__icon {
  margin-bottom: 20px;
}

.service-hero__icon svg {
  width: 64px;
  height: 64px;
}

.service-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.service-hero__desc {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin-top: 16px;
  line-height: 1.7;
}

/* ========================================
   Service Page - Content
   ======================================== */
.service-content {
  padding: 80px 0;
}

.service-content h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

.service-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 720px;
}

.service-content__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.service-content__docs {
  list-style: none;
  padding: 0;
}

.service-content__docs li {
  position: relative;
  padding: 12px 0 12px 36px;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

.service-content__docs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23A38666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.service-content__docs li:last-child {
  border-bottom: none;
}

/* ========================================
   Service Page - CTA
   ======================================== */
.service-cta {
  background: var(--primary);
  padding: 80px 0;
  text-align: center;
}

.service-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.service-cta__desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.service-cta .btn--outline {
  color: var(--white);
  border-color: var(--white);
}

.service-cta .btn--outline:hover {
  background: var(--white);
  color: var(--primary);
}

.service-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-cta .btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-cta .btn--whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
}

/* Service page responsive */
@media (max-width: 767px) {
  .service-hero {
    padding: 110px 0 40px;
  }

  .service-content__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-cta {
    padding: 60px 0;
  }
}

/* ========================================
   Animations
   ======================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Responsive
   ======================================== */

/* Tablet */
@media (max-width: 1023px) {
  .hero {
    min-height: clamp(560px, 82vh, 700px);
  }

  .hero__inner {
    justify-content: center;
    text-align: center;
  }

  .hero__content {
    margin: 0 auto;
    padding: 64px 0 56px;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(18, 37, 29, 0.72) 0%, rgba(18, 37, 29, 0.76) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.12) 100%);
  }

  .hero__subtitle {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .consultas-split {
    grid-template-columns: 1fr;
  }

  .consultas-split__intro {
    text-align: center;
    align-items: center;
  }

  .consultas-split__text {
    max-width: 620px;
  }

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

  .contato__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --header-h: 68px;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    padding: 100px 32px 32px;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    overflow-y: auto;
    z-index: 1000;
  }

  .header__nav.active {
    right: 0;
  }

  .mobile-overlay.active {
    display: block;
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
  }

  .nav__link {
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
    justify-content: space-between;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease;
  }

  .nav__item--dropdown.open .dropdown {
    max-height: 300px;
    padding: 4px 0;
  }

  .nav__item--dropdown.open .nav__chevron {
    transform: rotate(180deg);
  }

  .nav__item--dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    padding: 0;
  }

  .nav__item--dropdown:hover .nav__chevron {
    transform: none;
  }

  .nav__item--dropdown.open:hover .dropdown {
    max-height: 300px;
    padding: 4px 0;
  }

  .nav__item--dropdown.open:hover .nav__chevron {
    transform: rotate(180deg);
  }

  .header__hamburger {
    display: flex;
  }

  .header__whatsapp span {
    display: none;
  }

  .header__whatsapp {
    padding: 10px;
    border-radius: 50%;
  }

  .hero {
    padding-top: var(--header-h);
    min-height: 620px;
  }

  .hero__content {
    padding: 48px 0 44px;
  }

  .hero__title {
    font-size: 40px;
  }

  .hero__subtitle {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .consultas__grid {
    grid-template-columns: 1fr;
  }

  .consultas {
    padding: 64px 0;
  }

  .consultas-split {
    gap: 20px;
  }

  .consultas-split__intro {
    padding: 32px 24px;
  }

  .consultas-split__title {
    font-size: 32px;
  }

  .consultas-split__grid {
    grid-template-columns: 1fr;
  }

  .consulta-card,
  .consulta-card--compact {
    padding: 28px;
  }

  .consultas--dark .consulta-card__icon {
    width: 60px;
    height: 60px;
  }

  .servicos__grid {
    grid-template-columns: 1fr;
  }

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

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

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