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

:root {
  --primary:    #7FAFBD;
  --secondary:  #AFCBD6;
  --accent:     #4F8FA3;
  --bg:         #F4F6F8;
  --white:      #FFFFFF;
  --text:       #2F2F2F;
  --text-muted: #6B6B6B;
  --border:     #E6E6E6;
  --footer-bg:  #3E6F7D;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(79,143,163,0.10);
  --shadow-md:  0 8px 32px rgba(79,143,163,0.15);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
select, input { font-family: inherit; font-size: 0.875rem; color: var(--text); }

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

.section { padding: 90px 0; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
}
.section-header-white h2 { color: var(--white); }
.section-header-white p  { color: rgba(255,255,255,0.85); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(79,143,163,0.30);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79,143,163,0.40);
}

.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid var(--white);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--accent);
}

.btn-header {
  display: inline-block;
  padding: 10px 26px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 12px rgba(127,175,189,0.35);
}
.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(127,175,189,0.45);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-weight: 700; font-size: 1.05rem; color: var(--text); }
.logo-sub  { font-size: 0.7rem; color: var(--text-muted); }

/* Nav */
.nav ul {
  display: flex;
  gap: 32px;
}
.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav a:hover,
.nav a.active { color: var(--primary); }
.nav a:hover::after,
.nav a.active::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #EAF3F6 0%, var(--white) 60%);
  padding: 40px 0 0;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-end;
  position: relative;
}

.hero-text {
  position: relative;
  z-index: 1;
  padding-right: 16px;
  padding-bottom: 60px;
  padding-top: 20px;
}

/* Hero text */
.hero-text h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-text h1 span { color: var(--accent); }

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 500;
}
.hero-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Search bar */
.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 12px 20px;
  margin-top: 24px;
  box-shadow: var(--shadow);
}
.search-bar i { color: var(--text-muted); font-size: 0.95rem; }
.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.875rem;
  color: var(--text);
}
.search-bar input::placeholder { color: var(--text-muted); }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 8px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-align: center;
}

/* Hero image */
.hero-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 5;
  overflow: visible;
  margin-right: -100px;
}

.hero-blob {
  display: none;
}
@keyframes blobAnim {
  0%,100% { border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%; }
  50%      { border-radius: 40% 60% 45% 55% / 55% 45% 50% 50%; }
}

.hero-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 0;
  overflow: visible;
}
.hero-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  transform: translateY(-40px);
}

.hero-circle { display: none; }

/* Badges */
.hero-badge {
  position: absolute;
  z-index: 3;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
}
.hero-badge i { font-size: 1.2rem; color: var(--accent); }
.hero-badge strong { display: block; font-weight: 700; font-size: 0.85rem; color: var(--text); }
.hero-badge span { color: var(--text-muted); font-size: 0.72rem; }
.badge-top    { top: 8%; right: -2%; }
.badge-bottom { bottom: 8%; left: -4%; }

/* Deco pulsos */
.deco {
  position: absolute;
  border-radius: 50%;
  background: var(--secondary);
  opacity: 0.12;
  pointer-events: none;
}
.deco-1 { width: 300px; height: 300px; top: -80px; left: -80px; }
.deco-2 { width: 200px; height: 200px; bottom: -60px; right: -40px; }

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
  background: var(--primary);
  padding: 28px 0;
}

.filter-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-field {
  flex: 1;
  min-width: 160px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 50px;
  padding: 12px 18px;
}
.filter-field i { color: var(--accent); font-size: 0.95rem; flex-shrink: 0; }
.filter-field select,
.filter-field input[type="date"] {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}
.filter-field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.5;
  cursor: pointer;
}

.btn-filter {
  padding: 12px 28px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(79,143,163,0.35);
}
.btn-filter:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79,143,163,0.45);
}

/* ============================================================
   ESPECIALIDADES
   ============================================================ */
.especialidades { background: var(--white); }

.especialidades-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.esp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.esp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}
.esp-icon {
  width: 56px; height: 56px;
  background: #EAF3F6;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  transition: background var(--transition);
}
.esp-card:hover .esp-icon { background: var(--secondary); color: var(--white); }
.esp-card span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

/* ============================================================
   SERVIÇOS
   ============================================================ */
.servicos {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.servicos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.servicos-text { color: var(--white); }
.servicos-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.servicos-text p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.7;
}

.servicos-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.serv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.serv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.serv-icon {
  width: 44px; height: 44px;
  background: #EAF3F6;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.serv-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.serv-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.servicos-image {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.servicos-image img {
  width: 100%; height: 280px;
  object-fit: cover;
}

/* Decorações serviços */
.serv-deco {
  position: absolute;
  pointer-events: none;
}
.serv-deco-heart {
  top: 20px; right: 300px;
  font-size: 2rem;
  color: rgba(255,255,255,0.12);
}
.serv-deco-circle {
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.15);
  bottom: -80px; left: 40%;
}

/* ============================================================
   EQUIPE
   ============================================================ */
.equipe { background: var(--white); }

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

.equipe-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.equipe-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.equipe-img {
  height: 220px;
  overflow: hidden;
}
.equipe-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.equipe-card:hover .equipe-img img { transform: scale(1.05); }

.equipe-info {
  padding: 20px;
}
.equipe-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.equipe-esp {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: #EAF3F6;
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.equipe-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.equipe-social {
  display: flex;
  gap: 10px;
}
.equipe-social a {
  width: 32px; height: 32px;
  background: #EAF3F6;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--accent);
  transition: background var(--transition), color var(--transition);
}
.equipe-social a:hover {
  background: var(--accent);
  color: var(--white);
}

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.como-funciona { background: var(--bg); }

.passos-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.passos-wrapper::-webkit-scrollbar { display: none; }

.passos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  padding-top: 20px;
}

