:root {
  --teal: #00a8c4;
  --teal-dark: #08788d;
  --navy: #0a425d;
  --ink: #0a2430;
  --muted: #5f717a;
  --line: #d8edf1;
  --soft: #f2fbfd;
  --mint: #e8fbf7;
  --peach: #ffc680;
  --peach-soft: #fff1dd;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(10, 66, 93, 0.13);
  --shadow-strong: 0 28px 80px rgba(10, 66, 93, 0.2);
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, Poppins, Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

p {
  color: var(--muted);
}

ul {
  padding-left: 20px;
  margin: 16px 0 0;
  color: var(--muted);
}

li + li {
  margin-top: 8px;
}

.topbar {
  color: rgba(255, 255, 255, 0.88);
  background: var(--navy);
  font-size: 0.88rem;
}

.topbar-inner,
.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 700;
}

.topbar a:hover,
.footer a:hover {
  color: var(--peach);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(216, 237, 241, 0.9);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
}

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

.brand-logo-img {
  display: block;
  width: 184px;
  max-width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
}

.nav a:hover,
.nav .active {
  color: var(--teal-dark);
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.button-primary,
button {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 14px 28px rgba(0, 168, 196, 0.22);
}

.button-primary:hover,
button:hover {
  background: var(--teal-dark);
}

.button-outline {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(0, 168, 196, 0.42);
}

.button-soft {
  color: var(--navy);
  background: var(--soft);
  border-color: rgba(0, 168, 196, 0.2);
}

.button-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

.section {
  padding: 94px 0;
}

.section-soft {
  background: var(--soft);
}

.section-mint {
  background: linear-gradient(180deg, var(--white), var(--mint));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--peach);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 198, 128, 0.22), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f7fdff 52%, #eaf9fb 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 46px;
  min-height: 690px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 3.5rem;
  line-height: 1.04;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-photo {
  position: relative;
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 1.34 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.hero-card {
  position: absolute;
  left: -26px;
  bottom: 28px;
  max-width: 330px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  line-height: 1.25;
}

.hero-card small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.45;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 740px;
  margin: 0;
}

.trust-row div {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-row dt {
  color: var(--navy);
  font-weight: 900;
}

.trust-row dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading h2,
.page-hero h1 {
  margin-bottom: 16px;
  font-size: 2.55rem;
  line-height: 1.12;
}

.proof-grid,
.service-grid,
.deliverable-grid,
.blog-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.brand-section {
  padding: 72px 0;
}

.brand-panel {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 28px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(232, 251, 247, 0.9), rgba(255, 255, 255, 0.96)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.brand-emblem {
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
}

.brand-emblem img {
  width: 132px;
  height: 132px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 18px 28px rgba(0, 168, 196, 0.2));
}

.brand-message h2 {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--navy);
  font-size: 2.35rem;
  line-height: 1.08;
}

.brand-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.brand-points div {
  min-height: 92px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.brand-points strong,
.brand-points span {
  display: block;
}

.brand-points strong {
  color: var(--navy);
  font-size: 0.98rem;
}

.brand-points span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.proof-card,
.service-card,
.deliverable-card,
.blog-card,
.value-card,
.faq-item,
.contact-card,
.legal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-card,
.service-card,
.deliverable-card,
.blog-card,
.value-card,
.faq-item,
.contact-card,
.legal-card {
  padding: 26px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card img,
.blog-card img {
  width: calc(100% + 52px);
  max-width: none;
  height: 210px;
  margin: -26px -26px 24px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-kicker,
.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 10px;
  color: var(--teal-dark);
  background: var(--mint);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card h3,
.proof-card h3,
.deliverable-card h3,
.blog-card h3 {
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.24;
}

.service-card .button,
.blog-card .button {
  margin-top: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1fr);
  align-items: center;
  gap: 50px;
}

.split img,
.page-image img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.highlight-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.highlight-list div {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.number {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy);
  background: var(--peach-soft);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.process-step {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-step span {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-weight: 900;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 31, 42, 0.95), rgba(7, 31, 42, 0.78)),
    url("../images/hero-consultoria.png") center / cover no-repeat;
}

.cta-band h2,
.cta-band p,
.cta-band .eyebrow {
  color: var(--white);
}

.cta-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.page-hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 31, 42, 0.95), rgba(7, 31, 42, 0.68)),
    url("../images/capacitacion-bienestar.png") center / cover no-repeat;
}

