:root {
  --blue: #155bdf;
  --blue-2: #0b47bd;
  --navy: #0b1326;
  --text: #121826;
  --muted: #667085;
  --soft: #f4f8ff;
  --soft2: #eef6ff;
  --green: #00c968;
  --border: #e6eefb;
  --shadow: 0 24px 70px rgba(15,91,223,.12);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope',system-ui,-apple-system,Segoe UI,sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: 10px;
  z-index: 9999;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 8px 32px rgba(15,23,42,.06);
}

.topbar {
  background: var(--navy);
  color: #fff;
  text-align: center;
  font-size: .82rem;
  padding: .35rem .75rem;
}

.nav-wrap {
  max-width: 1240px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-icon {
  height: 48px;
  width: auto;
}

.brand-text {
  height: 31px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 800;
  font-size: .95rem;
}

.main-nav a {
  color: #1f2937;
  transition: .2s;
}

.main-nav a:hover {
  color: var(--blue);
}

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  padding: 13px 20px;
  border-radius: 13px;
  box-shadow: 0 12px 28px rgba(0,201,104,.22);
  transition: .2s;
}

.nav-call:hover {
  transform: translateY(-2px);
  background: #00b75f;
}

.menu-toggle {
  display: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 11px 13px;
  font-size: 1.3rem;
  color: var(--navy);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 18px 40px rgba(0,201,104,.34);
}

.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(5,11,25,.75),rgba(5,11,25,.38),rgba(5,11,25,.45));
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  padding: 110px 24px 80px;
}

.hero-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 34px;
}

.hero-logos .hero-icon {
  height: 76px;
}

.hero-logos .hero-text {
  height: 62px;
}

.hero h1 {
  font-size: clamp(2.6rem,6vw,5.7rem);
  line-height: 1.05;
  margin: 0;
  font-weight: 900;
  letter-spacing: -.05em;
}

.hero p {
  font-size: clamp(1.05rem,2vw,1.28rem);
  max-width: 760px;
  margin: 26px auto 0;
  color: rgba(255,255,255,.92);
}

.hero-actions, .cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 15px;
  padding: 15px 22px;
  font-weight: 900;
  border: 1.5px solid transparent;
  transition: .2s;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 16px 36px rgba(21,91,223,.24);
}

.btn-blue:hover {
  background: var(--blue-2);
}

.btn-white {
  background: #fff;
  color: var(--blue);
}

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 16px 36px rgba(0,201,104,.22);
}

.btn-outline {
  background: #fff;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--navy);
}

.scroll-down {
  margin-top: 34px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-weight: 800;
}

.scroll-down i {
  margin-top: 7px;
  font-size: 1.5rem;
}

.section {
  padding: 92px 22px;
}

.section-soft {
  background: linear-gradient(180deg,#fff 0%, var(--soft) 100%);
}

.section-blue {
  background: #f1f7ff;
}

.section-gray {
  background: #f5f5f3;
}

.container {
  max-width: 1240px;
  margin: auto;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #edf4ff;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  padding: 8px 15px;
}

.section-head h2, .inner-hero h1 {
  font-size: clamp(2rem,4vw,3.3rem);
  line-height: 1.12;
  margin: 20px 0 0;
  font-weight: 900;
  letter-spacing: -.035em;
}

.section-head p, .inner-hero p {
  font-size: 1.06rem;
  color: var(--muted);
  margin: 18px auto 0;
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 26px;
}

.treatments-featured {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
}

.service-feature {
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 285px;
  transition: .2s;
}

.service-feature:hover {
  transform: translateY(-5px);
}

.service-feature figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.service-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s;
}

.service-feature:hover img {
  transform: scale(1.06);
}

.service-feature .num {
  position: absolute;
  left: 18px;
  top: 18px;
  background: #fff;
  color: var(--blue);
  font-weight: 900;
  font-size: .82rem;
  border-radius: 999px;
  padding: 5px 11px;
  box-shadow: 0 8px 20px rgba(15,23,42,.16);
}

.service-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-content .pill {
  align-self: flex-start;
  background: #f0f6ff;
  color: var(--blue);
  border-radius: 999px;
  font-weight: 900;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 7px 12px;
}

.service-content h3 {
  font-size: 1.55rem;
  margin: 15px 0 0;
  line-height: 1.18;
}

