/* =========================================
   VARIÁVEIS — tema Clínica DOM
   ========================================= */
@font-face {
  font-family: 'Bogart Black';
  src: url('fonts/bogart/Bogart-Black-trial.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bogart Light';
  src: url('fonts/bogart/Bogart-Light-trial.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --cor-primaria: #1a4fc4;
  --cor-primaria-escura: #0f3490;
  --cor-secundaria: #f4f8ff;
  --cor-destaque: #25d366;
  --cor-destaque-hover: #1eb858;
  --cor-texto: #1a1a2e;
  --cor-texto-suave: #5a6480;
  --cor-texto-claro: #ffffff;
  --cor-fundo: #ffffff;
  --cor-acento: #e8f0ff;
  --fonte-titulo: 'Bogart Black', 'Playfair Display', serif;
  --fonte-corpo: 'Bogart Light', 'Lato', sans-serif;
  --raio-borda: 16px;
  --raio-borda-lg: 28px;
  --sombra: 0 8px 32px rgba(26,79,196,0.10);
  --sombra-hover: 0 20px 60px rgba(26,79,196,0.20);
  --transicao: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fonte-corpo);
  color: var(--cor-texto);
  background-color: var(--cor-fundo);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3 {
  font-family: var(--fonte-titulo);
}

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

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

/* =========================================
   SCROLL ANIMATIONS — reveal ao rolar
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =========================================
   HEADER
   ========================================= */
#header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 16px rgba(26,79,196,0.08);
  padding: 14px 0;
  transition: box-shadow var(--transicao), background-color var(--transicao);
}

#header.scrolled {
  box-shadow: 0 6px 28px rgba(26,79,196,0.14);
  background-color: rgba(255,255,255,0.97);
}

#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

#header .logo h1 {
  font-size: 1.5rem;
  color: var(--cor-primaria);
}

#header .logo img {
  max-height: 52px;
  width: auto;
  display: block;
}

#header nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

#header nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
}

#header nav ul li a {
  font-family: var(--fonte-corpo);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--cor-texto);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transicao);
}

#header nav ul li a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--cor-primaria);
  border-radius: 2px;
  transition: width var(--transicao);
}

#header nav ul li a:hover {
  color: var(--cor-primaria);
}

#header nav ul li a:hover::after {
  width: 100%;
}

/* =========================================
   HERO
   ========================================= */
#hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 60px 80px 60px;
  background: linear-gradient(135deg, #f4f8ff 0%, #e8f0ff 60%, #dceeff 100%);
  gap: 60px;
  position: relative;
  overflow: hidden;
  min-height: 88vh;
}

/* Blob decorativo de fundo */
#hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(26,79,196,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: blobFloat 8s ease-in-out infinite;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(37,211,102,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.04); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}

.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
  order: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,79,196,0.10);
  color: var(--cor-primaria);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(26,79,196,0.18);
}

.hero-badge span {
  width: 8px; height: 8px;
  background: var(--cor-destaque);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.35); }
}

#hero h2 {
  font-size: 3.2rem;
  color: var(--cor-primaria-escura);
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

#hero h2 em {
  font-style: italic;
  color: var(--cor-primaria);
}

.hero-right p {
  font-size: 1.08rem;
  color: var(--cor-texto-suave);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  order: 1;
  position: relative;
  z-index: 2;
}

.hero-img-frame {
  position: relative;
  display: inline-block;
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
  background: linear-gradient(135deg, rgba(26,79,196,0.18), rgba(37,211,102,0.12));
  z-index: -1;
  animation: morphBlob 9s ease-in-out infinite;
}

@keyframes morphBlob {
  0%, 100% { border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%; }
  25% { border-radius: 58% 42% 38% 62% / 44% 56% 44% 56%; }
  50% { border-radius: 46% 54% 56% 44% / 62% 38% 62% 38%; }
  75% { border-radius: 36% 64% 50% 50% / 50% 42% 58% 50%; }
}

.hero-left img {
  max-width: 400px;
  height: 350px;
  object-fit: cover;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  box-shadow: 0 24px 60px rgba(26,79,196,0.22);
  transition: border-radius 0.8s ease;
}

