/* ========================================
   DR. ANGELO BARRIONUEVO
   Ginecologista | Cirurgia Minimamente Invasiva
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-dark: #1A4D3E;
  --green-medium: #246653;
  --green-light: #2E7D68;
  --copper: #B87A5A;
  --copper-light: #C8956F;
  --copper-dark: #A06840;
  --sage: #C5CFC6;
  --sage-light: #D8DFD9;
  --cream: #F8F6F2;
  --white: #FFFFFF;
  --text-dark: #1E1E1E;
  --text-medium: #4A4A4A;
  --text-light: #7A7A7A;
  --border: #E8E3DD;
  --shadow-sm: 0 1px 6px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1140px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.75;
  font-weight: 350;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.25;
  color: var(--green-dark);
  letter-spacing: -0.01em;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 38px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 450;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--copper);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--copper-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,122,90,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green-dark);
}
.btn-secondary:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* --- Header / Navbar --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
  background: rgba(248,246,242,0.97);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 56px;
  width: auto;
  transition: filter var(--transition);
}

/* Light header on hero */
.header:not(.scrolled) .logo img {
  filter: brightness(0) invert(1);
}
.header:not(.scrolled) .nav-links a {
  color: rgba(255,255,255,0.85);
}
.header:not(.scrolled) .nav-links a:hover,
.header:not(.scrolled) .nav-links a.active {
  color: var(--white);
}
.header:not(.scrolled) .hamburger span {
  background: var(--white);
}
.header:not(.scrolled) .nav-cta .btn {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.header:not(.scrolled) .nav-cta .btn:hover {
  background: var(--white);
  color: var(--green-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  font-size: 0.76rem;
  font-weight: 400;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--copper);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--green-dark);
}

.nav-cta {
  margin-left: 8px;
}

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.78rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(5px) translateX(5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100dvh;
  background: var(--white);
  z-index: 999;
  padding: 100px 32px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav > a:not(.btn) {
  display: block;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 450;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:hover {
  color: var(--copper);
}

.mobile-nav .btn {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.show {
  opacity: 1;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% top;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 48, 38, 0.88) 0%,
    rgba(20, 48, 38, 0.72) 40%,
    rgba(20, 48, 38, 0.35) 70%,
    rgba(20, 48, 38, 0.20) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 160px 40px 100px;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 450;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-badge svg {
  width: 13px;
  height: 13px;
}

.hero-title {
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
  font-weight: 500;
}

.hero-title span {
  color: var(--copper-light);
}

.hero-description {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  margin-bottom: 16px;
  max-width: 520px;
  font-weight: 300;
}

.hero-credentials {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-divider {
  width: 48px;
  height: 1.5px;
  background: var(--copper-light);
  margin: 0 0 28px;
  opacity: 0.6;
}

/* --- Section Styles --- */
.section {
  padding: 110px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-green {
  background: var(--green-dark);
  color: var(--white);
}

.section-green h2,
.section-green h3,
.section-green h4 {
  color: var(--white);
}

.section-sage {
  background: var(--sage-light);
}

.section-white {
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .overline {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 450;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--copper);
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 18px;
  font-weight: 500;
}

.section-header p {
  color: var(--text-medium);
  font-size: 1.02rem;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 350;
}

.section-green .section-header p {
  color: rgba(255,255,255,0.75);
}

/* --- About Preview (Home) --- */
.about-preview-section {
  background: var(--white);
  overflow: hidden;
}

.about-preview {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  align-items: stretch;
  min-height: 700px;
  max-width: 1320px;
  margin: 0 auto;
}

.about-preview-image {
  overflow: hidden;
  position: relative;
  margin-left: calc((100vw - 1320px) / -2);
}

.about-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  position: absolute;
  inset: 0;
}

.about-preview-content {
  padding: 72px 40px 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-preview-content .overline {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 450;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--copper);
  margin-bottom: 20px;
}

.about-preview-content h2 {
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.3;
}

.about-preview-content p {
  color: var(--text-medium);
  margin-bottom: 16px;
  font-size: 0.95rem;
  font-weight: 350;
  line-height: 1.8;
}

.about-preview-cta {
  margin-top: 28px;
}

/* --- Treatment Cards --- */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.treatment-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.treatment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--copper-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.treatment-card:hover::before {
  transform: scaleX(1);
}

.treatment-icon {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-dark);
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  transition: all var(--transition);
}

.treatment-icon svg {
  width: 80%;
  height: 80%;
  stroke: rgba(197, 207, 198, 0.25);
  stroke-width: 0.5px !important;
  fill: none;
  transition: all var(--transition);
}

.treatment-card:hover .treatment-icon {
  background: var(--green-medium);
}
.treatment-card:hover .treatment-icon svg {
  stroke: rgba(197, 207, 198, 0.4);
  transform: scale(1.05);
}


.treatment-card-body {
  padding: 28px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.treatment-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.treatment-card p {
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.75;
  font-weight: 350;
}

.treatment-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.82rem;
  font-weight: 450;
  color: var(--copper);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.treatment-card .card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.treatment-card:hover .card-link svg {
  transform: translateX(4px);
}

/* --- Treatments Swiper --- */
.treatments-swiper {
  overflow: visible;
  padding-bottom: 56px;
}

.treatments-swiper .swiper-wrapper {
  align-items: stretch;
}

.treatments-swiper .swiper-slide {
  height: auto;
}

.treatments-swiper .swiper-slide .treatment-card {
  height: 100%;
}

.treatments-swiper .swiper-pagination {
  bottom: 0;
}

.treatments-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--green-dark);
  opacity: 0.2;
  transition: all 0.3s;
}

.treatments-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 4px;
  background: var(--copper);
}

.treatments-swiper .swiper-button-prev,
.treatments-swiper .swiper-button-next {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  top: calc(50% - 28px);
  transition: all var(--transition);
}

.treatments-swiper .swiper-button-prev:hover,
.treatments-swiper .swiper-button-next:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.treatments-swiper .swiper-button-prev::after,
.treatments-swiper .swiper-button-next::after {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
}

.treatments-swiper .swiper-button-prev:hover::after,
.treatments-swiper .swiper-button-next:hover::after {
  color: var(--white);
}

.treatments-swiper .swiper-button-prev {
  left: -20px;
}

.treatments-swiper .swiper-button-next {
  right: -20px;
}

/* --- Credentials Section --- */
.credentials-section {
  background: var(--green-dark);
  padding: 72px 0;
  overflow: hidden;
}

.credentials-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 56px;
}