.service-content p {
  color: var(--muted);
  margin: 13px 0 20px;
}

.read-link {
  font-weight: 900;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-dark {
  max-width: 1040px;
  margin: 62px auto 50px;
  border-radius: 28px;
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 44px 24px;
  box-shadow: 0 28px 70px rgba(11,19,38,.22);
}

.cta-dark h2 {
  font-size: clamp(1.8rem,3vw,2.55rem);
  margin: 0;
  font-weight: 900;
}

.cta-dark p {
  max-width: 720px;
  margin: 14px auto 0;
  color: rgba(255,255,255,.72);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
  margin: 56px auto 0;
  max-width: 1180px;
}

.stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  text-align: center;
  padding: 34px 20px;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  color: var(--blue);
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
}

.stat span {
  display: block;
  color: #526071;
  margin-top: 8px;
  font-weight: 700;
}

.intro-card {
  max-width: 980px;
  margin: 54px auto 46px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  text-align: center;
  padding: 38px 28px;
  box-shadow: var(--shadow);
}

.intro-card h2 {
  font-size: 2rem;
  margin: 0;
  font-weight: 900;
}

.intro-card p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

.treatment-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 18px 48px rgba(15,23,42,.08);
  transition: .2s;
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(21,91,223,.16);
}

.treatment-card figure {
  margin: 0;
  height: 210px;
  position: relative;
  overflow: hidden;
}

.treatment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s;
}

.treatment-card:hover img {
  transform: scale(1.06);
}

.treatment-card .num {
  position: absolute;
  left: 18px;
  top: 16px;
  background: #fff;
  color: var(--blue);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
  padding: 5px 11px;
  box-shadow: 0 9px 22px rgba(15,23,42,.12);
}

.treatment-card .body {
  padding: 26px;
}

.treatment-card h3 {
  font-size: 1.45rem;
  margin: 0 0 10px;
  font-weight: 900;
}

.treatment-card p {
  color: var(--muted);
  margin: 0 0 18px;
}

.inner-hero {
  padding: 86px 22px 55px;
  text-align: center;
  background: linear-gradient(180deg,#fff,#f4f8ff);
}

.inner-hero h1 {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.inner-hero p {
  max-width: 840px;
}

.breadcrumb {
  font-size: .92rem;
  color: #6b7280;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--blue);
  font-weight: 800;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(340px,.72fr);
  gap: 44px;
  align-items: start;
}

.content-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}

.content-card h2 {
  font-size: 2rem;
  margin: 0 0 18px;
  font-weight: 900;
  color: var(--navy);
}

.content-card p {
  color: var(--muted);
}

.content-card ul {
  margin: 16px 0 0;
  padding-left: 0;
  list-style: none;
}

.content-card li {
  position: relative;
  padding-left: 30px;
  margin: 12px 0;
  color: #4b5563;
}

.content-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 900;
}

.aside-card {
  position: sticky;
  top: 110px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.aside-card img {
  border-radius: 20px;
  height: 240px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 22px;
}

.quick-list {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.quick-list span {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #f5f9ff;
  padding: 12px 14px;
  border-radius: 14px;
  color: #30465f;
  font-weight: 800;
}

.process {
  counter-reset: step;
}

.process li {
  counter-increment: step;
  background: #f7fbff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 16px 16px 54px;
  margin-bottom: 12px;
  position: relative;
}

.process li:before {
  content: counter(step);
  left: 16px;
  top: 17px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .78rem;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15,23,42,.05);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  padding: 18px 22px;
}

.faq-list p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--muted);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 18px 45px rgba(15,23,42,.2);
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
  margin-top: 28px;
}

.icon-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 45px rgba(21,91,223,.08);
}

