:root {
  --blue: #285b7d;
  --blue-dark: #1d4663;
  --blue-light: #7faeca;
  --sky: #eaf4f9;
  --ink: #19364a;
  --muted: #5e7482;
  --white: #fff;
  --line: #dce9f0;
  --shadow: 0 18px 50px rgba(29, 70, 99, .12);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6
}

a {
  color: inherit
}

img {
  max-width: 100%;
  display: block;
  border-radius: 20px;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto
}

.narrow {
  max-width: 780px
}

.center {
  text-align: center
}

.section {
  padding: 88px 0
}

.section-soft {
  background: linear-gradient(180deg, #f7fbfd 0%, #edf6fa 100%)
}

.eyebrow {
  display: inline-block;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--blue-dark)
}

h1 {
  font-size: clamp(2rem, 4.8vw, 3.7rem);
  letter-spacing: -.04em;
}

h2 {
  font-size: clamp(2rem, 4.8vw, 3.7rem);
  letter-spacing: -.04em
}

h3 {
  font-size: 1.35rem
}

p {
  margin: 0 0 18px
}

.lead {
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  max-width: 760px;
  color: #3b596b
}

.section-intro {
  font-size: 1.13rem;
  color: var(--muted)
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(40, 91, 125, .08)
}

.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px
}

.brand img {
  width: 112px;
  height: 70px;
  object-fit: contain;
  object-position: left center
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  font-size: .92rem
}

.nav a {
  text-decoration: none
}

.nav a:not(.btn):hover {
  color: var(--blue)
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 98px;
  background: radial-gradient(circle at 85% 15%, rgba(127, 174, 202, .25), transparent 32%), linear-gradient(135deg, #fff 0%, #f8fbfd 62%, #e7f2f7 100%)
}

.hero:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 90px solid rgba(127, 174, 202, .10);
  border-radius: 50%;
  right: -250px;
  bottom: -280px
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 60px;
  align-items: center
}

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

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 16px
}

.microcopy {
  font-size: .93rem;
  color: var(--muted)
}

.logo-card {
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(40, 91, 125, .10);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
  transform: rotate(2deg)
}

.logo-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(40, 91, 125, .20);
  transition: .2s
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--blue-dark)
}

.btn-secondary {
  background: #fff;
  color: var(--blue);
  border: 1px solid var(--line);
  box-shadow: none
}

.btn-small {
  min-height: 42px;
  padding: 0 18px
}

.cards {
  display: grid;
  gap: 22px;
  margin-top: 42px
}

.cards.three {
  grid-template-columns: repeat(3, 1fr)
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(29, 70, 99, .06)
}

.card.featured {
  border: 2px solid rgba(40, 91, 125, .38);
  transform: translateY(-6px)
}

.card p {
  color: var(--muted);
  margin-bottom: 0
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--sky);
  display: grid;
  place-items: center;
  color: var(--blue);
  font-weight: 900;
  font-size: 1.3rem;
  margin-bottom: 22px
}

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

.checklist {
  display: grid;
  gap: 12px
}

.checklist>div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #f8fbfd;
  border: 1px solid var(--line);
  padding: 15px 18px;
  border-radius: 16px
}

.checklist span {
  color: var(--blue);
  font-weight: 900
}

.checklist p {
  margin: 0;
  font-weight: 650
}

.quote-band {
  background: var(--blue);
  padding: 44px 0;
  color: #fff;
  text-align: center
}

.quote-band p {
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-weight: 750;
  max-width: 900px;
  margin: auto;
  line-height: 1.35
}

.about-badge {
  background: var(--sky);
  padding: 38px;
  border-radius: 26px
}

.about p {
  color: var(--muted);
  font-size: 1.07rem
}

.text-link {
  font-weight: 800;
  color: var(--blue);
  text-decoration: none
}

.contact-section {
  padding-top: 72px
}

.contact-card {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
  align-items: center;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
  border-radius: 30px;
  padding: 52px
}

.contact-card h2,
.contact-card .eyebrow {
  color: #fff
}

.contact-card p {
  color: #dceaf2
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px
}

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

.contact-actions .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .35)
}

.contact-actions .text-link {
  color: #fff;
  text-align: center
}