.credentials-line {
  height: 1px;
  width: 60px;
  background: rgba(200,149,111,0.4);
}

.credentials-overline {
  font-size: 0.72rem;
  font-weight: 450;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--copper-light);
}

.credentials-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.credential-item {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 0 32px;
}

.credential-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 18px;
  color: var(--copper-light);
  opacity: 0.45;
}

.credential-icon svg {
  width: 100%;
  height: 100%;
}

.credential-name {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 300;
  color: var(--copper-light);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.credential-desc {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 350;
  max-width: 200px;
  margin: 0 auto;
}

.credential-divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(200,149,111,0.3), transparent);
  align-self: center;
  flex-shrink: 0;
}

/* --- Stats Row (legacy) --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 56px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.section-green .stat-number {
  color: var(--copper-light);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 400;
}

.section-green .stat-label {
  color: rgba(255,255,255,0.55);
}

/* --- FAQ Section --- */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  color: var(--text-dark);
}

.faq-question h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 450;
  color: var(--text-dark);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

.faq-question:hover h3 {
  color: var(--green-dark);
}

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(26,77,62,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--green-dark);
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--green-dark);
}

.faq-item.open .faq-icon svg {
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--text-medium);
  font-size: 0.92rem;
  line-height: 1.85;
  font-weight: 350;
}

/* --- CTA Section --- */
.cta-section {
  background: var(--cream);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(184,122,90,0.04);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(26,77,62,0.03);
}

.cta-section h2 {
  color: var(--green-dark);
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  max-width: 680px;
  margin: 0 auto 18px;
  font-weight: 500;
}

.cta-section p {
  color: var(--text-medium);
  font-size: 1.02rem;
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Footer --- */
.footer {
  background: #111F19;
  color: rgba(255,255,255,0.6);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-brand img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 450;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 24px;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.88rem;
  font-weight: 350;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--copper-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* --- Page Header (Internal pages) --- */
.page-header {
  padding: 150px 0 70px;
  background: var(--green-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header.page-header--img {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: clamp(340px, 32vw, 420px);
  text-align: left;
}

.page-header--img .page-header-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 60px 0;
  padding-left: max(40px, calc((100vw - 1320px) / 2 + 40px));
}

.page-header--img .breadcrumb {
  justify-content: flex-start;
}

.page-header--img .page-header-image {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.page-header--img .page-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-header--img .page-header-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--green-dark) 0%, transparent 40%);
}

.page-header::before {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
}

.page-header::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(184,122,90,0.04);
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  margin-bottom: 14px;
  font-weight: 500;
}

.page-header p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4);
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
}