.icon-card i {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #edf4ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}

.icon-card h3 {
  margin: 18px 0 8px;
}

.feature-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.feature-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.feature-box .feature-content {
  padding: 42px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
  background: #fff;
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.step {
  display: flex;
  gap: 17px;
}

.step i {
  flex: 0 0 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
}

.reviews, .blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

.review-card, .blog-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(0,0,0,.08);
  overflow: hidden;
}

.review-card {
  padding: 28px;
  min-height: 330px;
}

.stars {
  color: #e4b525;
  letter-spacing: .18em;
  font-weight: 900;
}

.review-card p {
  color: #555;
}

.blog-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.blog-card .body {
  padding: 26px;
}

.blog-card .date {
  color: #697386;
  font-size: .88rem;
  font-weight: 700;
}

.blog-card h3 {
  font-size: 1.32rem;
  line-height: 1.25;
  margin: 12px 0 10px;
  font-weight: 900;
}

.blog-card p {
  color: var(--muted);
}

.article {
  max-width: 880px;
  margin: auto;
}

.article .cover {
  border-radius: 28px;
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  box-shadow: var(--shadow);
  margin-bottom: 34px;
}

.article h2 {
  font-size: 2rem;
  margin-top: 34px;
}

.contact-wrap {
  max-width: 760px;
  margin: auto;
  display: grid;
  gap: 18px;
}

.contact-item {
  display: flex;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 14px 40px rgba(21,91,223,.08);
}

.contact-item i {
  color: var(--blue);
  font-size: 1.3rem;
  margin-top: 4px;
}

.hours {
  width: 100%;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px dashed #d7e3f5;
  padding: 9px 0;
}

.map {
  border: 0;
  width: 100%;
  height: 420px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.site-footer {
  background: #000;
  color: #fff;
  padding: 60px 22px 26px;
}

.footer-grid, .footer-bottom {
  max-width: 1240px;
  margin: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.footer-icon {
  height: 66px;
}

.footer-logo {
  height: 48px;
}

.site-footer p {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
}

.footer-contact {
  text-align: right;
}

.footer-contact h2 {
  font-size: 2rem;
  color: var(--blue);
  margin: 0 0 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 12px 18px;
  margin-top: 18px;
  font-weight: 800;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.11);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: .9rem;
}

.footer-bottom nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.legal {
  max-width: 900px;
  margin: auto;
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.legal h2 {
  margin-top: 30px;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 980px) {
  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 24px 60px rgba(15,23,42,.16);
  }
}

@media (max-width: 980px) {
  .main-nav.is-open {
    display: flex;
  }
}

@media (max-width: 980px) {
  .main-nav a {
    padding: 14px 16px;
    border-radius: 12px;
  }
}

@media (max-width: 980px) {
  .main-nav a:hover {
    background: #f4f8ff;
  }
}

@media (max-width: 980px) {
  .nav-wrap {
    position: relative;
  }
}

@media (max-width: 980px) {
  .nav-call {
    display: none;
  }
}

@media (max-width: 980px) {
  .treatments-featured, .cards-2, .treatment-grid, .related-grid, .about-grid, .feature-box, .steps-grid, .reviews, .blog-grid, .footer-grid, .two-col {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 980px) {
  .service-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .service-feature figure {
    height: 230px;
  }
}

@media (max-width: 980px) {
  .aside-card {
    position: static;
  }
}

@media (max-width: 980px) {
  .footer-contact {
    text-align: left;
  }
}

@media (max-width: 980px) {
  .feature-box img {
    height: 320px;
  }
}

@media (max-width: 620px) {
  .topbar {
    font-size: .72rem;
  }
}

@media (max-width: 620px) {
  .nav-wrap {
    padding: 10px 15px;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: auto;
  }
}

@media (max-width: 620px) {
  .brand-icon {
    height: 42px;
  }
}

@media (max-width: 620px) {
  .brand-text {
    height: 24px;
  }
}

@media (max-width: 620px) {
  .hero-inner {
    padding-top: 96px;
  }
}

@media (max-width: 620px) {
  .hero-logos .hero-icon {
    height: 54px;
  }
}

@media (max-width: 620px) {
  .hero-logos .hero-text {
    height: 42px;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 70px 16px;
  }
}

@media (max-width: 620px) {
  .content-card {
    padding: 24px;
  }
}

@media (max-width: 620px) {
  .treatment-card figure {
    height: 190px;
  }
}

@media (max-width: 620px) {
  .hero-actions, .cta-actions {
    align-items: stretch;
  }
}

@media (max-width: 620px) {
  .btn {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .footer-bottom {
    display: block;
  }
}

@media (max-width: 620px) {
  .footer-bottom nav {
    margin-top: 18px;
  }
}

/* Mejoras SEO / Blog avanzado / Por qué Dali Dent */

.align-left {
  text-align: left;
  margin-left: 0;
}

.mt-28 {
  margin-top: 28px;
}

.left-actions {
  justify-content: flex-start;
}

.check-list {
  padding-left: 0!important;
  list-style: none!important;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 12px 0;
  color: #4b5563;
}

.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 900;
}

.blog-hero-pro {
  padding: 92px 22px;
  background: radial-gradient(circle at 15% 20%,rgba(21,91,223,.12),transparent 30%),linear-gradient(135deg,#fff 0%,#eef6ff 100%);
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 46px;
  align-items: center;
}

.blog-hero-pro h1 {
  font-size: clamp(2.4rem,5vw,4.7rem);
  line-height: 1.05;
  margin: 20px 0 0;
  font-weight: 900;
  letter-spacing: -.05em;
}

.blog-hero-pro p {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 620px;
}

.blog-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.blog-chips a, .seo-pill-grid span {
  display: inline-flex;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--blue);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 900;
  font-size: .9rem;
  box-shadow: 0 10px 28px rgba(21,91,223,.08);
}

.featured-article {
  display: grid;
  grid-template-columns: 46% 54%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.featured-article img {
  height: 100%;
  min-height: 390px;
  width: 100%;
  object-fit: cover;
}

.featured-article div {
  padding: 36px;
}

.featured-article span {
  display: inline-block;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
}

.featured-article h2 {
  font-size: 2rem;
  line-height: 1.12;
  margin: 16px 0 12px;
}

.featured-article p {
  color: var(--muted);
}

.blog-layout {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 34px;
}

.blog-sidebar {
  position: sticky;
  top: 115px;
  align-self: start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: 0 18px 55px rgba(15,23,42,.08);
  padding: 24px;
}

.blog-sidebar h2 {
  margin: 0 0 14px;
}

.blog-sidebar > a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 12px;
  border-radius: 14px;
  color: #243044;
  font-weight: 900;
}

.blog-sidebar > a:hover {
  background: #f2f7ff;
  color: var(--blue);
}

.sidebar-cta {
  margin-top: 18px;
  border-radius: 20px;
  background: var(--navy);
  color: #fff;
  padding: 22px;
}

.sidebar-cta p {
  color: rgba(255,255,255,.74);
}

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

.blog-card-advanced {
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(15,23,42,.08);
  transition: .2s;
}

.blog-card-advanced:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(21,91,223,.14);
}

.blog-card-advanced img {
  height: 245px;
}

.ai-content-card {
  background: linear-gradient(135deg,#fff,#f4f9ff);
}

.seo-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.article-hero {
  padding-bottom: 38px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) 330px;
  gap: 42px;
  align-items: start;
}

.article-pro {
  max-width: 860px;
}

.article-pro .cover {
  aspect-ratio: 16/9;
  max-height: none;
}

.quick-answer {
  border-left: 5px solid var(--blue);
  background: #f2f7ff;
  border-radius: 18px;
  padding: 22px 24px;
  margin: 0 0 32px;
}

.quick-answer strong {
  color: var(--blue);
  font-size: 1.05rem;
}

.quick-answer p {
  margin: 8px 0 0;
  color: #334155;
}

.article-aside {
  position: sticky;
  top: 112px;
}

.article-related {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.article-related a {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 900;
  color: #253044;
}

.article-related a:hover {
  color: var(--blue);
  background: #f4f8ff;
}

.article-aside .btn {
  width: 100%;
  margin-top: 10px;
}

.why-hero {
  padding: 92px 22px;
  background: linear-gradient(135deg,#f7fbff 0%,#fff 48%,#eef6ff 100%);
  overflow: hidden;
}

.why-hero-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.why-hero h1 {
  font-size: clamp(2.5rem,5vw,4.8rem);
  line-height: 1.04;
  margin: 20px 0 0;
  font-weight: 900;
  letter-spacing: -.05em;
}

.why-hero p {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 660px;
}

.why-photo-stack {
  position: relative;
  min-height: 520px;
}

.why-photo-stack .main {
  position: absolute;
  right: 0;
  top: 0;
  width: 82%;
  height: 420px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.why-photo-stack .small {
  position: absolute;
  width: 42%;
  height: 210px;
  object-fit: cover;
  border: 8px solid #fff;
  border-radius: 28px;
  box-shadow: 0 22px 58px rgba(15,23,42,.18);
}

.why-photo-stack .one {
  left: 0;
  bottom: 30px;
}

.why-photo-stack .two {
  right: 10%;
  bottom: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(21,91,223,.08);
  transition: .2s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(21,91,223,.14);
}

.why-card i {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #edf4ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}

.why-card h3 {
  font-size: 1.3rem;
  margin: 18px 0 8px;
}

.why-card p {
  color: var(--muted);
}

.method-panel {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 34px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 38px;
  box-shadow: var(--shadow);
}

.method-panel h2 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 18px 0;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
}

.method-steps div {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  background: #f8fbff;
}

.method-steps strong {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
}

.method-steps h3 {
  margin: 14px 0 8px;
}

.feature-box-pro .feature-content h2 {
  font-size: 2.5rem;
  line-height: 1.12;
}

.local-seo-block {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  align-items: center;
  background: var(--navy);
  color: #fff;
  border-radius: 30px;
  padding: 38px;
  box-shadow: 0 26px 70px rgba(11,19,38,.2);
}

.local-seo-block p {
  color: rgba(255,255,255,.75);
}

.local-seo-block .seo-pill-grid span {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.14);
  color: #fff;
  box-shadow: none;
}

@media (max-width:980px) {
  .blog-hero-grid, .blog-layout, .article-layout, .why-hero-grid, .why-grid, .method-panel, .method-steps, .local-seo-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width:980px) {
  .blog-sidebar, .article-aside {
    position: static;
  }
}

@media (max-width:980px) {
  .featured-article {
    grid-template-columns: 1fr;
  }
}

@media (max-width:980px) {
  .featured-article img {
    min-height: 260px;
  }
}

@media (max-width:980px) {
  .blog-grid-pro {
    grid-template-columns: 1fr;
  }
}

@media (max-width:980px) {
  .why-photo-stack {
    min-height: auto;
    display: grid;
    gap: 18px;
  }
}

@media (max-width:980px) {
  .why-photo-stack .main, .why-photo-stack .small {
    position: static;
    width: 100%;
    height: 260px;
  }
}

@media (max-width:980px) {
  .left-actions {
    justify-content: center;
  }
}

/* Slider restaurado en sección Nuestra clínica */

.dali-slider {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  isolation: isolate;
}

.dali-slider-frame {
  position: relative;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(15,23,42,.18);
  aspect-ratio: 1.14/1;
  min-height: 430px;
}

.dali-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .85s ease,transform 1.1s ease;
  pointer-events: none;
}

.dali-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}

.dali-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.dali-slider-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg,rgba(11,19,38,.02) 15%,rgba(11,19,38,.12) 52%,rgba(11,19,38,.68) 100%);
  pointer-events: none;
}

