:root {
  --color-primary: #009fd6;
  --color-primary-dark: #0078a8;
  --color-secondary: #f47a20;
  --color-accent: #4b5056;
  --color-bg: #f4fbff;
  --color-bg-warm: #fff7ef;
  --color-bg-dark: #172632;
  --color-text: #1d2935;
  --color-muted: #62717d;
  --color-line: #d7e5ed;
  --color-white: #ffffff;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-soft: 0 10px 30px rgba(23, 38, 50, 0.08);
  --shadow-card: 0 18px 46px rgba(23, 38, 50, 0.11);
  --focus-ring: 0 0 0 4px rgba(0, 159, 214, 0.18);
  --creamy-turquoise: #4fb7b4;
  --creamy-blue: #1c3d8c;
  --creamy-orange: #ef531a;
  --creamy-coral: #fe7e75;
  --creamy-bg: #fdf5e9;
  --cream: var(--color-bg-warm);
  --warm: #ffc247;
  --mango: var(--color-secondary);
  --red: #d62828;
  --chicha: #765039;
  --ink: var(--color-text);
  --teal: var(--color-primary-dark);
  --navy: var(--color-bg-dark);
  --muted: var(--color-muted);
  --line: var(--color-line);
  --white: var(--color-white);
  --soft: var(--color-bg);
  --shadow: var(--shadow-card);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(0, 159, 214, 0.08), transparent 34rem),
    var(--soft);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(0, 159, 214, 0.55);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(215, 229, 237, 0.95);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 28px rgba(23, 38, 50, 0.06);
}

.nav-wrap,
.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 180px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0;
}

.site-logo {
  width: auto;
  height: clamp(44px, 5vw, 58px);
  max-width: min(240px, 42vw);
  display: block;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.main-nav a {
  padding: 10px 11px;
  border-radius: 999px;
  color: var(--color-accent);
  font-size: 0.91rem;
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--color-primary-dark);
  background: rgba(0, 159, 214, 0.1);
}

.nav-cta,
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius-md);
  padding: 11px 19px;
  color: var(--white);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0, 159, 214, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 159, 214, 0.3);
}

.btn.secondary {
  color: var(--color-primary-dark);
  background: rgba(0, 159, 214, 0.08);
  border: 1px solid rgba(0, 159, 214, 0.2);
  box-shadow: none;
}

.btn.secondary:hover {
  background: rgba(0, 159, 214, 0.14);
  box-shadow: none;
}

.btn.dark {
  background: linear-gradient(135deg, var(--color-bg-dark), var(--color-accent));
  box-shadow: 0 10px 24px rgba(18, 48, 71, 0.2);
}

.hero {
  padding: 74px 0 46px;
  background:
    linear-gradient(135deg, rgba(0, 159, 214, 0.12), rgba(244, 122, 32, 0.1) 48%, rgba(255, 255, 255, 0.92)),
    var(--color-bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: 44px;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-bg-dark);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  margin-top: 14px;
  font-size: clamp(2.7rem, 7vw, 5.65rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

h3 {
  font-size: 1.2rem;
}

.lead {
  max-width: 680px;
  color: #344553;
  font-size: clamp(1.04rem, 2vw, 1.22rem);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-media {
  overflow: hidden;
  border: 1px solid rgba(0, 159, 214, 0.14);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-note {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 78px 0;
}

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

.section.accent {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 159, 214, 0.22), rgba(244, 122, 32, 0.16)),
    var(--color-bg-dark);
}

.section.accent h2,
.section.accent h3,
.section.accent .lead {
  color: var(--white);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.section-head p {
  max-width: 650px;
  margin: 10px 0 0;
  color: var(--muted);
}

.section.accent .section-head p {
  color: #d8e6ef;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.card strong,
.stat strong {
  display: block;
  color: var(--color-bg-dark);
  font-size: 1.04rem;
}

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

.product-card {
  overflow: hidden;
  padding: 0;
}

.product-visual {
  display: grid;
  min-height: 150px;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(0, 159, 214, 0.16), rgba(244, 122, 32, 0.18)),
    var(--color-bg-warm);
  color: var(--color-primary-dark);
  font-size: 3rem;
  font-weight: 900;
}

.product-card .card-body {
  padding: 22px;
}

.creamy-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 72px 0;
  background:
    linear-gradient(110deg, rgba(253, 245, 233, 0.97) 0%, rgba(253, 245, 233, 0.9) 48%, rgba(79, 183, 180, 0.82) 100%),
    url("../img/pdf-extraido/fondo-textura-turquesa.jpg") center / cover;
}

.creamy-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 380px;
  aspect-ratio: 1;
  right: -130px;
  bottom: -210px;
  border-radius: 50%;
  background: rgba(239, 83, 26, 0.2);
}

.creamy-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
}

