@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Sora', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #222;
}

.top-bar {
  background-color: #D5A4A9 !important;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 100;
  padding: 2px 0;
  letter-spacing: 2px;
  font-family: 'Sora', sans-serif;
  animation: fadeIn 0.8s ease;
  position: relative;
  z-index: 20;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

/* Header e navegação */
.header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(212, 164, 169, 0.08);
  position: sticky;
  top: 0;
  z-index: 10;
  animation: fadeDown 0.7s ease;
  transition: background 0.3s, backdrop-filter 0.3s;
  border-bottom: none;
}
.header::after {
  content: '';
  display: none;
}
.header.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px) saturate(1.2);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
}
.header.scrolled::after {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(213,164,169,0) 0%, #D5A4A9 50%, rgba(213,164,169,0) 100%);
  opacity: 0.35;
  content: '';
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.logo {
  font-weight: 700;
  font-size: 1.3rem;
  color: #7D7D7D;
  letter-spacing: 1px;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.nav a {
  color: #7D7D7D;
  text-decoration: none;
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  transition: color 0.2s;
  position: relative;
}
.nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #D5A4A9;
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -4px;
}
.nav a:hover::after {
  width: 100%;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #D5A4A9;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative !important;
  min-height: 420px;
  height: 100vh;
  max-height: 900px;
  display: block;
  padding: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  background: #fff !important;
  background-image: none !important;
  z-index: 2;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.99);
  transition: opacity 1.5s cubic-bezier(0.4,0,0.2,1), transform 1.5s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-size: cover;
  background-position: center;
  z-index: 1;
  min-height: 420px;
  height: 100vh;
  max-height: 900px;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 2;
  transform: scale(1);
}
.hero-content {
  position: relative;
  z-index: 3;
  flex: 1 1 500px;
  max-width: 600px;
  text-align: left;
  margin-left: 5%;
}
.hero-section .hero-content h1 {
  font-size: 2.8rem;
  color: #7D7D7D;
  margin-bottom: 1rem;
  font-weight: 600;
}
.hero-content p {
  font-size: 1.1rem;
  color: #7D7D7D;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.hero-img {
  flex: 1 1 400px;
  margin-right: 5%;
}
.hero-img img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(32, 80, 114, 0.08);
}

.btn, .btn-especialista, .tratamento-btn {
  text-decoration: none !important;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #D5A4A9;
  color: #fff;
  font-weight: 500;
  border-radius: 5px;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}
.btn:hover {
  background-color: #b88b8f;
}

.hero-section .btn {
  animation: btn-pulse 2.2s infinite cubic-bezier(0.4,0,0.2,1);
  transition: filter 0.2s, box-shadow 0.2s, transform 0.18s;
}
.hero-section .btn:hover {
  filter: brightness(1.08);
  box-shadow: 0 4px 18px rgba(213, 164, 169, 0.18);
  transform: scale(1.045);
  animation-play-state: paused;
}
@keyframes btn-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.035); }
  100% { transform: scale(1); }
}

.btn:not(.hero-section .btn), .btn-especialista, .tratamento-btn {
  transition: transform 0.18s cubic-bezier(0.4,0,0.2,1), box-shadow 0.18s;
  animation: btn-pulse 2.2s infinite cubic-bezier(0.4,0,0.2,1);
}
.btn:not(.hero-section .btn):hover, .btn-especialista:hover, .tratamento-btn:hover {
  transform: scale(1.045);
  box-shadow: 0 4px 18px rgba(213, 164, 169, 0.18);
  animation-play-state: paused;
}