.dali-slider-caption {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  z-index: 3;
  background: rgba(255,255,255,.96);
  border-radius: 24px;
  padding: 20px 24px;
  box-shadow: 0 18px 45px rgba(15,23,42,.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.dali-slider-caption span {
  display: block;
  color: var(--blue);
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.dali-slider-caption strong {
  display: block;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.25;
}

.dali-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.dali-slider-dots button {
  width: 13px;
  height: 13px;
  border: 0;
  border-radius: 999px;
  background: #bfd0e4;
  cursor: pointer;
  transition: width .25s ease,background .25s ease;
  box-shadow: none;
  padding: 0;
}

.dali-slider-dots button.is-active {
  width: 46px;
  background: var(--blue);
}

.slider-shape {
  position: absolute;
  border-radius: 34px;
  z-index: -1;
}

.slider-shape-top {
  right: -28px;
  top: -28px;
  width: 118px;
  height: 118px;
  background: rgba(21,91,223,.12);
}

.slider-shape-bottom {
  left: -28px;
  bottom: 9px;
  width: 118px;
  height: 118px;
  background: var(--blue);
}

@media (max-width:980px) {
  .dali-slider {
    margin-top: 24px;
  }
}

@media (max-width:980px) {
  .dali-slider-frame {
    min-height: 360px;
  }
}

@media (max-width:980px) {
  .slider-shape {
    display: none;
  }
}

@media (max-width:620px) {
  .dali-slider-frame {
    border-width: 6px;
    border-radius: 26px;
    min-height: 320px;
  }
}

@media (max-width:620px) {
  .dali-slider-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    border-radius: 18px;
    padding: 16px;
  }
}

@media (max-width:620px) {
  .dali-slider-caption strong {
    font-size: 1.05rem;
  }
}

