/* =========================
   VARIABLES & BASE
========================= */
:root {
  --df-blue: #0B5AA4;
  --df-blue-2: #153d6e;
  --df-green: #047860;
  --df-green-soft: #dff7f1;
  --df-text: #14263f;
  --df-muted: #64748b;
  --df-bg: #f3f5f7;
  --df-white: #ffffff;
  --df-border: #e8edf3;
  --df-shadow: 0 18px 50px rgba(15, 47, 87, 0.08);
  --df-radius: 28px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--df-text);
  background-color: var(--df-bg);
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

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

/* =========================
   BUTTONS
========================= */
.btn-pill {
  border-radius: 999px;
  font-weight: 700;
  padding: 14px 24px;
}

.btn-primary {
  background-color: var(--df-blue);
  border-color: var(--df-blue);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--df-blue-2);
  border-color: var(--df-blue-2);
}

.btn-outline-primary {
  border-color: var(--df-blue);
  color: var(--df-blue);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--df-blue);
  color: #fff;
}

/* =========================
   HEADER
========================= */
/* =========================
   HEADER
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 237, 243, 0.85);
  box-shadow: 0 8px 24px rgba(15, 47, 87, 0.04);
}

.site-header__desktop-row {
  min-height: 88px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
}

.site-brand__logo {
  height: 54px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #607186;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--df-blue);
  transform: translateY(-1px);
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.btn-header-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.btn-header-secondary i {
  font-size: 14px;
}

.btn-header-main {
  min-height: 48px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(15, 47, 87, 0.14);
}

.mobile-nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--df-border);
  border-radius: 12px;
  background: #fff;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0;
}

.mobile-nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 20px;
  background: var(--df-blue);
  display: block;
}

.mobile-quick-actions {
  display: none;
  background: #ffffff;
  border-top: 1px solid rgba(232, 237, 243, 0.85);
  border-bottom: 1px solid rgba(232, 237, 243, 0.85);
}

.mobile-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  font-size: 15px;
  padding: 12px 16px;
}

.mobile-action-btn i {
  font-size: 14px;
}

.mobile-nav {
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--df-border);
}

.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 0 24px;
}

.mobile-nav__inner a {
  font-weight: 600;
  font-size: 16px;
  color: var(--df-text);
}

/* HEADER RESPONSIVE */
@media (max-width: 1199.98px) {
  .site-brand__logo {
    height: 48px;
  }

  .site-nav {
    gap: 24px;
  }

  .site-nav a {
    font-size: 13px;
  }

  .btn-header-secondary {
    padding: 12px 14px;
    font-size: 14px;
  }

  .btn-header-main {
    padding: 12px 18px;
    font-size: 14px;
  }
}

@media (max-width: 991.98px) {
  .site-header__desktop-row {
    min-height: 74px;
  }

  .site-brand__logo {
    height: 40px;
  }

  .mobile-quick-actions {
    display: block;
  }
}

@media (max-width: 575.98px) {
  .site-header__desktop-row {
    min-height: 70px;
  }

  .site-brand__logo {
    height: 34px;
  }

  .mobile-action-btn {
    min-height: 46px;
    font-size: 14px;
    padding: 11px 12px;
  }
}

/* SEPARACIÓN ENTRE NAV Y BOTONES */
@media (min-width: 992px) {
  .site-header__actions {
    margin-left: 24px; /* 🔥 este es el ajuste clave */
  }
}

/* =========================
   TITLES BASE
========================= */
.section-kicker {
  display: inline-block;
  color: var(--df-green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.section-title-premium {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  font-weight: 900;
  color: var(--df-blue);
  margin: 14px 0 0;
}

.section-support {
  color: var(--df-muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

/* =========================
   GENERIC SECTIONS
========================= */
.section-intro {
  max-width: 860px;
}

/* =========================
   CARDS (OLD SECTIONS WE KEEP)
========================= */
.feature-card,
.service-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 15px 40px rgba(18, 52, 77, 0.08);
  border: 1px solid #edf3f8;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover,
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(18, 52, 77, 0.12);
}

.feature-title {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
  color: #12344d;
  margin-bottom: 14px;
}

.feature-text {
  font-size: 16px;
  line-height: 1.75;
  color: #4a5a6a;
  margin-bottom: 0;
}

/* =========================
   BENEFITS PREMIUM
========================= */
.benefits-premium {
  padding: 100px 0;
  background: #ffffff;
}

.benefits-premium__heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.benefits-premium__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.benefit-premium-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
  border: 1px solid var(--df-border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(15, 47, 87, 0.05);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.benefit-premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 47, 87, 0.12);
  border-color: #dbe7f1;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-icon--blue {
  background: #edf4ff;
  color: var(--df-blue);
}

.benefit-icon--green {
  background: #e9fbf5;
  color: var(--df-green);
}

.benefit-premium-card:hover .benefit-icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 25px rgba(15, 47, 87, 0.15);
}

.benefit-premium-card__number {
  color: var(--df-green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.benefit-premium-card h3 {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--df-blue);
  margin: 0 0 12px;
}

.benefit-premium-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--df-muted);
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1199.98px) {
  .benefits-premium__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .benefits-premium {
    padding: 72px 0;
  }
}