.breadcrumb a:hover {
  color: var(--copper-light);
}

.breadcrumb svg {
  width: 12px;
  height: 12px;
}

/* --- Content Pages --- */
.content-section {
  padding: 90px 0;
}

.content-wrapper {
  max-width: 100%;
  margin: 0 auto;
}

.content-wrapper h2 {
  font-size: 1.6rem;
  margin-top: 52px;
  margin-bottom: 18px;
  font-weight: 500;
}

.content-wrapper h3 {
  font-size: 1.25rem;
  margin-top: 40px;
  margin-bottom: 14px;
  font-weight: 500;
}

.content-wrapper p {
  color: var(--text-medium);
  margin-bottom: 18px;
  font-size: 0.98rem;
  line-height: 1.85;
  font-weight: 350;
}

.content-wrapper ul {
  margin: 12px 0 20px 0;
}

.content-wrapper ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--text-medium);
  font-size: 0.98rem;
}

.content-wrapper ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
}

/* Benefits list */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.benefit-item svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: var(--green-dark);
  margin-top: 2px;
}

.benefit-item span {
  font-size: 0.92rem;
  color: var(--text-medium);
}

/* --- About Page --- */
.about-full-section {
  background: var(--white);
}

.about-full {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: stretch;
  min-height: 650px;
}

.about-image-col {
  position: relative;
  overflow: hidden;
}

.about-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  position: absolute;
  inset: 0;
}

.about-content {
  padding: 80px 72px;
}

.about-content h2 {
  font-size: 1.7rem;
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-medium);
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-list {
  margin: 20px 0 28px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.98rem;
  color: var(--text-medium);
}

.about-list li svg {
  width: 18px;
  height: 18px;
  color: var(--copper);
  min-width: 18px;
}

/* --- Disease Cards Grid --- */
.diseases-grid, .treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.disease-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.disease-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.disease-card h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 500;
}

.disease-card p {
  color: var(--text-medium);
  font-size: 0.88rem;
  line-height: 1.75;
  font-weight: 350;
}

.disease-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.8rem;
  font-weight: 450;
  color: var(--copper);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card-body {
  padding: 32px 28px;
}

.blog-card-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 450;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--copper);
  margin-bottom: 14px;
}

.blog-card h3 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.45;
}

.blog-card p {
  color: var(--text-medium);
  font-size: 0.86rem;
  line-height: 1.75;
  margin-bottom: 18px;
  font-weight: 350;
}