.creamy-hero-copy h1 {
  max-width: 10ch;
  margin-top: 18px;
  color: var(--creamy-blue);
  font-size: clamp(2.65rem, 6vw, 5.3rem);
}

.creamy-hero-copy .lead {
  color: var(--color-text);
}

.creamy-logo {
  width: min(220px, 54vw);
  max-height: 180px;
  object-fit: contain;
  object-position: left center;
}

.creamy-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(28, 61, 140, 0.18);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--creamy-blue);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.creamy-hero-visual {
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.74);
  border-radius: 30px;
  background: var(--creamy-bg);
  box-shadow: 0 24px 60px rgba(28, 61, 140, 0.2);
  transform: rotate(1.25deg);
}

.creamy-hero-visual img {
  width: 100%;
  aspect-ratio: 7 / 6;
  object-fit: cover;
}

.creamy-hero-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  color: var(--creamy-blue);
  background: var(--creamy-bg);
  font-size: 0.9rem;
  font-weight: 800;
}

.btn.creamy-primary {
  color: var(--white);
  background: var(--creamy-blue);
  box-shadow: 0 12px 28px rgba(28, 61, 140, 0.24);
}

.btn.creamy-primary:hover {
  background: #152f70;
  box-shadow: 0 16px 34px rgba(28, 61, 140, 0.3);
}

.btn.creamy-secondary {
  border: 1px solid rgba(28, 61, 140, 0.28);
  color: var(--creamy-blue);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: none;
}

.btn.creamy-secondary:hover {
  background: var(--white);
  box-shadow: none;
}

.creamy-section {
  background: var(--creamy-bg);
}

.creamy-section .eyebrow,
.creamy-section-head .eyebrow {
  color: var(--creamy-blue);
}

.creamy-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.creamy-section-head p {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--color-muted);
}

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