@media (max-width: 575.98px) {
  .benefits-premium__grid {
    grid-template-columns: 1fr;
  }

  .benefit-premium-card {
    padding: 22px;
  }

  .benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 20px;
  }
}
/* =========================
   MAP / LOCATION
========================= */
.info-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(18, 52, 77, 0.12);
  height: 100%;
}

.schedule-box {
  margin-top: 20px;
  background: #f8fbfd;
  border-radius: 20px;
  padding: 20px;
}

.schedule-title {
  font-size: 22px;
  font-weight: 800;
  color: #12344d;
  margin-bottom: 16px;
}

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

.schedule-list li {
  padding: 8px 0;
  border-bottom: 1px solid #e6eef5;
  color: #4a5a6a;
}

.schedule-list li:last-child {
  border-bottom: 0;
}

.map-wrap {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(18, 52, 77, 0.12);
  height: 100%;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* =========================
   FORM
========================= */
.form-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(18, 52, 77, 0.12);
}

.form-embed {
  width: 100%;
}

/* =========================
   FAQ
========================= */
.faq-section {
  padding: 72px 0;
  background: #f8fbfd;
}

.custom-accordion .accordion-item {
  border: 1px solid #e7eef5;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 10px 30px rgba(18, 52, 77, 0.05);
}

.custom-accordion .accordion-button {
  font-weight: 700;
  color: #12344d;
  background: #ffffff;
  padding: 22px 24px;
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: #eaf6ff;
  color: #12344d;
  box-shadow: none;
}

.custom-accordion .accordion-body {
  background: #ffffff;
  color: #4a5a6a;
  font-size: 16px;
  line-height: 1.75;
  padding: 0 24px 24px 24px;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #12344d;
}

.footer-text {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.7;
}

.btn-footer {
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
}

/* =========================
   SYSTEM PAGES
========================= */
.thankyou-section {
  padding: 72px 0;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.error-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991.98px) {
  .site-header__inner {
    min-height: 78px;
  }

  .site-brand__logo {
    height: 42px;
  }

  .feature-title {
    font-size: 20px;
  }

  .feature-card,
  .service-card {
    padding: 22px;
  }

  .map-wrap iframe {
    min-height: 320px;
  }

  .benefits-section,
  .faq-section {
    padding: 48px 0;
  }

  .custom-accordion .accordion-button {
    padding: 18px 18px;
    font-size: 16px;
  }

  .custom-accordion .accordion-body {
    padding: 0 18px 18px 18px;
  }
}

@media (max-width: 575.98px) {
  .site-brand__logo {
    height: 38px;
  }

  .site-header__inner {
    gap: 12px;
  }
}

/* =========================
   HERO PREMIUM
========================= */
.hero-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 88px;
}

.hero-premium__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-premium__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-premium__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.92) 34%, rgba(255,255,255,0.62) 62%, rgba(255,255,255,0.20) 100%);
}

.hero-premium__content {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 650px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--df-green-soft);
  color: #16886f;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  box-shadow: 0 8px 18px rgba(24, 179, 148, 0.12);
}

.hero-title-premium {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--df-blue);
  margin: 20px 0 0;
  max-width: 620px;
}

.hero-description {
  font-size: 18px;
  line-height: 1.8;
  color: #58697d;
  margin: 24px 0 0;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.btn-xl {
  padding: 16px 28px;
  font-size: 16px;
  box-shadow: 0 14px 30px rgba(15, 47, 87, 0.16);
}

.hero-badge-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(232, 237, 243, 0.95);
  box-shadow: 0 12px 30px rgba(15, 47, 87, 0.07);
  color: var(--df-blue);
  font-weight: 700;
}

