html {
  scroll-padding-top: 0;
}

.header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(200,160,72,0.07);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  display: none; /* Header oculto em todas as telas */
}
@media (max-width: 768px) {
  .header {
    box-shadow: 0 1.5px 6px rgba(200,160,72,0.07);
    position: static;
  }
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 50px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}
.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #2c3e50;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  color: #5d503c;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}
.nav-link:hover {
  color: #d4af37;
}
.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #d4af37;
  transition: width 0.3s ease;
}
.nav-link:hover:after {
  width: 100%;
}

.btn-schedule {
  background: linear-gradient(90deg, #d4af37 60%, #c8a048 100%);
  color: #fff;
  border-radius: 12px;
  border: none;
  padding: 12px 28px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(200,160,72,0.11);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  outline: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-schedule:hover {
  background: linear-gradient(90deg, #c8a048 60%, #d4af37 100%);
  box-shadow: 0 4px 16px rgba(200,160,72,0.18);
  transform: translateY(-2px) scale(1.03);
}

.card-icon {
  color: #c8a048;
  font-size: 2rem;
  vertical-align: middle;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #5d503c;
  letter-spacing: -0.5px;
}
p, li, span, a, button {
  font-family: 'Poppins', sans-serif;
  color: #5d503c;
  font-size: 1rem;
  line-height: 1.5;
}

.section-header h2, .about-clinic-headline, .mini-hero-headline {
  color: #c8a048;
}
.section-header .section-subtitle, .about-clinic-short, .mini-hero-subheadline {
  color: #444;
}

.mini-hero {
  background: #FFFCF2;
  border-bottom: 1.5px solid #d4af37;
  width: 100%;
  padding: 0;
}
.mini-hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 32px 20px;
  gap: 3rem;
}
.mini-hero-image {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-hero-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(180, 147, 11, 0.10);
  object-fit: cover;
}
.mini-hero-content {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.mini-hero-headline {
  font-size: 2.5rem;
  font-weight: 700;
  color: #C8A048;
  margin-bottom: 1.2rem;
  line-height: 1.1;
  text-align: left;
}
.mini-hero-subheadline {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin-bottom: 2rem;
  text-align: left;
}
.quick-access-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1000px;
  margin-top: 1.5rem;
}
.quick-access-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(200,160,72,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  text-align: center;
}
.quick-access-card:hover {
  box-shadow: 0 4px 16px rgba(200,160,72,0.15);
  transform: translateY(-3px) scale(1.04);
}
.quick-access-card .card-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.quick-access-card .card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #5d503c;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #5d503c;
  letter-spacing: -0.5px;
}
p, li, span, a, button {
  font-family: 'Poppins', sans-serif;
  color: #5d503c;
  font-size: 1rem;
  line-height: 1.5;
}

/* Contraste e acessibilidade */
.section-header h2, .about-clinic-headline, .mini-hero-headline {
  color: #c8a048;
}
.section-header .section-subtitle, .about-clinic-short, .mini-hero-subheadline {
  color: #444;
}

/* Remover classes antigas ocultas */
.mini-hero-access-links, header.header[style*="display: none"] {
  display: none !important;
}

/* Responsividade geral */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 6px;
  }
  .mini-hero-headline {
    font-size: 1.5rem;
  }
  .btn-schedule, .booking-button, .whatsapp-button, .carousel-button, .instagram-button {
    font-size: 0.98rem;
    padding: 10px 16px;
  }
}
@media (max-width: 480px) {
  .mini-hero-headline {
    font-size: 1.1rem;
  }
  .btn-schedule, .booking-button, .whatsapp-button, .carousel-button, .instagram-button {
    font-size: 0.94rem;
    padding: 8px 10px;
  }
}

/* Limpeza: Remover seletores duplicados/comentados */
/* ... demais regras seguem normalmente ... */

/* Mini Hero Section */
.mini-hero {
  background: #FFFCF2;
  border-bottom: 1.5px solid #d4af37;
  width: 100%;
  padding: 0;
}
.mini-hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 32px 20px;
  gap: 3rem;
}
.mini-hero-image {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-hero-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(180, 147, 11, 0.10);
  object-fit: cover;
}
.mini-hero-content {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.mini-hero-headline {
  font-size: 2.5rem;
  font-weight: 700;
  color: #C8A048;
  margin-bottom: 1.2rem;
  line-height: 1.1;
  text-align: left;
}
.mini-hero-subheadline {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin-bottom: 2rem;
  text-align: left;
}
/* Quick Access Cards */
.quick-access-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1000px;
  margin-top: 1.5rem;
}

.quick-access-card {
  background: #fffcf5;
  /* border: 1px solid #d4af37; */
  border: none;
  border-radius: 16px;
  padding: 24px 12px;
  text-decoration: none;
  color: #5d503c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.16), 0 2px 8px rgba(90, 60, 20, 0.08);
  text-align: center;
  height: 100%;
  box-sizing: border-box;
}

.quick-access-card:hover,
.quick-access-card:focus {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 16px 36px rgba(212, 175, 55, 0.22), 0 4px 16px rgba(90, 60, 20, 0.10);
  outline: none;
}

.quick-access-card .card-icon {
  font-size: 2rem;
  color: #c8a048;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.quick-access-card:hover .card-icon {
  transform: scale(1.1);
}

