:root {
      --primary-color: #78082e;
      --accent-color: #4caf50;
      --bg-color: #fdfdfd;
      --text-color: #333;
      --cta-bg: #ffcc00;
      --cta-text: #222;
    }

body {
  font-family: 'Arial', sans-serif;
  font-size: 20px;
  margin: 0;
  padding: 0;
  background: var(--bg-color);
  color: var(--text-color);
}

h2 {
  font-family: 'Rubik', sans-serif;
  color: #222;
  margin-top: 5rem;
  font-size: 2.5rem;
  text-align: center;
  font-weight: normal;
}
ul {
  padding-left: 1.2rem;
}
ul li {
  margin-bottom: 0.5rem;
}

footer {
  background-color: #f0f0f0;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #666;
}
img {
  max-width: 100%;
  border-radius: 10px;
  margin: 1.5rem 0;
}

.top-bar {
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
.top-bar .content {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar .brand {
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  font-family: 'Rubik', sans-serif;
}

.highlight-header {
  background: var(--primary-color);
  padding: 2rem 1rem;
}
.highlight-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.highlight-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}
.highlight-img {
  width: 100%;
  max-width: 350px;
  border-radius: 8px;
}
.highlight-text {
  flex: 1;
  min-width: 280px;
  text-align: center;
}
.highlight-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 1rem;
  line-height: 1.3;
}
.highlight-subtitle {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 0 1.5rem;
}
.highlight-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.highlight-button {
  white-space: nowrap;
  margin-bottom: 0.5rem;
}
.highlight-note {
  color: #fff;
  font-size: 0.85rem;
  margin: 0;
}

.cta-button {
  background-color: var(--cta-bg);
  color: var(--cta-text);
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: background 0.3s ease, transform 0.2s ease;
}
.cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.container {
  max-width: 960px;
  margin: 2rem auto;
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.container p {
  margin-bottom: 1.5rem;
  text-align: justify;
  line-height: 2rem;
}

.container .titles {
  text-align: center;
}

.container .titles .title {
  margin: 0 0 5px 0;
  font-family: 'Rubik', sans-serif;
  font-size: 2.5rem;
  text-align: center;
}

.container .titles .subtitle {
  margin: 0 0 5px 0;
  text-align: center;
}

.container .image-doctor {
  width: 100%;
  max-width: 140px;
  border-radius: 100%;
  margin: 1rem 0 2rem 0;
}

 .container-img {
  max-width: 320px;
}

.dotted-box {
  border: 2px dashed var(--text-color);
  border-radius: 12px;
  padding: 2rem 1rem;
  margin: 4rem auto;
  max-width: 960px;
  background: #fff;
}
.dotted-box-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  text-align: center;
}
.dotted-box-text {
  flex: 1;
  min-width: 280px;
}
.dotted-box-text h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.dotted-box-text p {
  font-size: 1.1rem;
  color: var(--text-color);
  margin: 0;
  text-align: center;
}
.dotted-box-button {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.simple-cta-box {
  max-width: 960px;
  margin: 5rem auto;
  text-align: center;
}
.simple-cta-box-button {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}
.simple-cta-box .offer-note {
  font-size: 0.8rem;
  font-style: italic;
  margin-top: 0.5rem;
}

.cta {
  text-align: center;
  margin: 3rem 0;
}
.cta a {
  background-color: var(--cta-bg);
  color: var(--cta-text);
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}
.cta a:hover {
  background-color: #e6b800;
}

.center {
  text-align: center;
}
.green {
  color: #219901;
}
.red {
  color: #C50000;
}
.mt5 {
  margin-top: 5rem !important;
}
.mb3 {
  margin-bottom: 3rem !important;
}

.responsive-image-text {
  max-width: 960px;
}
.responsive-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
.responsive-img {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}
.responsive-img img {
  max-width: 100%;
  height: auto;
}
.responsive-text {
  flex: 1;
  min-width: 280px;
}
@media (max-width: 768px) {
  .responsive-wrapper {
    flex-direction: column;
  }
  .responsive-text {
    text-align: justify;
  }
}
.responsive-img-fixed {
  flex: 0 0 200px;
  max-width: 200px;
}
@media (max-width: 768px) {
  .responsive-img-fixed {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.prices-gallery {
  max-width: 960px;
  text-align: center;
}
.prices-gallery-wrapper img {
  width: 100%;
  border-radius: 8px;
  margin: 0.1rem;
  transition: transform 0.2s ease;
}
.prices-gallery-wrapper img:hover {
  transform: scale(1.03);
}
.desktop-bundles {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.mobile-bundles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.mobile-bundles {
  display: none;
}
.mobile-bundles img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
@media (max-width: 768px) {
.desktop-bundles {
  display: none;
}
  .mobile-bundles {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}