.hero-badge-card__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--df-green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}

.lead-card {
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(232, 237, 243, 0.95);
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(15, 47, 87, 0.13);
  backdrop-filter: blur(10px);
}

.lead-card__title {
  font-size: 28px;
  line-height: 1.1;
  color: var(--df-blue);
  font-weight: 800;
  margin: 0 0 10px;
}

.lead-card__text {
  color: var(--df-muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 20px;
}

.lead-card__form {
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #eef3f8;
  height: 640px;
}

.lead-card__form iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 1199.98px) {
  .hero-title-premium {
    max-width: 560px;
  }
}

@media (max-width: 991.98px) {
  .hero-premium {
    min-height: auto;
    padding: 110px 0 56px;
  }

  .hero-premium__overlay {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.90) 38%, rgba(255,255,255,0.72) 70%, rgba(255,255,255,0.58) 100%);
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-title-premium {
    font-size: clamp(2.2rem, 8vw, 3.6rem);
    max-width: 100%;
  }

  .hero-description {
    font-size: 17px;
    max-width: 100%;
  }

  .lead-card {
    padding: 24px;
    border-radius: 26px;
  }

  .lead-card__title {
    font-size: 24px;
  }

  .lead-card__form {
    height: 620px;
  }
}

@media (max-width: 575.98px) {
  .hero-premium {
    padding: 100px 0 44px;
  }

  .hero-chip {
    font-size: 11px;
    letter-spacing: 0.1em;
    padding: 9px 14px;
  }

  .hero-title-premium {
    font-size: 2.2rem;
    line-height: 1.04;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.72;
  }

  .hero-actions {
    gap: 12px;
  }

  .btn-xl {
    width: 100%;
    justify-content: center;
  }

  .hero-badge-card {
    width: 100%;
    justify-content: center;
  }

  .lead-card {
    padding: 20px;
  }

  .lead-card__title {
    font-size: 22px;
  }

  .lead-card__form {
    height: 600px;
  }
}

/* =========================
   FORMSTACK HERO TUNE
========================= */
.lead-card__form iframe,
.lead-card__form form {
  width: 100% !important;
}

@media (max-width: 1199.98px) {
  .hero-title-premium {
    max-width: 620px;
  }

  .hero-description {
    font-size: 18px;
    max-width: 580px;
  }
}

@media (max-width: 991.98px) {
  .hero-premium {
    min-height: auto;
    padding: 110px 0 56px;
  }

  .hero-premium__overlay {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.90) 38%, rgba(255,255,255,0.72) 70%, rgba(255,255,255,0.58) 100%);
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-title-premium {
    font-size: clamp(2.2rem, 9vw, 4rem);
  }

  .hero-description {
    font-size: 17px;
    max-width: 100%;
  }

  .lead-card {
    padding: 24px;
    border-radius: 26px;
  }

  .lead-card__title {
    font-size: 28px;
  }

  .lead-card__form {
    min-height: 520px;
  }
}

@media (max-width: 575.98px) {
  .hero-premium {
    padding: 100px 0 44px;
  }

  .hero-chip {
    font-size: 11px;
    letter-spacing: 0.1em;
    padding: 9px 14px;
  }

  .hero-title-premium {
    font-size: 2.35rem;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.72;
  }

  .hero-actions {
    gap: 12px;
  }

  .btn-xl {
    width: 100%;
    justify-content: center;
  }

  .hero-badge-card {
    width: 100%;
    justify-content: center;
  }

  .lead-card {
    padding: 20px;
  }

  .lead-card__title {
    font-size: 24px;
  }

  .lead-card__form {
    min-height: 500px;
  }
}
/* =========================
   TRUST SIGNALS
========================= */
.trust-signals {
  padding: 40px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--df-border);
}

.trust-signals__inner {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--df-blue);
  font-size: 18px;
}

.trust-icon {
  font-size: 20px;
  color: var(--df-green);
}

/* =========================
   SERVICES PREMIUM
========================= */
.services-premium {
  padding: 100px 0;
}