/* Sintomas e perigos */
.bg-soft-pattern {
  background-color: #F4F4F6;
  background-image: url('data:image/svg+xml;utf8,<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="120" height="120" fill="none"/><circle cx="60" cy="60" r="56" stroke="%23D5A4A9" stroke-width="1.5" opacity="0.16"/><circle cx="60" cy="60" r="36" stroke="%237D7D7D" stroke-width="1.5" opacity="0.13"/><circle cx="60" cy="60" r="16" stroke="%237D7D7D" stroke-width="1.5" opacity="0.09"/></svg>');
  background-repeat: repeat;
  background-size: 180px 180px;
}
.rainbow-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.13;
  filter: blur(14px);
  background: linear-gradient(120deg, #F3D7DF 0%, #F6E6EB 30%, #fff 60%, #F9E6EC 100%);
  background-size: 200% 200%;
  animation: rainbowMove 10s linear infinite;
}
@keyframes rainbowMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.marble-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  min-height: 100%;
  min-width: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.30;
  background: url('images/marmore.avif') center center/cover no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
}
.sintomas-section {
  position: relative;
  z-index: 3;
  background: #fff;
  padding: 3rem 0 2rem 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.sintomas-section .container {
  position: relative;
  z-index: 2;
}
.sintomas-section h2 {
  color: #D5A4A9;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.2px;
}
.sintomas-list, .perigos-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.sintomas-list {
  position: relative;
  z-index: 10;
  margin-top: -120px;
  margin-bottom: 2rem;
}
.sintoma {
  background: rgba(245, 245, 245, 0.65);
  color: #D5A4A9;
  padding: 2.2rem 1.5rem 1.2rem 1.5rem;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1.18rem;
  box-shadow: 0 6px 24px 0 rgba(32, 80, 114, 0.10), 0 1.5px 6px 0 rgba(213, 164, 169, 0.10);
  width: 180px;
  height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: box-shadow 0.2s, transform 0.22s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  z-index: 1;
}
.sintoma:hover {
  transform: scale(1.09);
  box-shadow: 0 16px 40px 0 rgba(32, 80, 114, 0.16), 0 4px 16px 0 rgba(213, 164, 169, 0.16);
  z-index: 2;
}
.sintoma img {
  width: 140px !important;
  height: 140px !important;
  margin-bottom: 16px !important;
}
.sintoma span {
  font-size: 1.18rem;
  color: #7D7D7D;
  font-weight: 600;
  text-align: center;
  margin-top: 0;
  letter-spacing: 0.5px;
}
.perigo {
  border: 1px solid #D5A4A9;
  border-radius: 14px;
  background: #F5F5F5;
  color: #D5A4A9;
  padding: 1rem 0.5rem;
  font-size: 1.18rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(213, 164, 169, 0.10), 0 1.5px 6px 0 rgba(32, 80, 114, 0.07);
  transition: box-shadow 0.18s, transform 0.18s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
}
.perigo::before,
.perigo::after,
.perigo svg.light-border {
  display: none !important;
}
.perigo:hover {
  box-shadow: 0 8px 24px rgba(213, 164, 169, 0.18), 0 2px 8px 0 rgba(32, 80, 114, 0.10);
  transform: translateY(-4px) scale(1.04);
  cursor: pointer;
}
.perigo-explicacao {
  display: none;
  background: #fff;
  color: #7D7D7D;
  font-size: 0.97rem;
  font-weight: 400;
  margin-top: 10px;
  border-radius: 7px;
  box-shadow: 0 2px 8px rgba(213, 164, 169, 0.10);
  padding: 0.7rem 1rem;
  border-left: 3px solid #D5A4A9;
  animation: perigoExpand 0.22s cubic-bezier(0.4,0,0.2,1);
}
@keyframes perigoExpand {
  from { opacity: 0; transform: scaleY(0.95); }
  to   { opacity: 1; transform: scaleY(1); }
}
.perigo-icone {
  color: #D5A4A9;
  font-size: 1.18em;
  margin-left: 6px;
  vertical-align: middle;
  cursor: pointer;
  transition: color 0.2s;
}
.perigo:hover .perigo-icone {
  color: #b88b8f;
}

/* Equipe */
.equipe-section {
  background: #D5A4A9;
  position: relative;
  padding: 3rem 0 2rem 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  overflow: hidden;
}
.equipe-section .marble-bg {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  background: url('images/marmore.avif') center center/cover no-repeat;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.equipe-section .container {
  position: relative;
  z-index: 1;
  text-align: center;
  display: block;
  padding: 0 2rem;
}
.equipe-section h2 {
  color: #fff !important;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.equipe-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 320px;
  width: 100%;
}
.especialista {
  background: rgba(255,255,255,0.85);
  color: #205072;
  padding: 1rem 2rem;
  border-radius: 18px;
  font-weight: 500;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(32, 80, 114, 0.08);
  text-align: center;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: visible;
  border: 2px solid #D5A4A9;
  transition: transform 0.22s cubic-bezier(0.4,0,0.2,1), box-shadow 0.22s;
  width: 260px;
  height: 370px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
}
.especialista::before {
  display: none !important;
}
.especialista::after {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border-radius: 12px;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(120deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.7) 40%, rgba(255,255,255,0.0) 70%);
  opacity: 0.7;
  animation: reflexoBranco 2.5s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  mask:
    linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  box-sizing: border-box;
  padding: 0;
}
@keyframes reflexoBranco {
  0% { background-position: -80px 0; }
  100% { background-position: 220px 0; }
}

/* Tratamentos */
.tratamentos-section {
  background: #fff;
  position: relative;
  padding: 3rem 0 2rem 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  overflow: hidden;
}
.tratamentos-section .marble-bg {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  background: url('images/marmore.avif') center center/cover no-repeat;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.tratamentos-section .container {
  position: relative;
  z-index: 1;
}
.tratamentos-section h2 {
  color: #D5A4A9 !important;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.tratamentos-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.tratamento {
  background: #F5F5F5;
  color: #205072;
  padding: 1.5rem 2rem;
  border-radius: 10px;
  max-width: 350px;
  box-shadow: 0 2px 8px rgba(213, 164, 169, 0.05);
}
.tratamento h3 {
  margin-top: 0;
  color: #D5A4A9;
  font-size: 1.1rem;
}

/* Estrutura moderna */
.estrutura-section {
  background: #D5A4A9;
  position: relative;
  padding: 3rem 0 2rem 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  overflow: hidden;
}
.estrutura-section .marble-bg {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  background: url('images/marmore.avif') center center/cover no-repeat;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.estrutura-section .container {
  position: relative;
  z-index: 1;
}
.estrutura-section h2 {
  color: #fff !important;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.estrutura-section p {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Galeria Justificada */
.galeria-justified-grid {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  box-sizing: border-box;
}

#justified-gallery {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

#justified-gallery img {
  border-radius: 24px;
  box-shadow: 0 4px 18px rgba(213, 164, 169, 0.13);
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}

#justified-gallery img:hover {
  box-shadow: 0 8px 32px rgba(213, 164, 169, 0.22);
  transform: translateY(-4px) scale(1.03);
}

@media (max-width: 900px) {
  html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  .container,
  .tratamentos-section .container,
  .equipe-section .container,
  .estrutura-section .container,
  .instagram-section .container,
  .contato-section .container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
    box-sizing: border-box !important;
  }
  .top-bar,
  .header,
  .hero-section {
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
  }
  .grid-gallery {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 0.5rem !important;
    overflow-x: auto !important;
    box-sizing: border-box !important;
  }
  .hero-section,
  .sintomas-section,
  .equipe-section,
  .tratamentos-section,
  .instagram-section,
  .contato-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .equipe-list,
  .tratamentos-list {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }
  .section-divider {
    margin-left: 0;
    margin-right: 0;
  }
  .hero-section {
    padding: 0 !important;
    min-height: unset !important;
    max-height: none !important;
    height: auto !important;
    background: #EAEBEA !important;
  }
  .hero-section .hero-slide {
    display: block !important;
    min-height: unset !important;
    max-height: none !important;
    height: auto !important;
  }
  .hero-section .hero-img-mobile-wrapper {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100vw;
    margin: 0 auto 8px auto;
    padding-top: 8px;
  }
  .hero-section .hero-img-mobile {
    display: block !important;
    width: 90vw;
    max-width: 450px !important;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    margin: 38px auto 0 auto;
  }
  .hero-section .hero-content {
    margin-left: 0;
    text-align: center;
    padding: 0;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
  }
  .hero-section .hero-content h1 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    width: 100%;
    font-weight: 600;
    line-height: 1.2;
  }
  .hero-section .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
    width: 100%;
    line-height: 1.4;
  }
  .hero-section .btn {
    padding: 0.6rem 0;
    font-size: 0.98rem;
    width: 90vw;
    max-width: 320px;
    margin: 0 auto;
    border-radius: 6px;
    margin-bottom: 2.5rem;
  }
  .hero-section .hero-slide {
    background-image: none !important;
  }
  .hero-section .hero-slide[data-bg] {
    background: none !important;
  }
  .nav ul {
    gap: 1rem;
  }
  .tratamentos-list {
    flex-direction: column;
    align-items: center;
  }
  .equipe-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .especialista {
    height: 170px;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0.2rem 0.2rem 0.6rem 0.2rem;
    font-size: 0.91rem;
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.85);
  }
  .foto-especialista {
    width: 130px !important;
    height: 130px !important;
    margin-top: 0 !important;
    margin-bottom: 0.1rem !important;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
    display: block;
  }
  .nome-especialista {
    font-size: 0.89rem;
    margin: 0.1rem 0 5px 0;
    line-height: 1.1;
    font-weight: 600;
    flex-shrink: 0;
    text-align: center;
    word-break: break-word;
    max-width: 90%;
  }
  .btn-especialista {
    padding: 0.10rem 0;
    font-size: 0.73rem;
    margin-top: 0.1rem;
    width: 95%;
    max-width: 120px;
    min-width: 70px;
    display: block;
    align-self: center;
    border-radius: 6px;
    box-sizing: border-box;
    margin-bottom: 0.32rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sintomas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.2rem 1.2rem;
    align-items: stretch;
    justify-items: center;
    margin-bottom: 4rem;
  }
  .sintomas-list .sintoma:first-child,
  .sintomas-list .sintoma:nth-child(2) {
    margin-top: 6rem;
  }
  .sintoma {
    width: 95%;
    max-width: 180px;
    min-width: 120px;
    height: 120px;
    padding: 1.1rem 0.5rem 1rem 0.5rem;
    font-size: 0.98rem;
    gap: 8px;
  }
  .sintoma img {
    width: 90px !important;
    height: 90px !important;
    margin-bottom: 10px !important;
  }
  .sintoma span {
    font-size: 0.98rem;
  }
  .instagram-feed {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .top-bar {
    display: block !important;
    position: static !important;
    width: 100vw !important;
    z-index: 1 !important;
    font-size: 0.98rem !important;
    padding: 6px 0 !important;
    background: #D5A4A9 !important;
    color: #fff !important;
    text-align: center !important;
    box-shadow: none !important;
    line-height: 1.3 !important;
  }
  .top-bar .container {
    padding: 0 !important;
    margin: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
  }
  .header {
    margin-top: 0 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100vw !important;
    z-index: 1000;
    box-sizing: border-box;
  }
  .top-bar {
    position: static !important;
    z-index: 1 !important;
  }
  body {
    padding-top: 56px !important;
  }
  .sintomas-section {
    margin-bottom: 0;
    padding-bottom: 4.5rem;
  }
  .hero-img img {
    max-width: 200px;
  }
  .sintomas-section .container {
    padding-top: 1.5rem !important;
    padding-bottom: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .sintomas-section h2,
  .sintomas-section .perigos-list,
  .sintomas-section .sintomas-list {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }
  .sintomas-list, .perigos-list {
    gap: 0.1rem;
  }
  .sintomas-list {
    gap: 0.1rem !important;
  }
  .perigos-list {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 0.5rem;
    width: 100%;
    box-sizing: border-box;
  }
  .perigo {
    min-height: 90px;
    height: auto;
    padding: 1.1rem 0.7rem 1.2rem 0.7rem;
    box-sizing: border-box;
    margin: 0 auto 0.7rem auto;
    word-break: break-word;
    white-space: normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }
  .perigo-explicacao {
    display: none;
    background: #fff;
    color: #7D7D7D;
    font-size: 0.93rem;
    font-weight: 400;
    margin-top: 10px;
    border-radius: 7px;
    box-shadow: 0 2px 8px rgba(213,164,169,0.10);
    padding: 0.9rem 0.8rem 1rem 0.8rem;
    border-left: 3px solid #D5A4A9;
    word-break: break-word;
    white-space: pre-line;
    width: 100%;
    max-width: 100%;
    text-align: left;
    z-index: 10;
    position: relative;
    overflow-wrap: break-word;
    max-height: 120px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #D5A4A9 #f5f5f5;
  }
  .sintomas-section h2 {
    margin-bottom: 2.2rem !important;
  }
  .sintomas-section .btn {
    margin-bottom: 0 !important;
  }
  .section-divider {
    margin-top: 0 !important;
  }
  .tratamento-bloco-flex {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .tratamento-text-col, .tratamento-img-col {
    width: 100% !important;
    max-width: 340px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .tratamento-img {
    width: 100%;
    max-width: 420px;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(32,80,114,0.10);
    object-fit: cover;
    background: #f5f5f5;
  }
  .tratamento-titulo {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    line-height: 1.3;
    text-align: center;
    color: #D5A4A9;
  }
  .tratamento-desc {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    text-align: center;
    color: #7D7D7D;
  }
  .tratamento-btn {
    background: #D5A4A9;
    color: #fff;
    border-radius: 7px;
    font-size: 1.13rem;
    font-weight: 600;
    padding: 1.1rem 2.2rem;
    box-shadow: 0 2px 8px rgba(213,164,169,0.10);
    transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
    width: auto;
    display: inline-block;
    text-align: center;
    margin: 0 auto;
  }
  .tratamento-btn:hover {
    filter: brightness(1.08);
    box-shadow: 0 4px 18px rgba(213,164,169,0.18);
    transform: scale(1.045);
  }
  .tratamento-btn:active {
    transform: scale(0.97);
  }
  .tratamentos-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0;
  }
  .container {
    width: 92%;
    padding: 0 1.5rem;
  }
  .tratamentos-section .container,
  .equipe-section .container {
    padding: 0 1.8rem;
  }
  .tratamentos-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 0 auto;
    width: calc(100% - 1.6rem);
  }
  .equipe-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .tratamento-bloco-flex {
    padding: 1.2rem 1rem;
    margin: 0 auto 2rem auto;
    width: 100%;
  }
  .header .logo img {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    height: 48px !important;
    max-height: 48px !important;
    box-sizing: content-box;
  }
  .sintomas-section .perigos-list {
    padding-left: 10px !important;
    padding-right: 10px !important;
    box-sizing: border-box;
  }
}
@media (max-width: 700px) {
  .nav ul {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 5%;
    width: 180px;
    box-shadow: 0 2px 8px rgba(32, 80, 114, 0.08);
    border-radius: 8px;
    padding: 1rem 0;
    z-index: 100;
  }
  .nav ul.open {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
  .nav-container {
    flex-direction: row;
    position: relative;
  }
  .top-bar {
    font-size: 0.6rem;
    padding: 1px 0;
    letter-spacing: 1px;
  }
}
@media (max-width: 500px) {
  .top-bar {
    font-size: 0.55rem;
    padding: 0.5px 0;
    letter-spacing: 0.5px;
  }
  .top-bar .container {
    padding: 0 2px;
  }
}
@media (max-width: 600px) {
  .hero-section {
    padding: 0 !important;
    min-height: unset !important;
    max-height: none !important;
    height: auto !important;
  }
  .hero-section .hero-slide {
    min-height: unset !important;
    max-height: none !important;
    height: auto !important;
  }
  .hero-section .hero-img-mobile {
    max-width: 450px !important;
  }
  .hero-section .hero-img-mobile-wrapper {
    margin-bottom: 6px;
    padding-top: 6px;
  }
  .hero-section .hero-content {
    max-width: 95vw;
    gap: 6px;
  }
  .hero-section .hero-content h1 {
    font-size: 1.1rem;
  }
  .hero-section .hero-content p {
    font-size: 0.9rem;
  }
  .hero-section .btn {
    font-size: 0.95rem;
    padding: 0.5rem 0;
    max-width: 95vw;
  }
  .tratamento-bloco-flex {
    padding: 1rem 0.8rem;
    gap: 1rem;
    margin-bottom: 1.8rem;
  }
  .tratamento-img-col {
    max-width: 260px;
  }
  .tratamento-img {
    max-width: 260px;
  }
  .tratamento-text-col {
    max-width: 300px;
    padding: 0 0.3rem;
  }
  .tratamento-titulo {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }
  .tratamento-desc {
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
  }
  .tratamento-btn {
    max-width: 260px;
    padding: 0.8rem 0;
    font-size: 0.95rem;
  }
  .equipe-list {
    gap: 1.2rem;
    padding: 0;
  }
  .especialista {
    min-height: 300px;
  }
  .foto-especialista {
    width: 110px;
    height: 110px;
  }
  .nome-especialista {
    font-size: 0.95rem;
  }
  .btn-especialista {
    padding: 0.5rem 0;
    font-size: 0.9rem;
  }
  .container {
    width: 94%;
    padding: 0 1.2rem;
  }
  .tratamentos-section .container,
  .equipe-section .container {
    padding: 0 1.5rem;
  }
  .tratamentos-list,
  .equipe-list {
    margin: 0 auto;
    width: calc(100% - 1rem);
  }
  .tratamento-bloco-flex {
    padding: 1rem 0.8rem;
    margin: 0 auto 1.8rem auto;
    width: 100%;
  }
}
@media (min-width: 901px) {
  .sintoma:hover {
    transform: scale(1.09);
    box-shadow: 0 16px 40px 0 rgba(32, 80, 114, 0.16), 0 4px 16px 0 rgba(213, 164, 169, 0.16);
    z-index: 2;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px);}
  to   { opacity: 1; transform: translateY(0);}
}

.top-bar p {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #fff 0%, #fff 40%, #D5A4A9 50%, #fff 60%, #fff 100%);
  background-size: 200% 100%;
  background-position: -100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine-text 2.5s linear infinite;
}
@keyframes shine-text {
  0% { background-position: -100% 0; }
  100% { background-position: 100% 0; }
}

.hero-section-2 {
  background: url('images/BANNER PENSAR 02 .webp') center center/cover no-repeat;
}

.hero-img-mobile-wrapper {
  display: none;
}

.section-divider {
  width: 100%;
  height: 2px;
  margin: 0 auto 0 auto;
  background: linear-gradient(90deg, rgba(213,164,169,0) 0%, #D5A4A9 50%, rgba(213,164,169,0) 100%);
  opacity: 0.35;
  border: none;
  border-radius: 2px;
}

@keyframes sintomaInLeft {
  from { opacity: 0; transform: translateX(-60px) scale(0.95); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes sintomaInRight {
  from { opacity: 0; transform: translateX(60px) scale(0.95); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
.sintoma.animate-in-left {
  animation: sintomaInLeft 0.85s cubic-bezier(0.4,0,0.2,1) both;
}
.sintoma.animate-in-right {
  animation: sintomaInRight 0.85s cubic-bezier(0.4,0,0.2,1) both;
}

.btn:active {
  filter: brightness(0.93);
  box-shadow: 0 2px 8px rgba(32, 80, 114, 0.10);
}

.sintomas-section h2,
.equipe-section h2,
.tratamentos-section h2,
.estrutura-section h2,
.instagram-section h2,
.contato-section h2 {
  color: #D5A4A9;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.2px;
}

.perigos-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.7rem 2.5rem;
  justify-content: stretch;
  align-items: stretch;
  margin-bottom: 2rem;
}
.perigo {
  width: 100%;
  min-width: 0;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  padding: 1rem 0.5rem;
}
.perigos-list > .perigo:nth-last-child(1):nth-child(odd) {
  grid-column: 1 / span 2;
  justify-self: center;
}

.sintomas-section .btn {
  display: block;
  margin: 2rem auto 2.5rem auto;
  text-align: center;
}

.foto-especialista {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(32, 80, 114, 0.10);
  margin-bottom: 0.9rem;
  background: #f4f4f4;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.nome-especialista {
  color: #D5A4A9;
  font-weight: 600;
  font-size: 1.08rem;
  text-align: center;
  margin: 0.5rem 0 0.7rem 0;
  letter-spacing: 0.2px;
}

.btn-especialista {
  display: block;
  width: 100%;
  background: #D5A4A9;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 0.7rem 0;
  font-size: 1rem;
  font-weight: 500;
  margin: 0.2rem 0 0 0;
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(0.4,0,0.2,1), box-shadow 0.18s, filter 0.18s;
  box-shadow: 0 2px 8px rgba(213, 164, 169, 0.10);
}
.btn-especialista:hover {
  transform: scale(1.06);
  filter: brightness(1.08);
  box-shadow: 0 4px 18px rgba(213, 164, 169, 0.18);
}
.btn-especialista:active {
  transform: scale(0.96);
  filter: brightness(0.97);
}

.especialista:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(213, 164, 169, 0.18), 0 2px 8px 0 rgba(32, 80, 114, 0.10);
  z-index: 2;
}

/* Bloco visual para a primeira parte da sessão de tratamentos */
.tratamento-bloco-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(213,164,169,0.12), 0 2px 8px rgba(32,80,114,0.08);
  margin-bottom: 2.5rem;
  padding: 1.5rem 1.5rem;
  flex-wrap: wrap;
  position: relative;
  border: 2px solid rgba(213, 164, 169, 0.9);
  overflow: visible;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s ease;
}

.tratamento-bloco-flex:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(213,164,169,0.16), 
              0 4px 16px rgba(32,80,114,0.12);
  background: rgba(255, 255, 255, 0.98);
}

.tratamento-bloco-flex::after {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border-radius: 16px;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(120deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.7) 40%, rgba(255,255,255,0.0) 70%);
  opacity: 0.7;
  animation: reflexoBranco 2.5s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  mask:
    linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  box-sizing: border-box;
  padding: 0;
}

@keyframes reflexoBranco {
  0% { background-position: -80px 0; }
  100% { background-position: 220px 0; }
}

.tratamento-img-col {
  flex: 1 1 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
}

.tratamento-img {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(32,80,114,0.10);
  object-fit: cover;
  background: #f5f5f5;
}

.tratamento-text-col {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  text-align: center;
  gap: 0;
}

.tratamento-titulo {
  color: #D5A4A9;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  text-align: center;
  width: 100%;
}

.tratamento-desc {
  color: #7D7D7D;
  font-size: 1.13rem;
  line-height: 1.5;
  margin-bottom: 0.6rem;
  font-weight: 400;
  text-align: center;
  width: 100%;
}

.tratamento-btn {
  background: #D5A4A9;
  color: #fff;
  border-radius: 7px;
  font-size: 1.13rem;
  font-weight: 600;
  padding: 1.1rem 2.2rem;
  box-shadow: 0 2px 8px rgba(213,164,169,0.10);
  transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
  width: auto;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
}

.tratamento-btn:hover {
  filter: brightness(1.08);
  box-shadow: 0 4px 18px rgba(213,164,169,0.18);
  transform: scale(1.045);
}

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

@media (max-width: 900px) {
  .tratamento-bloco-flex {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .tratamento-text-col, .tratamento-img-col {
    width: 100% !important;
    max-width: 340px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .tratamento-img {
    width: 100%;
    max-width: 420px;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(32,80,114,0.10);
    object-fit: cover;
    background: #f5f5f5;
  }
  .tratamento-titulo {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    line-height: 1.3;
  }
  .tratamento-desc {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
  }
  .tratamento-btn {
    width: 100%;
    max-width: 340px;
    font-size: 1rem;
    padding: 0.9rem 0;
    margin: 0.2rem auto 0 auto;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(213,164,169,0.12);
  }
  .tratamentos-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0;
  }
}

.grid-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.grid-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(32, 80, 114, 0.18), 0 4px 18px rgba(213, 164, 169, 0.18);
  background: #fff;
  border: 1px solid rgba(255,255,255,0.7);
  transition: box-shadow 0.2s, transform 0.2s, border 0.2s;
}
.grid-gallery img:hover {
  box-shadow: 0 16px 48px rgba(213, 164, 169, 0.28), 0 8px 32px rgba(32, 80, 114, 0.18);
  transform: translateY(-4px) scale(1.03);
}
.grid-gallery img:nth-child(1) {
  grid-column: 1 / span 2;
  grid-row: 1;
}
.grid-gallery img:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
}
.grid-gallery img:nth-child(3) {
  grid-column: 4;
  grid-row: 1;
}
.grid-gallery img:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}
.grid-gallery img:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}
.grid-gallery img:nth-child(6) {
  grid-column: 3;
  grid-row: 2;
}
.grid-gallery img:nth-child(7) {
  grid-column: 4;
  grid-row: 2;
}
.grid-gallery img:nth-child(8) {
  grid-column: 3 / span 2;
  grid-row: 2;
}
@media (max-width: 900px) {
  .grid-gallery {
    grid-template-rows: repeat(2, 140px);
  }
  .grid-gallery img {
    border-radius: 18px;
  }
}
@media (max-width: 600px) {
  .grid-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 120px);
    gap: 16px;
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
  }
  .grid-gallery img {
    border-radius: 12px;
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

@media (max-width: 1000px) {
  .contato-section .container {
    flex-direction: column;
  }
  .contato-info {
    order: 1;
    width: 100%;
    text-align: center;
  }
  .contato-form-wrapper {
    order: 2;
    width: 100%;
  }
  .contato-mapa {
    order: 3;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .contato-info h2 {
    font-size: 1.2rem;
  }
  .contato-form {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .contato-mapa iframe {
    min-height: 160px;
    height: 160px;
    border-radius: 10px;
  }
}

.contato-header {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 2.2rem auto;
  text-align: left;
  padding-left: 0.5rem;
}
.contato-header h2 {
  margin-bottom: 0.3rem;
  font-size: 2rem;
  color: #D5A4A9;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.contato-header p {
  margin-bottom: 0;
  color: #7D7D7D;
  font-size: 1.1rem;
}
@media (max-width: 600px) {
  .contato-header {
    padding-left: 0;
    margin-bottom: 1.2rem;
  }
  .contato-header h2 {
    font-size: 1.2rem;
  }
}

.contato-section {
  padding-top: 8rem;
}

.contato-section .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.contato-info,
.contato-form-wrapper,
.contato-mapa {
  margin-left: auto;
  margin-right: auto;
}

.contato-info {
  flex: 1;
  min-width: 300px;
  text-align: left;
  order: 1;
}

.contato-info h2 {
  margin-bottom: 1rem;
  color: #D5A4A9;
  font-size: 2rem;
  font-weight: 600;
}

.contato-info p {
  margin-bottom: 1.5rem;
  color: #7D7D7D;
  font-size: 1.1rem;
}

.contato-mapa {
  flex: 1;
  min-width: 300px;
  margin-top: 0;
  order: 2;
}

.contato-mapa iframe {
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: 18px;
  min-height: 320px;
}

.contato-form-wrapper {
  flex: 1;
  min-width: 300px;
  order: 3;
}

.contato-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(213, 164, 169, 0.12);
}

.contato-form input,
.contato-form textarea {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.contato-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contato-form button {
  padding: 0.8rem;
  background: #D5A4A9;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contato-form button:hover {
  background: #b88b8f;
}

@media (max-width: 900px) {
  .contato-section .container {
    flex-direction: column;
  }
  .contato-info {
    order: 1;
    width: 100%;
    text-align: center;
  }
  .contato-form-wrapper {
    order: 2;
    width: 100%;
  }
  .contato-mapa {
    order: 3;
    width: 100%;
  }
}