/* =========================================
   BOTÃO WHATSAPP
   ========================================= */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #1eb858);
  color: #fff;
  font-family: var(--fonte-corpo);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(37,211,102,0.38);
  transition: transform var(--transicao), box-shadow var(--transicao);
  position: relative;
  overflow: hidden;
}

.btn-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-whatsapp:hover::before {
  transform: translateX(0);
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(37,211,102,0.48);
}

/* =========================================
   SERVIÇOS
   ========================================= */
#servicos {
  padding: 100px 0;
  background: var(--cor-secundaria);
  position: relative;
}

#servicos::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cor-primaria), transparent);
}

.section-label {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cor-primaria);
  margin-bottom: 12px;
}

#servicos h2,
#equipe .equipe-header h2,
#sobre h2,
#contato h2 {
  font-size: 2.2rem;
  color: var(--cor-primaria);
  margin-bottom: 56px;
  text-align: center;
  letter-spacing: -0.01em;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

/* Efeito flutuante nos cards */
.card {
  background: var(--cor-fundo);
  border-radius: var(--raio-borda-lg);
  padding: 40px 28px 36px;
  box-shadow: 0 4px 24px rgba(26,79,196,0.07);
  text-align: center;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1), box-shadow 0.45s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(26,79,196,0.07);
  animation: cardFloat 5s ease-in-out infinite;
}

.card:nth-child(1) { animation-delay: 0s; }
.card:nth-child(2) { animation-delay: 1.6s; }
.card:nth-child(3) { animation-delay: 3.2s; }

@keyframes cardFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cor-primaria), #5b8df5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 4px 4px 0 0;
}

.card:hover {
  transform: translateY(-16px) !important;
  box-shadow: 0 24px 60px rgba(26,79,196,0.18);
  animation-play-state: paused;
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover .card-icon {
  transform: scale(1.2) rotate(-5deg);
}

.card h3 {
  font-size: 1.25rem;
  color: var(--cor-primaria);
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  color: var(--cor-texto-suave);
  line-height: 1.7;
}

/* =========================================
   NOSSA EQUIPE
   ========================================= */
#equipe {
  padding: 100px 0;
  background: var(--cor-fundo);
  position: relative;
  overflow: hidden;
}

#equipe::after {
  content: '';
  position: absolute;
  bottom: -180px; right: -180px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,79,196,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

#equipe .equipe-header {
  text-align: center;
  margin-bottom: 56px;
}

#equipe .equipe-header h2 {
  font-size: 2.2rem;
  color: var(--cor-primaria);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

#equipe .equipe-header p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--cor-texto-suave);
  font-size: 1rem;
  line-height: 1.7;
}

#equipe .equipe-card {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f4f8ff 0%, #ffffff 100%);
  border-radius: var(--raio-borda-lg);
  box-shadow: 0 12px 48px rgba(26,79,196,0.12);
  padding: 40px;
  position: relative;
  border: 1.5px solid rgba(26,79,196,0.08);
}

#equipe .equipe-slider {
  position: relative;
  overflow: hidden;
}

#equipe .equipe-slide {
  display: none;
  align-items: center;
  gap: 40px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#equipe .equipe-slide.active {
  display: flex;
  opacity: 1;
  animation: slideFadeIn 0.55s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes slideFadeIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

#equipe .equipe-slide img {
  width: 45%;
  max-width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(26,79,196,0.15);
  flex-shrink: 0;
}

#equipe .slide-text {
  flex: 1;
  text-align: left;
}

#equipe .slide-text h3 {
  font-size: 1.7rem;
  margin-bottom: 14px;
  color: var(--cor-primaria-escura);
}

#equipe .slide-text p {
  font-size: 1rem;
  color: var(--cor-texto-suave);
  line-height: 1.8;
}

#equipe .equipe-controls {
  position: absolute;
  top: 50%;
  left: -20px; right: -20px;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