.services-premium__heading {
  margin-bottom: 60px;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef7ff;
  color: var(--df-blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.service-tag--dark {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
}

.service-icon-wrap {
  margin-bottom: 18px;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-icon i {
  font-size: 22px;
}

.service-icon--blue {
  background: #edf4ff;
  color: var(--df-blue);
}

.service-icon--green {
  background: #e9fbf5;
  color: var(--df-green);
}

.service-icon--light {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
}

.service-main:hover .service-icon,
.service-blue:hover .service-icon,
.service-light:hover .service-icon {
  transform: scale(1.06);
}

/* CARD PRINCIPAL */
.service-main {
  display: flex;
  background: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--df-shadow);
  border: 1px solid var(--df-border);
  min-height: 100%;
}

.service-main__content {
  padding: 40px;
  flex: 1 1 48%;
}

.service-main__content h3 {
  font-size: 32px;
  line-height: 1.05;
  font-weight: 800;
  color: var(--df-blue);
  margin: 0 0 16px;
}

.service-main__content p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--df-muted);
  margin: 0 0 22px;
  max-width: 380px;
}

.service-main__image {
  flex: 1 1 52%;
  min-height: 320px;
}

.service-main__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LISTAS */
.service-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--df-blue);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.service-list li span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e8fbf4;
  color: var(--df-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.service-list--light li {
  color: rgba(255,255,255,0.88);
}

.service-list--light li span {
  background: rgba(255,255,255,0.14);
  color: #22c55e;
}

/* FISIOTERAPIA */
.service-blue {
  background: var(--df-blue);
  color: #ffffff;
  padding: 30px;
  border-radius: 32px;
  box-shadow: 0 18px 44px rgba(15, 47, 87, 0.18);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-blue h3 {
  font-size: 30px;
  line-height: 1.08;
  font-weight: 800;
  margin: 0 0 14px;
}

.service-blue p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.84);
  margin: 0 0 22px;
}

/* ACUPUNTURA */
.service-light {
  background: #ffffff;
  padding: 30px;
  border-radius: 32px;
  box-shadow: var(--df-shadow);
  border: 1px solid var(--df-border);
  min-height: 100%;
}

.service-light h3 {
  font-size: 28px;
  line-height: 1.08;
  font-weight: 800;
  color: var(--df-blue);
  margin: 0 0 14px;
}

.service-light p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--df-muted);
  margin: 0;
}

/* METODOLOGÍA */
.service-dark {
  background: linear-gradient(135deg, #07182a 0%, #0f2742 100%);
  color: #ffffff;
  padding: 30px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.service-card-topline {
  width: 82px;
  height: 5px;
  border-radius: 999px;
  background: var(--df-green);
  margin-bottom: 18px;
}

.service-dark h3 {
  font-size: 30px;
  line-height: 1.08;
  font-weight: 800;
  margin: 0 0 12px;
}

.service-dark__text {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin: 0 0 24px;
  max-width: 620px;
}

.steps {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.step-card {
  min-width: 110px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 14px 18px;
  border-radius: 18px;
  text-align: center;
}

.step-card strong {
  display: block;
  font-size: 26px;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.step-card span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.74);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* LINKS */
.service-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--df-blue);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-inline-link::after {
  content: "→";
  font-size: 15px;
}

.service-inline-link--light {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 1199.98px) {
  .service-main__content h3,
  .service-blue h3,
  .service-light h3,
  .service-dark h3 {
    font-size: 28px;
  }
}

@media (max-width: 991.98px) {
  .services-premium {
    padding: 72px 0;
  }

  .service-main {
    flex-direction: column;
  }

  .service-main__content,
  .service-blue,
  .service-light,
  .service-dark {
    padding: 26px;
  }

  .service-main__image {
    min-height: 260px;
  }

  .service-main__content h3,
  .service-blue h3,
  .service-light h3,
  .service-dark h3 {
    font-size: 26px;
  }

  .service-main__content p,
  .service-blue p,
  .service-light p,
  .service-dark__text {
    font-size: 15px;
  }
}

@media (max-width: 575.98px) {
  .services-premium__heading {
    margin-bottom: 42px;
  }

  .service-main__content,
  .service-blue,
  .service-light,
  .service-dark {
    padding: 22px;
  }

  .service-main__image {
    min-height: 220px;
  }

  .service-main__content h3,
  .service-blue h3,
  .service-light h3,
  .service-dark h3 {
    font-size: 24px;
  }

  .step-card {
    min-width: calc(50% - 8px);
    padding: 12px 10px;
  }

  .step-card strong {
    font-size: 22px;
  }

  .step-card span {
    font-size: 11px;
  }
}
/* =========================
   SYMPTOMS PREMIUM
========================= */
.symptoms-premium {
  padding: 100px 0;
  background: #ffffff;
}

.symptoms-premium__heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.symptom-card {
  height: 100%;
}

.symptom-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid var(--df-border);
  border-radius: 28px;
  padding: 26px 24px;
  box-shadow: 0 14px 34px rgba(15, 47, 87, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  overflow: hidden;
}

.symptom-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--df-blue) 0%, var(--df-green) 100%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.symptom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(15, 47, 87, 0.09);
  border-color: #d8e5f0;
}