.quick-access-card .card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #5d503c;
  margin-top: 8px;
}

.quick-access-card:hover .card-title {
  color: #c8a048;
}

/* Responsive styles for quick access cards */
@media (max-width: 1200px) {
  .quick-access-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .quick-access-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .quick-access-cards {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 1.5rem auto 0;
  }

  .quick-access-card {
    padding: 20px 12px;
  }
}

.mini-hero-access-links {
  display: none; /* Hide the old quick access links */
}
.mini-hero-access-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #fff;
  border: 2px solid #C8A048;
  border-radius: 18px;
  width: 90px;
  height: 90px;
  box-shadow: none;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  color: #5d503c;
  font-weight: 500;
  font-size: 0.97rem;
  cursor: pointer;
  position: relative;
}
.mini-hero-access-link .icon {
  font-size: 1.1rem;
  margin-bottom: 0;
  margin-right: 4px;
  display: flex;
  align-items: center;
}
.mini-hero-access-link span {
  font-size: 0.98rem;
  margin-top: 0;
  display: inline;
  line-height: 1.2;
  vertical-align: middle;
}
.mini-hero-access-link:hover, .mini-hero-access-link:focus {
  box-shadow: 0 6px 18px rgba(180, 147, 11, 0.11), 0 1.5px 6px rgba(212, 175, 55, 0.10);
  transform: translateY(-3px) scale(1.04);
  border-color: #B48C3D;
  color: #C8A048;
  outline: none;
}