#equipe .equipe-controls button {
  pointer-events: auto;
  width: 48px; height: 48px;
  background: var(--cor-fundo);
  color: var(--cor-primaria);
  border: 2px solid rgba(26,79,196,0.18);
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(26,79,196,0.14);
  transition: background-color var(--transicao), transform var(--transicao), box-shadow var(--transicao);
}

#equipe .equipe-controls button:hover {
  background: var(--cor-primaria);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(26,79,196,0.3);
}

.equipe-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.equipe-dots .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(26,79,196,0.2);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.equipe-dots .dot.active {
  background: var(--cor-primaria);
  transform: scale(1.3);
}

/* =========================================
   SOBRE
   ========================================= */
#sobre {
  padding: 100px 0;
  background: linear-gradient(135deg, #f4f8ff 0%, #e8f0ff 100%);
  position: relative;
}

#sobre::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cor-primaria), transparent);
}

#sobre .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

#sobre .sobre-text {
  flex: 1;
  min-width: 280px;
}

#sobre h2 {
  font-size: 2.2rem;
  color: var(--cor-primaria);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

#sobre p {
  font-size: 1.05rem;
  color: var(--cor-texto-suave);
  max-width: 520px;
  line-height: 1.85;
}

#sobre .sobre-image-right {
  flex: 1;
  min-width: 280px;
  max-width: 480px;
  position: relative;
}

#sobre .sobre-image-right::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(26,79,196,0.14), rgba(37,211,102,0.10));
  z-index: 0;
  transition: inset var(--transicao);
}

#sobre .sobre-image-right:hover::before {
  inset: -20px;
}

#sobre .sobre-image-right img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(26,79,196,0.16);
  transition: transform var(--transicao);
}

#sobre .sobre-image-right:hover img {
  transform: scale(1.02);
}

/* =========================================
   CONTATO
   ========================================= */
#contato {
  padding: 100px 0;
  background: var(--cor-fundo);
  text-align: center;
  position: relative;
  font-family: Arial, sans-serif;
}

#contato::after {
  content: '';
  position: absolute;
  top: -160px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,211,102,0.05) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

#contato h2 {
  font-size: 2.2rem;
  color: var(--cor-primaria);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

#contato > .container > p {
  font-size: 1.05rem;
  color: var(--cor-texto-suave);
  margin-bottom: 36px;
}

.info-contato {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  font-size: 0.97rem;
  color: var(--cor-texto-suave);
}

.info-contato p {
  background: var(--cor-secundaria);
  padding: 12px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(26,79,196,0.09);
  transition: transform var(--transicao), box-shadow var(--transicao);
}

.info-contato p:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,79,196,0.10);
}

/* =========================================
   BOTÃO FLUTUANTE WHATSAPP
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: linear-gradient(135deg, #25d366, #1eb858);
  color: #fff;
  width: 62px; height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.50);
  transition: transform var(--transicao), box-shadow var(--transicao);
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: floatRing 2.5s ease-in-out infinite;
}

@keyframes floatRing {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.18); opacity: 0; }
}

.whatsapp-float:hover {
  transform: scale(1.12) rotate(8deg);
  box-shadow: 0 14px 40px rgba(37,211,102,0.60);
}

/* =========================================
   FOOTER
   ========================================= */
#footer {
  background: linear-gradient(135deg, var(--cor-primaria-escura), var(--cor-primaria));
  color: rgba(255,255,255,0.85);
  padding: 28px 0;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

/* =========================================
   RESPONSIVO — TABLET (≤ 900px)
   ========================================= */