.symptom-card:hover::after {
  opacity: 1;
}

.symptom-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 18px;
}

.symptom-card__icon--blue {
  background: #edf4ff;
  color: var(--df-blue);
}

.symptom-card__icon--green {
  background: #e9fbf5;
  color: var(--df-green);
}

.symptom-card h3 {
  font-size: 22px;
  line-height: 1.18;
  font-weight: 800;
  color: var(--df-blue);
  margin: 0 0 12px;
}

.symptom-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--df-muted);
  margin: 0 0 18px;
}

.symptom-card__meta {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f4f8fb;
  color: #607186;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 1199.98px) {
  .symptoms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .symptoms-premium {
    padding: 72px 0;
  }

  .symptoms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .symptoms-grid {
    grid-template-columns: 1fr;
  }

  .symptom-card {
    padding: 24px 20px;
  }

  .symptom-card h3 {
    font-size: 20px;
  }

  .symptom-card__icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
    border-radius: 16px;
  }
}
/* =========================
   QUIROMAN
========================= */
.quiroman-section {
  padding: 100px 0;
  background: var(--df-bg);
  overflow: hidden;
}

.quiroman-visual {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(15, 47, 87, 0.14);
  background: #ffffff;
}

.quiroman-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.quiroman-copy__text {
  margin-top: 22px;
}

.quiroman-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

.quiroman-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--df-border);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(15, 47, 87, 0.05);
}

.quiroman-point__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--df-blue);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}

.quiroman-point__icon--green {
  background: var(--df-green);
}

.quiroman-point h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--df-blue);
  margin: 0 0 6px;
}

.quiroman-point p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--df-muted);
  margin: 0;
}

/* =========================
   RESPONSIVE EXTRA PREMIUM
========================= */
@media (max-width: 1199.98px) {
  .symptoms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .symptoms-premium,
  .quiroman-section {
    padding: 72px 0;
  }

  .symptoms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .symptoms-grid {
    grid-template-columns: 1fr;
  }

  .symptom-card {
    padding: 24px 20px;
  }

  .quiroman-point {
    padding: 18px;
  }
}

/* =========================
   BENEFITS PREMIUM
========================= */
.benefits-premium {
  padding: 100px 0;
  background: #ffffff;
}

.benefits-premium__heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.benefits-premium__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.benefit-premium-card {
  background: #f8fbfd;
  border: 1px solid var(--df-border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(15, 47, 87, 0.05);
  height: 100%;
}

.benefit-premium-card__number {
  color: var(--df-green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.benefit-premium-card h3 {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--df-blue);
  margin: 0 0 12px;
}

.benefit-premium-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--df-muted);
  margin: 0;
}

/* =========================
   TESTIMONIALS PREMIUM
========================= */
.testimonials-premium {
  padding: 100px 0;
  background: var(--df-bg);
}

.testimonials-premium__heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.testimonials-premium__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--df-border);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 16px 40px rgba(15, 47, 87, 0.06);
  height: 100%;
}

.testimonial-card--featured {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  transform: translateY(-8px);
}

.testimonial-card__stars {
  color: #f2b94b;
  letter-spacing: 0.15em;
  font-size: 18px;
  margin-bottom: 18px;
}

.testimonial-card__text {
  font-size: 17px;
  line-height: 1.85;
  color: #4f6176;
  margin: 0 0 24px;
}

.testimonial-card__author strong {
  display: block;
  font-size: 15px;
  color: var(--df-blue);
  font-weight: 800;
}