/* linha conectora */
.passos::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(to right, var(--secondary), var(--accent));
  z-index: 0;
}

.passo {
  text-align: center;
  position: relative;
  z-index: 1;
}
.passo-num {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 28px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
}
.passo-icon {
  width: 80px; height: 80px;
  background: var(--white);
  border: 2px solid var(--secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--accent);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
  transition: background var(--transition), color var(--transition);
}
.passo:hover .passo-icon {
  background: var(--accent);
  color: var(--white);
}
.passo h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.passo p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depoimentos {
  background: var(--primary);
}

.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.depo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}
.depo-card:hover { transform: translateY(-4px); }

.depo-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.depo-header img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary);
}
.depo-header strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  display: block;
}
.stars {
  color: #F4B942;
  font-size: 0.75rem;
  margin-top: 3px;
}
.depo-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--white); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--secondary); }

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: #F9FBFC; }
.faq-item.open .faq-question { color: var(--accent); background: #EAF3F6; }
.faq-question i {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  padding: 90px 0;
  text-align: center;
}
.cta-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-inner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
}
.btn-cta {
  display: inline-block;
  padding: 16px 44px;
  background: var(--white);
  color: var(--accent);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.20);
}

/* ============================================================
   CONTATO
   ============================================================ */
.contato {
  background: var(--bg);
}

/* Abas */
.contato-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.contato-tab {
  flex: 1;
  padding: 16px 24px;
  background: var(--white);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s;
  border-bottom: 3px solid transparent;
}
.contato-tab i { font-size: 1rem; }
.contato-tab.active {
  background: var(--white);
  color: var(--accent);
  border-bottom: 3px solid var(--accent);
  font-weight: 600;
}
.contato-tab:not(.active):hover {
  background: #f0f5f7;
  color: var(--heading);
}

/* Painéis */
.contato-panel {
  display: none;
}
.contato-panel.active {
  display: block;
}

/* Painel formulário */
.contato-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 0 auto;
}
.contato-form-wrap h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contato-form-wrap h3 i {
  color: #25D366;
  font-size: 1.4rem;
}
.contato-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--heading);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid #dde3ea;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: #25D366;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

/* Painel info + mapa */
.contato-info-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.contato-info {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.contato-info h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 20px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.info-item:last-child {
  margin-bottom: 0;
}
.info-item > i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 2px;
  min-width: 20px;
  text-align: center;
}
.info-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.info-item strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading);
}
.info-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.contato-mapa {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 300px;
}
.contato-mapa iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
  display: block;
}

@media (max-width: 900px) {
  .contato-info-inner {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contato-tabs {
    max-width: 100%;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--footer-bg);
  color: var(--white);
  padding: 70px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.logo-icon-white {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1rem;
}
.footer-logo span {
  font-size: 1rem;
  font-weight: 700;
}
.footer-col > p {
  font-size: 0.85rem;
  opacity: 0.75;
  line-height: 1.6;
}

.footer-col h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a,
.footer-col ul li {
  font-size: 0.87rem;
  opacity: 0.8;
  transition: opacity var(--transition);
}
.footer-col ul li a:hover { opacity: 1; color: var(--secondary); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact li i { margin-top: 3px; color: var(--secondary); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  opacity: 0.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .especialidades-grid { grid-template-columns: repeat(3, 1fr); }
  .equipe-grid { grid-template-columns: repeat(2, 1fr); }
  .passos-wrapper { margin: 0 -24px; padding: 0 24px; }
  .passos {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
    padding-bottom: 16px;
    padding-top: 20px;
    min-width: max-content;
    position: relative;
  }
  .passos::before {
    display: block;
    top: 60px;
    left: 120px;
    right: 24px;
  }
  .passo {
    width: 200px;
    flex-shrink: 0;
  }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .servicos-image { display: none; }
}

@media (max-width: 900px) {
  .hero {
    overflow: hidden;
    padding-top: 0;
  }
  /* Remove padding do container dentro do hero para imagem ir borda a borda */
  .hero > .container {
    padding-left: 0;
    padding-right: 0;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    text-align: center;
    gap: 0;
  }
  /* Imagem vem primeiro no mobile - centralizada e grande */
  .hero-image {
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin: 0;
    margin-bottom: 12px;
    overflow: visible;
  }
  .hero-text {
    order: 0;
    padding: 0 24px 40px;
  }
  .hero-blob { display: none; }
  .hero-photo {
    width: min(100%, 460px);
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    transform: none !important;
    overflow: visible;
    display: block;
  }
  .hero-photo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
    transform: none !important;
    display: block;
  }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .badge-top, .badge-bottom { display: none; }
  .servicos-inner { grid-template-columns: 1fr; }
  .servicos-text { text-align: center; }
  .depo-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .filter-inner { justify-content: center; }
  .filter-field { min-width: 200px; }
  .hero-text h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .stats { justify-content: center; }
}

@media (max-width: 768px) {
  .nav, .btn-header { display: none; }
  .hamburger { display: flex; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    padding: 16px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 999;
  }
  .nav.open ul {
    flex-direction: column;
    gap: 0;
  }
  .nav.open ul li a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .especialidades-grid { grid-template-columns: repeat(2, 1fr); }
  .equipe-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .passos-wrapper { margin: 0 -24px; padding: 0 24px; }
  .passos {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
    padding-bottom: 16px;
    padding-top: 20px;
    min-width: max-content;
    position: relative;
  }
  .passos::before { display: none; }
  .passo { width: 180px; flex-shrink: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .servicos-cards { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 1.6rem; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .especialidades-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-field { min-width: 100%; }
  .hero-photo { width: min(100%, 380px); height: auto; }
  .hero-blob { width: 210px; height: 210px; }
}