@media (max-width: 900px) {
  .container { padding: 0 20px; }

  /* Header: empilha logo + nav */
  #header .container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  #header nav {
    width: 100%;
    justify-content: center;
  }

  #header nav ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  /* Hero: coluna, texto primeiro */
  #hero {
    flex-direction: column;
    padding: 56px 20px 48px;
    text-align: center;
    min-height: auto;
    gap: 36px;
  }

  .hero-right {
    order: 1;
    align-items: center;
  }

  .hero-left {
    order: 2;
  }

  .hero-right p {
    max-width: 100%;
    margin: 0 auto 28px;
  }

  #hero h2 { font-size: 2.4rem; }

  .hero-left img {
    max-width: 260px;
    height: 280px;
  }

  /* Sobre: empilha */
  #sobre .container {
    flex-direction: column;
    gap: 28px;
  }

  #sobre .sobre-image-right {
    max-width: 100%;
    width: 100%;
  }

  #sobre .sobre-image-right video {
    width: 100%;
    height: auto;
    border-radius: 16px;
  }

  #sobre p { max-width: 100%; }

  /* Equipe: slider em coluna */
  #equipe .equipe-slide.active {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #equipe .equipe-slide img {
    width: 100%;
    max-width: 340px;
    height: 280px;
    margin: 0 auto 20px;
  }

  #equipe .slide-text { text-align: center; }

  #equipe .equipe-controls {
    position: static;
    transform: none;
    margin-top: 20px;
    padding: 0;
  }
}

/* =========================================
   RESPONSIVO — MOBILE (≤ 600px)
   ========================================= */
@media (max-width: 600px) {
  .container { padding: 0 16px; }

  /* Header: menu compacto em linha única */
  #header { padding: 10px 0; }

  #header .logo img { max-height: 42px; }

  #header nav ul {
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
    justify-content: flex-start;
  }

  #header nav ul li a {
    font-size: 0.75rem;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }

  /* Hero */
  #hero {
    padding: 42px 16px 36px;
    gap: 24px;
  }

  #hero h2 { font-size: 1.9rem; }

  .hero-right p {
    font-size: 0.97rem;
    margin-bottom: 20px;
  }

  .hero-badge { font-size: 0.74rem; padding: 5px 13px; }

  .hero-left img {
    max-width: 220px;
    height: 240px;
  }

  .btn-whatsapp {
    font-size: 0.92rem;
    padding: 13px 24px;
    width: 100%;
    justify-content: center;
  }

  /* Serviços */
  #servicos { padding: 64px 0; }
  #servicos h2 { font-size: 1.8rem; margin-bottom: 32px; }

  .cards { grid-template-columns: 1fr; gap: 18px; }

  .card {
    padding: 28px 20px;
    /* Desativa flutuação no mobile (consome bateria e distrai) */
    animation: none;
  }

  /* Equipe */
  #equipe { padding: 64px 0; }
  #equipe .equipe-header h2 { font-size: 1.8rem; }

  #equipe .equipe-card {
    padding: 24px 16px;
    border-radius: 20px;
  }

  #equipe .equipe-slide img {
    max-width: 100%;
    height: 330px;
  }

  #equipe .slide-text h3 { font-size: 1.3rem; }
  #equipe .slide-text p { font-size: 0.93rem; }

  #equipe .equipe-controls button {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .equipe-dots { margin-top: 18px; }

  /* Sobre */
  #sobre { padding: 64px 0; }
  #sobre h2 { font-size: 1.8rem; }
  #sobre p { font-size: 0.97rem; }

  #sobre .sobre-image-right::before { inset: -8px; }

  #sobre .sobre-image-right video {
    border-radius: 14px;
  }

  /* Contato */
  #contato { padding: 64px 0; }
  #contato h2 { font-size: 1.8rem; }
  #contato > .container > p { font-size: 0.97rem; margin-bottom: 24px; }

  .info-contato {
    gap: 10px;
    margin-top: 28px;
  }

  .info-contato p {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
    padding: 11px 16px;
    text-align: center;
    /* Permite quebra em telas muito estreitas */
    white-space: normal;
    word-break: break-word;
  }

  /* Botão flutuante menor */
  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 20px;
    right: 20px;
  }
}

/* =========================================
   RESPONSIVO — MOBILE PEQUENO (≤ 380px)
   ========================================= */
@media (max-width: 380px) {
  #hero h2 { font-size: 1.65rem; }

  .hero-left img {
    max-width: 180px;
    height: 200px;
  }

  #header nav ul li a { font-size: 0.68rem; }

  .btn-whatsapp { font-size: 0.87rem; padding: 12px 18px; }
}