.testimonial-card__author span {
  font-size: 14px;
  color: var(--df-muted);
}

/* =========================
   LOCATION PREMIUM
========================= */
.location-premium {
  padding: 100px 0;
  background: #ffffff;
}

.location-premium__content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.location-premium__intro {
  margin-top: 22px;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 28px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f8fbfd;
  border: 1px solid var(--df-border);
  border-radius: 24px;
  padding: 22px;
}

.location-item__icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--df-blue);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
}

.location-item__icon--green {
  background: var(--df-green);
}

.location-item h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--df-blue);
  margin: 0 0 6px;
}

.location-item p,
.location-item a {
  font-size: 15px;
  line-height: 1.75;
  color: var(--df-muted);
  margin: 0;
}

.btn-location {
  align-self: flex-start;
  margin-top: 28px;
  box-shadow: 0 14px 30px rgba(15, 47, 87, 0.14);
}

.location-premium__map {
  position: relative;
  height: 100%;
  min-height: 540px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 47, 87, 0.12);
  border: 1px solid var(--df-border);
  background: #f3f6f9;
}

.location-premium__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-premium__pin {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(232, 237, 243, 0.95);
  border-radius: 20px;
  padding: 14px 18px;
  box-shadow: 0 14px 34px rgba(15, 47, 87, 0.09);
  color: var(--df-blue);
  font-weight: 800;
  font-size: 14px;
}

.location-premium__pin-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--df-blue);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
}

/* =========================
   RESPONSIVE BENEFITS / TESTIMONIALS / LOCATION
========================= */
@media (max-width: 1199.98px) {
  .benefits-premium__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-premium__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .benefits-premium,
  .testimonials-premium,
  .location-premium {
    padding: 72px 0;
  }

  .testimonial-card--featured {
    transform: none;
  }

  .location-premium__map {
    min-height: 420px;
  }
}

@media (max-width: 575.98px) {
  .benefits-premium__grid {
    grid-template-columns: 1fr;
  }

  .benefit-premium-card,
  .testimonial-card,
  .location-item {
    padding: 22px;
  }

  .location-premium__pin {
    top: 16px;
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
    justify-content: center;
  }
}

/* =========================
   FAQ PREMIUM
========================= */
.faq-premium {
  padding: 100px 0;
  background: var(--df-bg);
}

.faq-premium__heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* =========================
   FOOTER PREMIUM
========================= */
.footer-premium {
  background: #0f2236;
  color: #ffffff;
  padding: 80px 0 40px;
}

.footer-premium__top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.footer-links h5,
.footer-cert h5 {
  font-size: 14px;
  margin-bottom: 14px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-whatsapp {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--df-green);
  color: #fff;
  font-weight: 700;
}

.footer-premium__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .footer-premium__top {
    grid-template-columns: 1fr;
  }
}

/* =========================
   WHATSAPP BUTTONS
========================= */
.btn-whatsapp-header {
  min-width: 132px;
  justify-content: center;
}

.floating-whatsapp {
  position: fixed;
  right: 24px; /* cambia a left: 24px; si lo quieres abajo a la izquierda */
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #18b394;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 18px 38px rgba(24, 179, 148, 0.28);
  z-index: 1200;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
  transform: translateY(-3px) scale(1.04);
  color: #ffffff;
  box-shadow: 0 22px 44px rgba(24, 179, 148, 0.34);
}

@media (max-width: 575.98px) {
  .floating-whatsapp {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
    font-size: 24px;
  }
}

.symptom-card__icon i {
  font-size: 22px;
}

.symptom-card__icon {
  transition: all 0.25s ease;
}

.symptom-card:hover .symptom-card__icon {
  transform: scale(1.08);
}

.service-icon i {
  font-size: 22px;
}