.page-hero.telework {
  background:
    linear-gradient(90deg, rgba(7, 31, 42, 0.95), rgba(7, 31, 42, 0.68)),
    url("../images/teletrabajo-ergonomia.png") center / cover no-repeat;
}

.page-hero.safety {
  background:
    linear-gradient(90deg, rgba(7, 31, 42, 0.95), rgba(7, 31, 42, 0.68)),
    url("../images/cultura-seguridad.png") center / cover no-repeat;
}

.page-hero.plain {
  background:
    linear-gradient(90deg, rgba(7, 31, 42, 0.96), rgba(7, 31, 42, 0.82)),
    url("../images/hero-consultoria.png") center / cover no-repeat;
}

.page-hero .container {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 74px;
  padding-bottom: 74px;
}

.page-hero h1 {
  max-width: 780px;
  color: var(--white);
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

.page-hero .eyebrow {
  color: var(--white);
}

.feature-columns {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
}

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

.check-card {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.check-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 6px;
}

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

.contact-card {
  box-shadow: none;
}

.contact-logo {
  display: block;
  width: 216px;
  max-width: 100%;
  height: auto;
  margin-bottom: 6px;
}

.contact-card a {
  display: block;
  color: var(--teal-dark);
  font-weight: 800;
}

.contact-card a + a,
.contact-card p + a {
  margin-top: 8px;
}

.contact-card + .contact-card {
  margin-top: 16px;
}

.form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: #f8fcfd;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.form textarea {
  resize: vertical;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 3px solid rgba(0, 168, 196, 0.2);
  border-color: var(--teal);
}

.full {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.blog-empty {
  padding: 36px;
  background: var(--white);
  border: 1px dashed rgba(0, 168, 196, 0.55);
  border-radius: var(--radius);
}

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

.article h2 {
  margin-top: 42px;
  color: var(--navy);
}

.article h3 {
  margin-top: 28px;
  color: var(--navy);
}

.article-cover {
  width: 100%;
  margin: 30px 0;
  aspect-ratio: 1.8 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.source-list {
  padding: 20px;
  margin-top: 34px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.source-list h3 {
  margin-top: 0;
}

.source-list a {
  color: var(--teal-dark);
  font-weight: 800;
}

.note-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.article-cta {
  padding: 28px;
  margin-top: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-cta p {
  max-width: 700px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.article-meta {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer {
  color: var(--white);
  background: #071f2a;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.95fr 0.9fr;
  gap: 34px;
  padding: 60px 0 34px;
}

.footer h3,
.footer h4 {
  color: var(--white);
}

.footer-logo {
  display: block;
  width: 210px;
  max-width: 100%;
  height: auto;
  margin-bottom: 18px;
}

.footer p,
.footer a,
.footer span {
  color: rgba(255, 255, 255, 0.72);
}

.footer a,
.footer span {
  display: block;
  margin-top: 8px;
}

.footer-bottom {
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
}

@media (max-width: 1100px) {
  .nav-wrap {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    overflow-x: auto;
  }

  .hero-grid,
  .split,
  .feature-columns,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 68px 0;
  }

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

  .proof-grid,
  .brand-panel,
  .service-grid,
  .deliverable-grid,
  .blog-grid,
  .legal-grid,
  .check-grid,
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .process {
    grid-template-columns: repeat(3, 1fr);
  }

  .brand-panel {
    grid-template-columns: 132px 1fr;
  }

  .brand-points {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .nav-cta {
    width: 100%;
  }

  .nav-cta .button {
    width: 100%;
  }

  .section {
    padding: 66px 0;
  }

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

  .section-heading h2,
  .page-hero h1 {
    font-size: 2rem;
  }

  .hero-actions,
  .trust-row,
  .proof-grid,
  .brand-panel,
  .brand-points,
  .service-grid,
  .deliverable-grid,
  .blog-grid,
  .legal-grid,
  .check-grid,
  .footer-main,
  .form {
    grid-template-columns: 1fr;
  }

  .hero-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .brand-panel {
    padding: 24px;
    text-align: left;
  }

  .brand-emblem {
    width: 104px;
    height: 104px;
  }

  .brand-emblem img {
    width: 104px;
    height: 104px;
  }

  .brand-message h2 {
    font-size: 1.85rem;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .button,
  button {
    width: 100%;
  }

  .full {
    grid-column: auto;
  }
}