.blog-card .card-link {
  font-size: 0.8rem;
  font-weight: 450;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- Contact Page --- */
.contact-hero {
  background: linear-gradient(135deg, var(--green-dark), #12382c);
  border-radius: var(--radius-md);
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.contact-hero::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 122, 90, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-hero-content .overline {
  color: var(--copper-light);
}

.contact-hero-content h2 {
  color: var(--white);
  margin-top: 16px;
  margin-bottom: 20px;
  font-size: 2.5rem;
  line-height: 1.2;
}

.contact-hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}

.contact-hero-credentials {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}

.contact-credential {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
  transition: transform var(--transition), background var(--transition);
}
.contact-credential:hover {
  transform: translateX(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.contact-credential svg {
  width: 22px;
  height: 22px;
  color: var(--copper-light);
  flex-shrink: 0;
}

.contact-credential strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-credential span {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 64px;
}









































/* --- Blog Post --- */
.blog-post-header {
  padding: 150px 0 0;
  background: var(--green-dark);
  text-align: center;
}

.blog-post-featured {
  max-width: 100%;
  margin: 36px auto 0;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 5 /* 16/9 for wide banner, adjusted to be less tall */;
}

.blog-post-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-header .blog-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 450;
  color: var(--copper-light);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}

.blog-post-header h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  max-width: 680px;
  margin: 0 auto;
  font-weight: 500;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: all var(--transition);
  color: white;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }
.fade-up:nth-child(6) { transition-delay: 0.40s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-inner {
    padding: 140px 24px 80px;
  }

  .about-preview {
    grid-template-columns: 1fr;
  }
  
  .about-preview-image {
    position: relative;
    min-height: 400px;
    margin-left: 0;
  }
  
  .about-preview-content {
    padding: 48px 24px;
  }
  
  .diseases-grid, .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .credentials-grid {
    flex-wrap: wrap;
    gap: 40px 0;
  }

  .credential-item {
    flex: 0 0 50%;
    max-width: none;
  }

  .credential-divider {
    display: none;
  }

  .about-full {
    grid-template-columns: 1fr;
  }

  .page-header.page-header--img {
    grid-template-columns: 1fr;
    height: auto;
  }

  .page-header--img .page-header-content {
    padding: 140px 40px 40px;
    text-align: center;
  }

  .page-header--img .breadcrumb {
    justify-content: center;
  }

  .page-header--img .page-header-image {
    height: 260px;
  }

  .page-header--img .page-header-image::after {
    background: linear-gradient(to bottom, var(--green-dark) 0%, transparent 50%);
  }
  
  .about-image-col {
    position: relative;
    min-height: 400px;
  }
  
  .about-content {
    padding: 48px 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .units-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 64px;
}
  
  .contact-hero {
  background: linear-gradient(135deg, var(--green-dark), #12382c);
  border-radius: var(--radius-md);
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.contact-hero::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 122, 90, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
  
  .contact-hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}
  
  .contact-hero-content .btn {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .mobile-nav {
    display: block;
  }

  .treatments-swiper .swiper-button-prev,
  .treatments-swiper .swiper-button-next {
    display: none;
  }

  .treatments-swiper {
    overflow: hidden;
  }

  .hero-inner {
    padding: 120px 20px 60px;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .diseases-grid, .treatments-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .credentials-section {
    padding: 56px 0;
  }

  .credentials-header {
    margin-bottom: 40px;
  }

  .credential-name {
    font-size: 1.05rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .hero {
    min-height: 85vh;
  }
  
  .hero-bg img {
    object-position: 65% top;
  }
  
  .hero-bg::after {
    background: linear-gradient(
      to bottom,
      rgba(20, 48, 38, 0.75) 0%,
      rgba(20, 48, 38, 0.60) 50%,
      rgba(20, 48, 38, 0.80) 100%
    );
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-description {
    max-width: 100%;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-divider {
    margin: 0 auto 28px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .page-header {
    padding: 110px 0 40px;
  }
  .blog-post-header {
    padding: 110px 0 0;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    padding: 12px 28px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
}















/* --- Unidades de Atendimento Premium --- */
.units-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 64px;
}

.unit-card {
  background: var(--green-dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 48px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
}

.unit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.unit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  border-color: rgba(255,255,255,0.15);
}

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

.unit-card-header {
  margin-bottom: 24px;
}

.unit-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(184, 122, 90, 0.1); 
  color: var(--copper);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(184, 122, 90, 0.2);
}

.unit-card-header h3 {
  font-family: var(--font-heading);
  color: var(--cream);
  font-size: 2.2rem;
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.unit-card-info {
  margin-bottom: 32px;
  flex-grow: 1;
}

.unit-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
}

.unit-detail svg {
  width: 24px;
  height: 24px;
  color: var(--copper);
  flex-shrink: 0;
  stroke-width: 1px;
  margin-top: 4px;
}

.unit-detail address {
  font-style: normal;
}

.unit-card-map {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 32px;
  position: relative;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.05);
}

.unit-card-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) opacity(0.8);
  transition: filter var(--transition);
}

.unit-card:hover .unit-card-map iframe {
  filter: grayscale(30%) opacity(1);
}

.unit-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--copper);
  color: var(--white) !important;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  padding: 18px 28px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
  width: 100%;
}

.unit-card-cta svg {
  transition: transform var(--transition);
}

.unit-card-cta:hover {
  background: #a96f52; 
}

.unit-card-cta:hover svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .unit-card {
    padding: 32px;
  }
  .unit-card-header h3 {
    font-size: 1.8rem;
  }
}


@media (max-width: 900px) {
  .contact-hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
    gap: 40px;
    align-items: center;
  }
  .contact-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact-hero-content h2, 
  .contact-hero-content p {
    text-align: center;
  }
  .contact-hero-credentials {
    width: 100%;
    align-items: center;
  }
  .contact-credential {
    width: 100%;
    flex-direction: column;
    text-align: center;
    padding: 24px;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .credentials-header {
    flex-direction: column;
    gap: 12px;
  }
  .credentials-line {
    display: none;
  }
  .credentials-overline {
    text-align: center;
  }
  
  .mobile-nav {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .mobile-nav a {width: 100%;}
  .mobile-nav .btn {
    white-space: nowrap;
    width: auto;
    min-width: 200px;
    text-align: center;
    padding: 12px 24px;
  }
}
@media (max-width: 768px) {
  .logo img {
    height: 40px;
  }
}

/* Forçando alinhamento centralizado em TODOS OS ELEMENTOS no mobile */
@media (max-width: 768px) {
  h1, h2, h3, h4, p, span, li, address {
    text-align: center !important;
  }

  /* Flex containers principais que precisam centralizar os filhos vertical/horizontal */
  .hero-actions, 
  .about-list li, 
  .breadcrumb, 
  .footer-inner,
  .footer-brand,
  .footer-nav,
  .footer-links,
  .contact-hero-content,
  .unit-card,
  .unit-card-header,
  .unit-detail,
  .blog-card-body,
  .page-header-content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    text-align: center !important;
  }

  /* Exceções de direção de flex para continuar horizontal mas centralizado se já era um cluster de botões/tags isolado */
  .breadcrumb {
    flex-direction: row !important;
    flex-wrap: wrap;
  }

  .about-list li {
    flex-direction: column !important;
    gap: 8px;
  }
  .about-list li svg {
    margin: 0 auto;
  }

  .hero-inner, 
  .about-grid, 
  .footer-inner {
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 20px;
  }

  .unit-card-map iframe {
    text-align: center;
  }
  
  .unit-card-header h3 {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  
  /* Ajuste para imagens que possam estar sozinhas */
  img {
    margin-left: auto;
    margin-right: auto;
  }

  /* Botões alinhados ao centro */
  .btn, .card-link, .unit-card-cta {
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center !important;
  }

  .section-header, .page-header {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .faq-question {
    text-align: center !important;
  }
  
  /* Ajustes do Footer para centralizar e empilhar links */
  .footer-links a {
    justify-content: center;
    width: 100%;
    margin-bottom: 8px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.footer-agency img {
  height: 24px;
  width: auto;
  opacity: 0.6;
  transition: opacity var(--transition), transform var(--transition);
  filter: brightness(0) invert(1);
}

.footer-agency:hover img {
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .footer-agency {
    display: inline-block;
    margin-top: 12px;
  }
}

/* === Menu Dropdown Desktop === */
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown .nav-dropbtn {
  display: flex !important;
  align-items: center;
  gap: 4px;
}
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  min-width: 250px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 12px 0;
  z-index: 1000;
  border: 1px solid var(--border);
}
.nav-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* Forçar cores do submenu independente de estar rolado ou não no topo transparente */
.header .nav-dropdown .dropdown-content a {
  color: var(--text-dark) !important;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 24px;
  display: block;
}
.header .nav-dropdown .dropdown-content a::after {
  display: none !important;
}
.header .nav-dropdown .dropdown-content a:hover {
  background: rgba(184, 122, 90, 0.05); /* copper transparente */
  color: var(--copper) !important;
}

/* === Menu Submenu Mobile === */
.mobile-dropdown-content {
  display: flex;
  flex-direction: column;
  background: rgba(184, 122, 90, 0.03);
  border-radius: 8px;
  margin-top: 8px;
  overflow: hidden;
}
.mobile-dropdown-content a {
  font-size: 0.95rem !important;
  padding: 12px 0 !important;
  color: var(--text-medium) !important;
  border-bottom: 1px solid rgba(0,0,0,0.03) !important;
  text-transform: none;
  font-weight: 450;
}
.mobile-dropdown-content a:last-child {
  border-bottom: none !important;
}
.mobile-dropdown-content a:hover {
  color: var(--copper) !important;
  background: rgba(184, 122, 90, 0.05);
}

/* === Estilos para o Accordion de Tratamentos no Menu Mobile === */
.mobile-dropdown-details {
  border-bottom: 1px solid var(--border);
  width: 100%;
}
.mobile-dropbtn {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 450;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none; /* remove padrão */
}
.mobile-dropbtn::-webkit-details-marker {
  display: none;
}
.mobile-dropbtn svg {
  transition: transform 0.3s ease;
}
.mobile-dropdown-details[open] .mobile-dropbtn svg {
  transform: rotate(180deg);
  color: var(--copper);
}
.mobile-dropdown-details[open] .mobile-dropbtn {
  padding-bottom: 8px;
  color: var(--copper);
}

/* Modificadores que conflitam e devem ser corrigidos */
@media (max-width: 768px) {
  .mobile-nav > a:not(.btn), 
  .mobile-dropdown-details {
    width: 100%;
    margin: 0;
  }
}


/* Garantir que o submenu mobile fique escondido se o painel estiver fechado */
details:not([open]) > .mobile-dropdown-content {
  display: none !important;
}

/* Garantindo novamente as definições para celular  */
.mobile-nav details > summary {
    list-style: none;
}
.mobile-nav details::-webkit-details-marker {
    display: none;
}
.mobile-nav details > summary::marker {
    display: none;
}

@media (max-width: 768px) {
  .mobile-nav .nav-dropdown {
    display: none !important;
  }
}