.service-icon {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-main:hover .service-icon,
.service-blue:hover .service-icon,
.service-light:hover .service-icon {
  transform: scale(1.06);
}
.service-list--light li {
  color: rgba(255,255,255,0.85);
}

.service-list--light span {
  color: #22c55e;
  font-weight: bold;
  margin-right: 6px;
}

.faq-list {
  margin: 14px 0 18px;
  padding-left: 20px;
}

.faq-list li {
  margin-bottom: 10px;
  color: #4a5a6a;
  line-height: 1.7;
}

.custom-accordion .accordion-body p {
  margin-bottom: 14px;
}

.custom-accordion .accordion-body p:last-child {
  margin-bottom: 0;
}

.quiroman-point__icon i {
  font-size: 20px;
}

.quiroman-point {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.quiroman-point:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(15, 47, 87, 0.08);
  border-color: #d8e5f0;
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-phone i {
  font-size: 14px;
}

/* Hover más pro */
.btn-phone:hover {
  transform: translateY(-1px);
}

.section-support a,
.hero-description a,
.accordion-body a {
  color: var(--df-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-support a:hover,
.hero-description a:hover,
.accordion-body a:hover {
  color: var(--df-blue-2);
}

/* =========================
   PROMO SECTION
========================= */
.promo-section {
  padding: 88px 0;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.promo-section__intro {
  max-width: 860px;
  margin: 18px auto 0;
}

.promo-section__eyebrow {
  margin: 14px 0 0;
  color: #d64045;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.promo-section__row {
  margin-top: 22px;
}

.promo-card {
  position: relative;
  background: #ffffff;
  border-radius: 32px;
  border: 1px solid var(--df-border);
  box-shadow: 0 24px 60px rgba(15, 47, 87, 0.10);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
}

.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(15, 47, 87, 0.16);
  border-color: #dbe7f1;
}

.promo-card--blue {
  border-top: 6px solid var(--df-blue);
}

.promo-card--green {
  border-top: 6px solid var(--df-green);
}

.promo-card__top {
  position: relative;
  min-height: 26px;
}

.promo-badge {
  position: absolute;
  top: 16px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.promo-badge--discount {
  background: #f44336;
  color: #ffffff;
}

.promo-badge--family {
  background: var(--df-green);
  color: #ffffff;
}

.promo-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.promo-card__content {
  padding: 34px 30px 30px;
}

.promo-card h3 {
  font-size: 30px;
  line-height: 1.08;
  font-weight: 900;
  color: var(--df-blue);
  margin: 0 0 16px;
}

.promo-price {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.promo-price__old {
  font-size: 20px;
  font-weight: 700;
  color: #96a4b2;
  text-decoration: line-through;
}

.promo-price__new {
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
  color: var(--df-green);
}

.promo-note {
  font-size: 15px;
  color: var(--df-muted);
  margin: 0 0 18px;
}

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

.promo-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: #4a5a6a;
}

.promo-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e8fbf4;
  color: var(--df-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}

.promo-card__actions {
  margin-top: 24px;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .promo-section {
    padding: 72px 0;
  }

  .promo-card__content {
    padding: 28px 24px 24px;
  }

  .promo-card h3 {
    font-size: 26px;
  }

  .promo-price__new {
    font-size: 34px;
  }
}

@media (max-width: 575.98px) {
  .promo-section {
    padding: 56px 0;
  }

  .promo-card {
    border-radius: 26px;
  }

  .promo-card__content {
    padding: 24px 20px 22px;
  }

  .promo-card h3 {
    font-size: 24px;
  }

  .promo-price__old {
    font-size: 18px;
  }

  .promo-price__new {
    font-size: 30px;
  }

  .promo-list li {
    font-size: 14px;
    line-height: 1.65;
  }

  .promo-badge {
    top: 14px;
    right: 14px;
    font-size: 11px;
    padding: 7px 12px;
  }
}
.promo-card__image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.promo-card__image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.promo-mini-copy {
  font-size: 14px;
  line-height: 1.6;
  color: var(--df-muted);
  margin: 0 0 12px;
}

.promo-mini-copy {
  font-size: 14px;
  line-height: 1.6;
  color: var(--df-muted);
  margin: 0 0 12px;
}

.promo-card--blue .promo-card__image {
  object-position: center 38%;
}

.promo-card--green .promo-card__image {
  object-position: center 30%;
}

.symptoms-image-wrap {
  height: 100%;
  display: flex;
  align-items: center;
}

.symptoms-image-wrap img {
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(15, 47, 87, 0.12);
  object-fit: cover;
}

.symptoms-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--df-blue);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.symptoms-heading-image img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(15, 47, 87, 0.12);
}

.symptoms-premium__heading {
  align-items: center !important;
}

.symptoms-heading-image {
  display: flex;
  justify-content: flex-end;
}

.symptoms-heading-image img {
  max-width: 520px;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(15, 47, 87, 0.12);
}