@media (max-width: 900px) {
  .mini-hero-container {
    flex-direction: column;
    gap: 2rem;
    padding: 32px 20px 24px 20px;
    text-align: center;
  }
  .mini-hero-image {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 1.2rem;
  }
  .mini-hero-headline,
  .mini-hero-subheadline {
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .mini-hero-content {
    align-items: center;
    width: 100%;
  }
  .quick-access-cards {
    width: 100%;
    max-width: 500px;
    margin: 1.5rem auto 0;
  }
  .quick-access-card {
    padding: 20px 12px;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 15px;
  }

  .quick-access-card .card-icon {
    margin-bottom: 0;
    font-size: 1.5rem;
  }

  .quick-access-card .card-title {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .mini-hero-headline {
    font-size: 1.35rem;
    padding: 0 2px;
  }
  .mini-hero-image img {
    max-width: 100%;
    border-radius: 14px;
  }
}

/* Fim Mini Hero */

/* Quick Access Custom Section */
.quick-access-custom {
  background: #FFFCF2;
  border-bottom: 1.5px solid #d4af37;
  width: 100%;
  min-height: 70px;
  max-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.quick-access-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.quick-access-title {
  font-size: 1rem;
  font-weight: 500;
  color: #bfa046;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
  text-align: center;
}
.quick-access-links {
  display: flex;
  flex-direction: row;
  gap: 28px;
  justify-content: center;
  align-items: center;
}
.quick-access-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #fff;
  border: 1.5px solid #d4af37;
  border-radius: 22px;
  width: 90px;
  height: 90px;
  box-shadow: none;
  transition: box-shadow 0.2s, transform 0.2s;
  color: #5d503c;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  position: relative;
}
.quick-access-link:hover, .quick-access-link:focus {
  box-shadow: 0 6px 18px rgba(180, 147, 11, 0.11), 0 1.5px 6px rgba(212, 175, 55, 0.10);
  transform: translateY(-3px) scale(1.04);
  color: #d4af37;
  outline: none;
}
.quick-access-icon {
  font-size: 2rem;
  margin-bottom: 6px;
  color: #bfa046;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quick-access-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #5d503c;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .quick-access-custom {
    max-height: 300px;
    min-height: 0;
    padding: 12px 0;
  }
  .quick-access-container {
    padding: 0 6px;
  }
  .quick-access-title {
    font-size: 0.98rem;
    margin-bottom: 5px;
  }
  .quick-access-links {
    flex-direction: column;
    gap: 7px;
    width: 100%;
    align-items: stretch;
  }
  .quick-access-link {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 44px;
    max-height: 50px;
    height: 44px;
    border-radius: 15px;
    padding: 0 10px;
    font-size: 0.93rem;
    margin: 0 auto;
  }
  .quick-access-icon {
    font-size: 1.2rem;
    margin-bottom: 0;
    margin-right: 11px;
    color: #bfa046;
  }
  .quick-access-label {
    font-size: 0.93rem;
    margin-top: 0;
  }
}

.header {
  background-color: #fff; /* Example background, adjust as needed */
  padding: 15px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative; /* To ensure it's not sticky/fixed and for z-index context if needed */
  z-index: 1000; /* Above quick access bar if they were to overlap, though they shouldn't now */
}

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

.logo img {
  max-height: 50px; /* Adjust as needed */
}

.nav {
  display: flex;
  align-items: center;
}

.nav-link {
  color: var(--dark-brown, #5d503c);
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--gold-primary, #d4af37);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: var(--gold-primary, #d4af37);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
  left: 0;
}

.btn-schedule {
  background-color: var(--gold-primary, #d4af37);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  margin-left: 15px;
  transition: background-color 0.3s ease;
  font-weight: 500;
  margin-bottom: 10px;
}

.btn-schedule i {
  margin-right: 8px;
}

.btn-schedule:hover {
  background-color: var(--gold-dark, #8c7851);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none; /* Hidden by default, shown on mobile */
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1005; /* Above nav when it's absolute */
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-brown, #5d503c);
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
}

/* Styles for mobile menu (typically in a @media query) */
@media (max-width: 768px) {
  .nav {
    display: none !important; /* Force hide on mobile */
    flex-direction: column;
    position: absolute;
    top: 100%; /* Position below the header */
    left: 0;
    width: 100%;
    background-color: #fff; /* Background for the dropdown */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 10px 0;
    border-top: 1px solid var(--gold-light, #ece0c6);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out; /* Smooth transition */
  }

  .nav.active {
    display: flex; /* Show when active */
    max-height: 500px; /* Adjust as needed to fit content */
    padding: 10px 0; /* Add padding back when active */
  }

  .nav-link,
  .btn-schedule {
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    margin: 5px 0;
    border-bottom: 1px solid var(--gold-light, #ece0c6);
  }
  .nav-link:last-of-type,
  .btn-schedule {
    border-bottom: none;
  }

  .nav-link::after { /* Hide underline for mobile stacked links */
    display: none;
  }

  .btn-schedule {
    margin-left: 0; /* Reset margin for stacked layout */
    margin-top: 10px;
    display: block; /* Make it full width */
    width: auto; /* Auto width within its padding */
    margin: 10px 20px; /* Consistent margin */
  }

  .mobile-menu-btn {
    display: block; /* Show hamburger button */
  }

  /* Hamburger to X animation */
  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* --- PALESTRAS SECTION --- */
.palestras-section {
  background: var(--ivory, #FFFFF0);
  padding: 60px 0 40px 0;
}
.palestras-section h2 {
  color: var(--gold-primary);
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
}
.palestras-section .section-subtitle {
  color: var(--gray);
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1rem;
}
.palestras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Default 3 columns for desktop */
  gap: 2.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 992px) { /* Tablet: 2 columns */
  .palestras-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .palestras-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .palestra-card {
    margin-bottom: 0.5rem;
    width: 100%;
    max-width: 99vw;
  }
  .palestra-content {
    padding: 18px 10px 14px 10px;
  }
  .palestra-actions {
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
    align-items: stretch;
  }
  .btn-video, .btn-info, .btn-info-soft {
    width: 100%;
    justify-content: center;
    font-size: 1.01rem;
  }
}
.palestra-card {
  background: #fff;
  border: none;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(52, 43, 27, 0.08), 0 1.5px 8px rgba(212, 175, 55, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  z-index: 1;
}
.palestra-card:hover {
  box-shadow: 0 8px 32px rgba(52, 43, 27, 0.15), 0 2px 12px rgba(212, 175, 55, 0.15);
  transform: translateY(-4px) scale(1.01);
}
.palestra-image {
  height: 140px;
  background: linear-gradient(120deg, var(--gold-light), var(--soft-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--gold-dark);
}
.palestra-acinturei { background: url('../images/acinturei.png') center/contain no-repeat; }
.palestra-espelho { background: url('../images/espelho.png') center/contain no-repeat; }
.palestra-prepara { background: url('../images/prepara.png') center/cover no-repeat; }
.palestra-nutrugraft { background: url('../images/nutru.png') center/cover no-repeat; }
.palestra-bemstart { background: url('../images/bem-start.png') center/contain no-repeat; }
.palestra-mentoria { background: url('../images/nutrugraft.jpg') center/cover no-repeat; }
.palestra-content {
  padding: 25px 22px 22px 22px; /* Slightly reduced top padding */
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Ensures content fills card height */
}
.palestra-content h3 {
  color: var(--gold-dark);
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.palestra-desc {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
  min-height: 60px;
  text-align: left;
  line-height: 1.7;
}
.palestra-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-bottom: 1.1rem;
  font-size: 1rem;
  align-items: center;
  justify-content: flex-start;
}
.palestra-publico {
  background: var(--soft-pink, #fdeeee);
  color: var(--dark-brown, #5d503c);
  padding: 7px 14px;
  border-radius: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
}
.palestra-publico i {
  font-size: 1em;
  margin-right: 5px;
}
.palestra-duracao {
  background: var(--gold-light, #ece0c6);
  color: var(--gold-dark, #8c7851);
  padding: 7px 14px;
  border-radius: 16px;
  font-weight: 600; /* Semibold */
  display: inline-flex; /* Changed to inline-flex */
  align-items: center;
  gap: 8px; /* Increased gap */
  font-size: 0.9rem; /* Adjusted font size */
}

.palestra-duracao i {
  font-size: 1em; /* Icon size relative to text */
}
.palestra-actions {
  display: flex;
  gap: 0.7rem;
  margin-top: auto;
  margin-bottom: 0.1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}


.palestra-actions .btn-video,
.palestra-actions .btn-info {
  flex-grow: 1; /* Allow buttons to grow */
  text-align: center; /* Center text in button */
  padding: 10px 15px; /* Uniform padding */
  min-height: 44px; /* Touch target */
  display: flex; /* For icon alignment */
  align-items: center; /* Vertical align icon and text */
  justify-content: center; /* Horizontal align icon and text */
}

/* General Button Styles - ensure touch targets and feedback */
.btn-schedule, .btn-video, .btn-info, .whatsapp-button {
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-schedule:hover, .btn-video:hover, .btn-info:hover, .whatsapp-button:hover {
  transform: translateY(-2px);
}

.btn-schedule:active, .btn-video:active, .btn-info:active, .whatsapp-button:active {
  transform: translateY(0px);
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}
.btn-video {
  background: var(--gold-primary);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.10);
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-video:hover {
  background: var(--gold-dark);
  color: #fff;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.18);
}
.btn-info {
  background: var(--soft-pink);
  color: var(--dark-brown);
  border: none;
  border-radius: 24px;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 2px 8px rgba(52, 43, 27, 0.08);
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-info:hover {
  background: var(--gold-primary);
  color: #fff;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.13);
}
.palestra-equipe {
  font-size: 0.98rem;
  color: var(--gold-dark);
  margin-bottom: 0.7rem;
  margin-top: -0.4rem;
}
.palestra-depoimentos {
  margin-top: 0.6rem;
  font-size: 0.97rem;
}
.palestra-depoimentos ul {
  list-style: none;
  padding-left: 0;
  margin: 0.3rem 0 0 0;
}
.palestra-depoimentos li {
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.palestra-depoimentos a {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.palestra-depoimentos a:hover {
  color: var(--gold-primary);
}

/* --- FIM PALESTRAS SECTION --- */

/* About Professional & Clinic Sections */
.about-professional .content,
.about-clinic .clinic-column-2 .content {
  max-width: 680px; /* Max width for text content */
  margin-left: auto; /* Center if container is wider */
  margin-right: auto;
}

.about-professional .content strong,
.about-clinic .content strong {
  font-weight: 600; /* Lighter bold */
}

.about-professional .content p,
.about-clinic .content p {
  line-height: 1.6em;
  margin-bottom: 1.5rem;
}

.about-professional .content p:last-child,
.about-clinic .content p:last-child {
  margin-bottom: 0;
}

.features-list li i {
  color: var(--gold-primary, #d4af37);
  margin-right: 10px;
  font-size: 1.1em;
}

.highlight-text {
  font-style: italic;
  color: var(--gold-dark, #8c7851);
  /* background-color: var(--gold-light-translucent, rgba(236, 224, 198, 0.3)); */ /* Optional subtle background */
  /* padding: 0 3px; */
}

.about-clinic-container {
  display: flex;
  gap: 2.5rem; /* Space between columns */
  align-items: flex-start; /* Align items to the top */
}

.clinic-column-1,
.clinic-column-2 {
  flex: 1; /* Each column takes half the space */
  min-width: 0; /* Prevent overflow issues with flex items */
}

.clinic-column-1 .image-container img {
  display: block; /* Helps with margin auto centering if needed */
  max-width: 100%;
  height: auto;
  border-radius: 8px; /* Optional: slightly rounded corners for image */
  margin-bottom: 1rem;
}

.about-clinic .image-caption {
  display: block; /* Ensure it's a block for centering */
  text-align: center;
  font-size: 0.85em;
  font-style: italic;
  color: #666; /* Updated caption color */
  margin-top: 0.75rem;
  margin-bottom: 1rem; /* Space below caption */
}

.about-professional .whatsapp-button {
  background-color: var(--whatsapp-green, #25D366);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background-color 0.3s, box-shadow 0.3s;
  min-height: 44px; /* Touch target */
}

.about-professional .whatsapp-button:hover {
  background-color: #128C7E; /* Darker WhatsApp green */
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@media (max-width: 820px) { /* Tablet and mobile */
  .about-clinic-container {
    flex-direction: column;
    gap: 2rem;
  }
  .clinic-column-1,
  .clinic-column-2 {
    width: 100%;
  }
}

/* Product Cards Section (Highlights & Sales) */
.highlights-sales .card,
.palestra-card {
  min-height: 500px; /* Unified min-height, adjust if 520px is firm for products */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.highlights-sales .card {
  min-height: 520px; /* Specific for product cards if different */
}

.highlights-sales .cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Default 3 columns for desktop */
  gap: 2rem;
}

.highlights-sales .card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem; /* Reduced padding */
  /* Consider removing fixed height if any, let content define it */
}

.highlights-sales .card-content {
  flex-grow: 1; /* Allows content to fill space */
  display: flex;
  flex-direction: column;
}

.highlights-sales .card-content h3 {
  font-size: 1.25rem;
}

.highlights-sales .card-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.highlights-sales .card-features {
  margin-bottom: 1rem; /* Space before button */
  font-size: 0.9rem;
}

.highlights-sales .card .btn-schedule {
  margin-top: auto; /* Aligns button to the bottom */
  width: 100%;
  padding: 12px 15px; /* Increased padding for touch */
  min-height: 44px; /* Touch target */
}

.highlights-sales .card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--gold-primary, #d4af37);
  color: white;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 5px;
  z-index: 1;
}

@media (max-width: 992px) { /* Tablet */
  .highlights-sales .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Carousel Styles */
.carousel-wrapper {
  position: relative; /* For absolute positioning of buttons */
  width: 100%;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 1.2rem; /* Ensure icons are visible */
  width: 40px; /* Fixed width */
  height: 40px; /* Fixed height */
  display: none; /* Hidden by default, shown on mobile */
  transition: background-color 0.3s ease;
}

.carousel-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.carousel-button.prev {
  left: -5px; /* Adjust as needed for spacing */
}

.carousel-button.next {
  right: -5px; /* Adjust as needed for spacing */
}

@media (max-width: 767px) { /* Mobile Carousel for Products & Palestras */
  .carousel-button {
    display: block; /* Show buttons on mobile */
  }

  .highlights-sales .product-cards-container, /* Updated class name */
  .palestras-section .palestra-cards-container { /* Updated class name */
    display: flex;
    overflow-x: hidden; /* Hide scrollbar, navigation via buttons */
    /* scroll-snap-type: x mandatory; Removed, JS will handle scroll */
    -webkit-overflow-scrolling: touch;
    padding: 0; /* Remove padding, card itself can have it */
    margin: 0; /* Remove margin */
    grid-template-columns: unset; /* Override grid */
    gap: 0; /* No gap, one card at a time */
    /* scrollbar-width: none; Firefox - already hidden by overflow:hidden */
  }
  .highlights-sales .product-cards-container::-webkit-scrollbar, /* Updated class name */
  .palestras-section .palestra-cards-container::-webkit-scrollbar { /* Updated class name */
    display: none; /* WebKit */
  }

  .highlights-sales .card,
  .palestras-section .palestra-card {
    flex: 0 0 100%; /* Each card takes 100% of viewport width */
    /* scroll-snap-align: center; Removed */
    max-width: 100%; /* Card takes full width of container */
    margin-bottom: 1rem;
    box-sizing: border-box; /* Ensure padding/border are included in 100% width */
    padding: 0 5px; /* Small padding so card content isn't flush with buttons */
  }
  /* Removed margin offsets as cards are 100% width */
}

@media (max-width: 600px) { /* Mobile - original breakpoint, can be merged or kept for finer control */
  .highlights-sales .cards-container {
    grid-template-columns: 1fr;
  }
  .highlights-sales .card {
    padding: 1.2rem;
  }
}


section {
  scroll-margin-top: 0;
  position: static;
  top: auto;
  margin-bottom: 0;
}

/* WhatsApp Button Styles */
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #d4af37, #c19a2c);
  color: #3d2b1f;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.whatsapp-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #c19a2c, #a8841f);
  transition: width 0.3s ease;
  z-index: -1;
}

.whatsapp-button:hover::before {
  width: 100%;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.whatsapp-button:hover i {
  transform: translateX(3px);
}

.whatsapp-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.whatsapp-button i {
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.whatsapp-button:hover i {
  transform: scale(1.1);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: #FFF;
  transform: scale(1.1);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-float i {
  margin-top: 3px;
}

/* Reset e estilos globais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold-primary: #D4AF37;
  --gold-light: #F5E6B3;
  --gold-dark: #B8860B;
  --ivory: #FFFFF0;
  --soft-pink: #F8E1E4;
  --dark-brown: #3D2B1F;
  --light-beige: #F5F5DC;
  --gray: #6D6D6D;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #3D2B1F;
  background-color: #FFFDF8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: rgba(255, 253, 248, 0.95);
  box-shadow: 0 2px 15px rgba(180, 147, 11, 0.1);
  padding: 1.5rem 0;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(5px);
  border-bottom: 1px solid var(--gold-light);
}

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

.logo img {
  height: 50px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #2c3e50;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--dark-brown);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-link:hover {
  color: var(--gold-dark);
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--gold-primary);
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

/* Botões */
.btn-primary, .btn-schedule {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(180, 147, 11, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-primary:hover, .btn-schedule:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(180, 147, 11, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--dark-brown);
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  border: 2px solid var(--gold-primary);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--gold-primary);
  color: white;
  transform: translateY(-2px);
}

/* Seções gerais */
section {
  padding: 100px 0;
}

section h2 {
  color: var(--dark-brown);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 10px;
}

section h2:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--gold-primary), var(--gold-dark));
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.2rem;
  margin: 1rem 0 3rem;
  font-style: italic;
}

/* Comparative Consultations Section */
.comparative-consultations {
  background: #FFFCF2;
  padding: 64px 0 48px 0;
}

/* Booking Buttons */
.booking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4af37, #f5e6b3);
  color: #2c3e50;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1.05em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  margin: 15px 0 0;
  width: 100%;
  box-shadow: 0 4px 15px rgba(200, 160, 72, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.booking-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5e6b3, #d4af37);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.booking-button:hover {
  color: #2c3e50;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 160, 72, 0.4);
}

.booking-button:hover:before {
  opacity: 1;
}

.booking-button i {
  margin-right: 10px;
  font-size: 1.1em;
}

@media (max-width: 768px) {
  .booking-button {
    width: 100%;
    max-width: 280px;
    margin: 20px auto 0;
    display: flex;
  }
}

.comparative-cards-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.consultation-card {
  flex: 1 1 340px;
  background: white;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 300px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200, 160, 72, 0.15);
  margin: 0 10px 30px;
  justify-content: space-between;
}

.consultation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(200, 160, 72, 0.3);
}

.consultation-card .card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f5e6b3, #d4af37);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(200, 160, 72, 0.2);
}

/* Consultations Section */
#consultations {
  padding: 80px 0;
  background-color: #f9f9f9;
}

#consultations .section-header {
  text-align: center;
  margin-bottom: 30px;
  padding: 0 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

#consultations .section-header h2 {
  color: #2c3e50;
  font-size: 2.4em;
  font-weight: 700;

  position: relative;
  display: inline-block;

}

#consultations .section-header h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f5e6b3);
  border-radius: 3px;
}

#consultations .section-subtitle {
  color: #666;
  font-size: 1.2em;
  line-height: 1.7;
  max-width: 700px;
  margin: 10px auto 0;
  padding: 0 20px;
}

.consultation-card h3 {
  color: #2c3e50;
  margin: 0 0 15px;
  font-size: 1.6em;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  position: relative;
  padding-bottom: 10px;
}

.consultation-card h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f5e6b3);
  border-radius: 3px;
}

.consultation-card .card-desc {
  color: #555;
  font-size: 1.05em;
  line-height: 1.7;
  margin: 0 0 25px 0;
  font-weight: 400;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(200, 160, 72, 0.15);
}

.consultation-card .consultation-features {
  margin: 0 0 25px 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.consultation-card .consultation-features li {
  margin-bottom: 14px;
  font-size: 0.95em;
  line-height: 1.6;
  color: #4a5568;
  padding-left: 32px;
  position: relative;
  font-weight: 400;
  transition: all 0.2s ease;
}

.consultation-card .consultation-features li:hover {
  color: #2c3e50;
  transform: translateX(3px);
}

.consultation-card .consultation-features li:before {
  content: '✓';
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: rgba(200, 160, 72, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 0.8em;
  font-weight: bold;
}

.consultation-card.virtual .consultation-features li:before {
  background: rgba(66, 153, 225, 0.1);
  color: #4299e1;
}

.consultation-card .card-highlight {
  background: #f5e6b3;
  color: #836200;
  border-radius: 12px;
  padding: 0.7rem 1.1rem;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: auto;
  box-shadow: 0 2px 10px rgba(180, 147, 11, 0.07);
}

.consultation-card.virtual .card-highlight {
  background: #e3f0fd;
  color: #205c9e;
}

.consultation-card.presencial .card-highlight {
  background: #f5e6b3;
  color: #836200;
}

@media (max-width: 992px) {
  .comparative-cards-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .consultation-card {
    flex: 0 0 calc(50% - 30px);
    margin: 0 15px 30px;
  }
}

@media (max-width: 768px) {
  .consultation-card {
    flex: 0 0 100%;
    max-width: 500px;
    margin: 0 auto 30px;
  }

  .consultation-card h3 {
    font-size: 1.5em;
  }

  .consultation-card .card-desc {
    font-size: 1em;
  }

  .consultation-card .consultation-features li {
    font-size: 0.92em;
    padding-left: 30px;
  }
}

/* About Professional e About Clinic */
.about-professional,
.about-clinic {
  background: #FFFCF2;
  padding: 72px 0 56px 0;
}

/* Nova seção about-clinic */
.about-clinic-description {
  order: 6;
  margin-top: 0.8rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(180,147,11,0.09);
  padding: 1.2rem 1.3rem 1.1rem 1.3rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .about-clinic-description {
    margin-bottom:80px;
  }
}
.about-clinic-description-title {
  font-size: 1.05em; /* Slightly smaller for mobile title */
  margin-bottom: 0.2rem;
  text-align: left;
}
.about-clinic-description-paragraph {
  font-size: 0.82em; /* Slightly smaller for mobile paragraph */
  line-height: 1.4;
  margin-bottom: 0.4rem;
  text-align: justify;
}

.about-clinic.new-about-clinic .about-clinic-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-clinic-col.left, .about-clinic-col.right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.2rem;
}
.about-clinic-image {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.about-clinic-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  border: 2.5px solid #f5e6b3;
}
.about-clinic-headline {
  font-size: 2rem;
  font-weight: 700;
  color: #C8A048;
  margin-bottom: 0.7rem;
  line-height: 1.2;
  text-align: left;
}
.about-clinic-col.left {
  align-items: center;
  justify-content: space-between;
  gap: 9rem;
}
.about-clinic-short {
  font-size: 1.13rem;
  color: #666;
  margin-bottom: 0.7rem;
  text-align: left;
}
.about-clinic-video {
  width: 100%;
}
.about-clinic-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin: 0 auto 1.5rem auto;
  border: 2.5px solid #f5e6b3;
}
.about-clinic-video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 16px;
  aspect-ratio: 16/9;
  border: none;
}
.about-clinic-differentials {
  list-style: none;
  padding: 0;
  margin: 0 0 1.7rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.about-clinic-differentials li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.09rem;
  color: #3D2B1F;
  background: #fffbe9;
  border-radius: 9px;
  padding: 0.7rem 1.1rem;
  box-shadow: 0 1px 5px rgba(180,147,11,0.04);
  font-weight: 500;
}
.about-clinic-differentials li i {
  color: #d4af37;
  font-size: 1.25rem;
  min-width: 1.25em;
  text-align: center;
}
.clinic-schedule-btn {
  margin-top: 1.2rem;
  align-self: flex-start;
  background-color: #25D366;
  color: #fff !important;
  border-radius: 28px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1.07rem;
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.08);
  transition: background 0.2s, color 0.2s;
}
.clinic-schedule-btn:hover {
  background-color: #128C7E;
  color: #fff;
}
@media (max-width: 900px) {
  .about-clinic.new-about-clinic .about-clinic-container {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 10px;
  }
  .about-clinic-col.left, .about-clinic-col.right {
    width: 100%;
    gap: 1.3rem;
  }
  .about-clinic-col.left {
    order: 1;
  }
  .about-clinic-headline {
    order: 2;
    text-align: left;
  }
  .about-clinic-short {
    order: 3;
    text-align: left;
  }
  .about-clinic-differentials {
    order: 4;
    margin-bottom: 1.1rem;
  }
  .about-clinic-video {
    order: 5;
    margin-bottom: 1.1rem;
  }

  .clinic-schedule-btn {
    order: 7;
    width: 100%;
    text-align: center;
    align-self: stretch;
    margin-bottom: 0.5rem;
  }
}




.about-professional .content p,
.about-clinic .content p {
  text-align: justify;
  text-justify: inter-word;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-professional:before,
.about-clinic:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, var(--soft-pink), transparent);
  opacity: 0.3;
  z-index: 0;
}

.about-professional .container,
.about-clinic .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}
.about-clinic-container {
  gap: 40px !important;
}
.clinic-col.left, .clinic-col.right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.clinic-col.left {
  gap: 2.5rem;
}
.clinic-col.right {
  gap: 2.5rem;
}
.clinic-text-block {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.clinic-schedule-btn {
  margin-top: 1.2rem;
  align-self: flex-start;
  background-color: #25D366;
  color: #fff !important;
  border-radius: 28px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1.07rem;
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.08);
  transition: background 0.2s, color 0.2s;
}
.clinic-schedule-btn:hover {
  background-color: #128C7E;
  color: #fff;
}
@media (max-width: 900px) {
  .about-clinic .container {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .clinic-col.left, .clinic-col.right {
    width: 100%;
    gap: 1.5rem;
  }
  .about-clinic-container {
    gap: 0 !important;
  }
  .clinic-col.left {
    order: 1;
  }
  .clinic-text-block {
    order: 2;
  }
  .clinic-schedule-btn {
    order: 3;
    width: 100%;
    text-align: center;
    align-self: stretch;
  }
  .clinic-col.right {
    order: 4;
  }
}

/* Image enhancements for about-clinic */
.about-clinic .image-container img {
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(180, 147, 11, 0.13), 0 2px 8px rgba(180, 147, 11, 0.07);
  border: 2.5px solid #f5e6b3;
}
.about-clinic .image-caption {
  margin-top: 0.7rem;
  background: rgba(180, 147, 11, 0.09);
  color: #836200;
  font-style: italic;
  font-size: 1rem;
  border-radius: 8px;
  padding: 7px 12px;
  box-shadow: 0 1px 5px rgba(180, 147, 11, 0.04);
}


.image-container {
  position: relative;
}

.image-container img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: white;
  padding: 20px;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 5px 15px rgba(180, 147, 11, 0.3);
  z-index: 2;
  border: 3px solid white;
}

.experience-badge .number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.9rem;
  margin-top: 5px;
}

.stats-container {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-item {
  text-align: center;
}

.stat-item .number {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.stat-item .text {
  font-size: 0.9rem;
  color: #666;
}

.content h2 {
  text-align: left;
  margin-bottom: 1rem;
}

.subtitle {
  color: var(--gold-primary);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.content p {
  color: #666;
  margin-bottom: 1.5rem;
}

.features-list {
  list-style: none;
  margin-bottom: 2rem;
}

.features-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.features-list i {
  color: var(--gold-primary);
  margin-right: 10px;
  background: var(--gold-light);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.clinic-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.feature {
  text-align: center;
  padding: 1.5rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature i {
  font-size: 2rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.9rem;
  color: #666;
}

/* Botão Schedule */
.btn-schedule {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-schedule:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(180, 147, 11, 0.4);
}

.btn-schedule.center {
  display: block;
  margin: 2rem auto;
}

/* Important Accesses */
.important-accesses {
  background-color: #fff;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.access-item {
  text-align: center;
  padding: 2.5rem;
  background-color: var(--ivory);
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.access-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.access-item i {
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

.access-item h3 {
  color: var(--dark-brown);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.access-item p {
  color: #666;
  margin-bottom: 1.5rem;
}

.link-more {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.link-more:hover {
  gap: 1rem;
}

/* Estilos para a legenda da imagem */
.image-container {
  position: relative;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 15px;
  margin: 0;
  font-size: 0.9rem;
  text-align: center;
  font-style: italic;
  font-weight: 300;
  transition: background 0.3s ease;
}

.image-container:hover .image-caption {
  background: rgba(0, 0, 0, 0.8);
}

/* Estilos para o contêiner de vídeo */
.video-container {
  margin: 2rem 0;
  width: 100%;
  position: relative;
  padding-bottom: 56.25%; /* Proporção 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

/* Estilos para a seção de destaques e promoções */
.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.jcenter{
  justify-content: center;
}

.whatsapp-button,
.instagram-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-left: auto;
  white-space: nowrap;
}

.whatsapp-button {
  background-color: #25D366;
}

.instagram-button {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  background-size: 200% 200%;
  animation: gradient 3s ease infinite;
}

.whatsapp-button:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.instagram-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0.9;
}

@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.whatsapp-button i {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .whatsapp-button {
    width: 100%;
    justify-content: center;
  }
}

.highlights-sales {
  background-color: var(--ivory);
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}
.card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(180, 147, 11, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--gold-light);
  position: relative;
}
.card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, var(--gold-primary), var(--gold-dark));
}
.card:hover {
  transform: translateY(-5px);
}
.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.card-content {
  padding: 2rem;
}

.card h3 {
  color: var(--dark-brown);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card .price {
  color: var(--gold-primary);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card p {
  color: #666;
  margin-bottom: 1.5rem;
}

.card-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #666;
}

.card-features i {
  color: var(--gold-primary);
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background-color: #f9f9f9;
}

.testimonials h2 {
  margin-bottom: 1rem;
}

.testimonials .section-subtitle {
  color: #666;
  margin-bottom: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-style: italic;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid #4a90e2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.testimonial-author i {
  font-size: 2.5rem;
  color: #4a90e2;
  margin-right: 1rem;
}

.testimonial-author h4 {
  margin: 0;
  color: #333;
  font-size: 1.1rem;
}

.testimonial-author p {
  margin: 0.3rem 0 0;
  color: #777;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .testimonial {
    padding: 1.5rem;
  }

  .testimonial-quote {
    font-size: 0.95rem;
  }
}

/* Extras Section */
.extras-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.extras-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(90deg, #d4af37, #f5e6b3);
}

.extras-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.extras-cols {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.extras-col {
  flex: 1;
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.extras-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.extras-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.extras-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f5e6b3);
  border-radius: 3px;
}

.extras-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.extras-list li {
  margin-bottom: 15px;
  transition: transform 0.2s ease;
}

.extras-list li:hover {
  transform: translateX(5px);
}

.extras-link {
  display: flex;
  align-items: center;
  color: #2c3e50;
  text-decoration: none;
  font-size: 1.1em;
  padding: 12px 15px;
  border-radius: 8px;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}

.extras-link:hover {
  background-color: #f0f2f5;
  color: #d4af37;
  transform: translateX(5px);
}

.extras-link i {
  margin-right: 12px;
  font-size: 1.3em;
  color: #ff0000; /* Cor do YouTube */
}

.extras-link-podcast {
  display: inline-flex;
  margin-top: 15px;
  background: linear-gradient(45deg, #1DB954, #1ed760);
  color: white !important;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.extras-link-podcast i {
  color: white !important;
}

.extras-link-podcast:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 185, 84, 0.3);
  background: linear-gradient(45deg, #1DB954, #1ed760);
  color: white;
}

/* Responsividade */
@media (max-width: 992px) {
  .extras-cols {
    flex-direction: column;
    gap: 30px;
  }

  .extras-col {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .extras-section {
    padding: 60px 0;
  }

  .extras-col {
    padding: 25px 20px;
  }

  .extras-title {
    font-size: 1.3em;
  }

  .extras-link {
    font-size: 1em;
    padding: 10px 12px;
  }
}

/* Contact Section */
.contact {
  background-color: var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 3rem;
}

.contact-info {
  display: grid;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background-color: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-item i {
  font-size: 2rem;
  color: var(--gold-primary);
}

.contact-item h3 {
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #666;
}

.contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
}

/* Location Section */
.location-section {
  background-color: var(--ivory);
  padding: 80px 0;
  position: relative;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-top: 40px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.location-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info h3 {
  color: var(--dark-brown);
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-info h3 i {
  color: var(--gold-primary);
}

.location-info p {
  color: var(--gray);
  margin-bottom: 15px;
  line-height: 1.6;
}

.location-details {
  margin: 25px 0;
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.location-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.location-details i {
  color: var(--gold-primary);
  width: 20px;
  text-align: center;
}

.map-container {
  height: 100%;
  min-height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive */
@media (max-width: 992px) {
  .location-content {
    grid-template-columns: 1fr;
  }

  .map-container {
    min-height: 350px;
  }
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #3D2B1F, #1E150F);
  color: white;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold-primary), var(--gold-dark));
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 3rem;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-logo p {
  color: rgba(255,255,255,0.7);
}

.footer-links h3,
.footer-social h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  display: block;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-primary);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
  background: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(180, 147, 11, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  color: rgba(255,255,255,0.7);
}

/* Responsividade */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-logo {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  header.header {
    display: none !important;
  }
  .mobile-menu-btn {
    display: block;
  }

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

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .nav {
    display: none !important;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
  }

  .nav.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }

  .btn-schedule {
    width: 100%;
    text-align: center;
  }

  .header .container {
    flex-direction: row;
    gap: 0;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .about-professional .container,
  .about-clinic .container,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .clinic-features {
    grid-template-columns: 1fr;
  }

  section {
    padding: 60px 0;
  }

  section h2 {
    font-size: 2rem;
  }

  .experience-badge {
    width: 100px;
    height: 100px;
    bottom: -10px;
    right: -10px;
  }

  .experience-badge .number {
    font-size: 1.5rem;
  }

  .stats-container {
    position: relative;
    bottom: 0;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  section h2 {
    font-size: 1.8rem;
  }

  .btn-schedule {
    width: 100%;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
} 