.footer {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  background: #fbfdfe
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.footer-brand img {
  width: 92px;
  height: 54px;
  object-fit: contain
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem
}

.floating-call {
  display: none
}

@media (max-width:900px) {
  .nav a:not(.btn) {
    display: none
  }

  .hero-grid,
  .split,
  .contact-card {
    grid-template-columns: 1fr
  }

  .hero-grid {
    gap: 35px
  }

  .hero-visual {
    max-width: 420px
  }

  .cards.three {
    grid-template-columns: 1fr
  }

  .card.featured {
    transform: none
  }

  .section {
    padding: 68px 0
  }

  .contact-card {
    padding: 36px
  }

  .floating-call {
    display: grid;
    place-items: center;
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 12px 25px rgba(29, 70, 99, .28);
    z-index: 60
  }
}

@media (max-width:560px) {
  .container {
    width: min(100% - 28px, 1120px)
  }

  .nav-wrap {
    height: 72px
  }

  .brand img {
    width: 88px
  }

  .hero {
    padding-top: 58px
  }

  .hero-actions .btn {
    width: 100%
  }

  .section {
    padding: 56px 0
  }

  .contact-card {
    padding: 28px 22px
  }

  .footer-wrap {
    align-items: flex-start;
    flex-direction: column
  }
}

.local-seo strong {
  color: var(--blue-dark)
}

.local-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(29, 70, 99, .06)
}

.local-box .btn {
  margin: 8px 0 18px
}

.local-box .text-link {
  display: block
}

.title {
  margin-bottom: 60px;
}

.image-sonia {
  width: 100%;
  padding-block: 31px;
  border-radius: 20px;

}

.header-tittle {
  max-width: 1300px;
}

.hero-landscape {
  position: relative;
  margin-top: 10px;
  margin-bottom: 55px;
  height: 360px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 18px 45px rgba(29, 70, 99, .14);
}

.hero-landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  border-radius: 0;
}

/* Integra la fotografía con los tonos de la web */
.hero-landscape::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(29, 70, 99, 0.02) 0%,
      rgba(29, 70, 99, 0.10) 100%);
}

@media (max-width: 900px) {
  .hero-landscape {
    height: 290px;
    border-radius: 24px;
    margin-bottom: 40px;
  }
}

@media (max-width: 560px) {
  .hero-landscape {
    height: 220px;
    border-radius: 20px;
    margin-bottom: 32px;
  }
}

.hero-landscape {
  position: relative;
  height: 380px;
  margin: 15px auto 60px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero-landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

/* Sombra suave para poder leer el lema */
.hero-landscape::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(15, 42, 60, .68) 0%,
      rgba(15, 42, 60, .35) 45%,
      rgba(15, 42, 60, 0) 75%);
}

.hero-motto {
  position: absolute;
  z-index: 2;
  left: 50px;
  bottom: 45px;
  max-width: 600px;
  color: white;
}

.hero-motto span {
  display: block;
  margin-bottom: 8px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .9;
}

.hero-motto p {
  margin: 0;
  max-width: 560px;
  color: white;
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}

@media (max-width: 560px) {
  .hero-landscape {
    height: 300px;
    border-radius: 20px;
  }

  .hero-motto {
    left: 24px;
    right: 24px;
    bottom: 28px;
  }

  .hero-landscape::after {
    background: linear-gradient(0deg,
        rgba(15, 42, 60, .75) 0%,
        rgba(15, 42, 60, .25) 70%,
        transparent 100%);
  }
}

.taller-destacado {
  margin-top: 70px;
  display: grid;
  gap: 60px;
  align-items: center;

  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 38px;

  box-shadow: 0 18px 50px rgba(29, 70, 99, .08);
}

.taller-destacado-imagen {
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  border-radius: 24px;
}

.taller-destacado-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.taller-destacado-contenido {
  padding: 20px 15px;
}

.taller-destacado-contenido h2 {
  margin-bottom: 20px;
}

.taller-lead {
  font-size: 1.15rem;
  color: var(--muted);
}

.taller-beneficios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}

.taller-beneficios div {
  padding: 13px 15px;
  background: var(--sky);
  border-radius: 14px;
  font-weight: 700;
  color: var(--blue-dark);
}

.taller-beneficios span {
  color: var(--blue);
  margin-right: 6px;
}

.taller-entidades {
  margin: 28px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--blue);
  background: #f7fbfd;
  border-radius: 0 14px 14px 0;
}

@media (max-width: 900px) {

  .taller-destacado {
    gap: 30px;
    padding: 26px;
  }

  .taller-destacado-imagen {
    min-height: 300px;
  }
}

@media (max-width: 560px) {

  .taller-beneficios {}

  .taller-destacado {
    padding: 18px;
    border-radius: 22px;
  }

  .taller-destacado-contenido {
    padding: 10px 4px;
  }
}
.mapa-zonas {
  margin-top: 42px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mapa-zonas iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
  border-radius: 22px;
}

@media (max-width: 900px) {
  .mapa-zonas iframe {
    height: 450px;
  }
}

@media (max-width: 560px) {
  .mapa-zonas {
    padding: 5px;
    border-radius: 22px;
  }

  .mapa-zonas iframe {
    height: 400px;
    border-radius: 17px;
  }
}