.creamy-card {
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(28, 61, 140, 0.14);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(28, 61, 140, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.creamy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(28, 61, 140, 0.14);
}

.creamy-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.creamy-card-body {
  padding: 22px;
}

.creamy-card-body h3 {
  color: var(--creamy-blue);
}

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

.creamy-card-body .btn {
  margin-top: 16px;
}

.creamy-intro {
  border-left: 5px solid var(--creamy-coral);
}

.creamy-cta {
  color: var(--white);
  background: var(--creamy-blue);
}

.creamy-cta h2,
.creamy-cta h3,
.creamy-cta p {
  color: var(--white);
}

.creamy-cta p {
  opacity: 0.86;
}

.creamy-hero :focus-visible,
.creamy-section :focus-visible,
.creamy-cta :focus-visible {
  outline-color: var(--creamy-orange);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.pill-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--color-primary-dark);
  background: rgba(0, 159, 214, 0.08);
  font-weight: 750;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: start;
  gap: 44px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  border-left: 4px solid var(--color-secondary);
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.74);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.stat {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.form {
  display: grid;
  gap: 14px;
}

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

.form label {
  display: grid;
  gap: 7px;
  color: var(--color-bg-dark);
  font-weight: 800;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--color-primary);
  outline: 0;
  box-shadow: var(--focus-ring);
  background: #fbfdff;
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.notice {
  border: 1px solid rgba(244, 122, 32, 0.34);
  border-radius: var(--radius-md);
  padding: 16px;
  color: #743a0a;
  background: #fff3e8;
}

.map-placeholder {
  display: grid;
  min-height: 300px;
  place-items: center;
  border: 1px dashed rgba(0, 159, 214, 0.38);
  border-radius: var(--radius-lg);
  color: var(--color-primary-dark);
  background: linear-gradient(135deg, rgba(0, 159, 214, 0.08), rgba(244, 122, 32, 0.08));
  text-align: center;
  padding: 24px;
}

.article-list {
  display: grid;
  gap: 16px;
}

.article-item {
  display: grid;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.article-item time {
  color: var(--color-primary-dark);
  font-weight: 800;
  font-size: 0.9rem;
}

.site-footer {
  padding: 52px 0 28px;
  color: #dcebf4;
  background:
    linear-gradient(135deg, rgba(0, 159, 214, 0.16), rgba(244, 122, 32, 0.08)),
    var(--color-bg-dark);
}

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

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

.site-footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.site-footer a {
  color: #dcebf4;
}

.site-footer a:hover {
  color: var(--color-white);
  text-decoration: underline;
  text-decoration-color: var(--color-secondary);
  text-underline-offset: 4px;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 18px;
}

.contact-list--stacked {
  align-items: flex-start;
  flex-direction: column;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary-dark);
  font-weight: 800;
}

.contact-icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-list--footer {
  margin-top: 28px;
}

.contact-list--footer .contact-link {
  color: #dcebf4;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 34px;
  padding-top: 18px;
  color: #a9bac8;
  font-size: 0.9rem;
}

.site-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
  color: #a9bac8;
  font-size: 0.78rem;
}

.site-credit a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #dcebf4;
  font-weight: 700;
}

.site-credit-logo {
  width: auto;
  height: 33px;
  max-width: 66px;
  object-fit: contain;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--white);
  background: #128c7e;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(18, 140, 126, 0.32);
}

.whatsapp-float .contact-icon {
  width: 1.2em;
  height: 1.2em;
}

.page-hero {
  padding: 66px 0;
  background:
    linear-gradient(135deg, rgba(0, 159, 214, 0.1), rgba(244, 122, 32, 0.08)),
    var(--color-bg);
}

.page-hero h1 {
  max-width: 16ch;
}

.breadcrumbs {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 12px;
}

@media (max-width: 980px) {
  .nav-wrap {
    min-height: 76px;
  }

  .brand {
    min-width: 0;
  }

  .site-logo {
    height: 46px;
    max-width: min(220px, 52vw);
  }

  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav a {
    border-radius: var(--radius-md);
    padding: 12px 14px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .hero-grid,
  .split,
  .grid.two,
  .grid.three,
  .grid.four,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .creamy-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .creamy-hero-visual {
    width: min(560px, 100%);
  }

  .creamy-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nav-wrap,
  .container {
    width: min(100% - 24px, 1160px);
  }

  .nav-cta {
    display: none;
  }

  .site-logo {
    height: 40px;
    max-width: 58vw;
  }

  .hero,
  .page-hero {
    padding-top: 38px;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.35rem, 14vw, 3.7rem);
  }

  .section {
    padding: 52px 0;
  }

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

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

  .footer-bottom {
    display: block;
  }

  .whatsapp-float {
    left: 12px;
    right: 12px;
  }

  .creamy-hero {
    padding: 42px 0 54px;
  }

  .creamy-hero-grid,
  .creamy-products-grid {
    grid-template-columns: 1fr;
  }

  .creamy-hero-copy h1 {
    max-width: none;
  }

  .creamy-hero-visual {
    transform: none;
  }

  .creamy-section-head {
    display: block;
  }

  .creamy-section-head .btn {
    margin-top: 18px;
  }
}
