@import url("https://fonts.googleapis.com/css2?family=Lato:wght@600;700&display=swap");

:root {
  --teal: #18aaa8;
  --teal-dark: #099a98;
  --ink: #303032;
  --muted: #67717a;
  --paper: #e9f0f1;
  --white: #fff;
  --page-width: 1670px;
}

* { box-sizing: border-box; }
html { min-width: 320px; }
body { margin: 0; color: var(--ink); font-family: Arial, "Helvetica Neue", sans-serif; }
a { color: inherit; text-decoration: none; }

.topbar { height: 54px; color: rgba(255, 255, 255, .96); background: linear-gradient(90deg, var(--teal-dark), var(--teal)); border-bottom: 1px solid rgba(255, 255, 255, .2); }
.topbar__inner, .header__inner { width: min(calc(100% - 64px), var(--page-width)); margin: auto; display: flex; align-items: center; }
.topbar__inner { height: 100%; justify-content: space-between; font-size: 14px; font-weight: 700; letter-spacing: .2px; }
.utility-links { height: 100%; display: flex; align-items: center; gap: 16px; }
.utility { min-height: 34px; display: flex; align-items: center; gap: 9px; padding: 0 10px; border-radius: 999px; transition: background-color .2s ease, transform .2s ease, opacity .2s ease; }
.utility:hover, .utility:focus-visible { background: rgba(255, 255, 255, .12); opacity: .95; transform: translateY(-1px); outline: none; }
.utility svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.2; }

.site-header { height: 96px; color: var(--white); background: linear-gradient(180deg, #1db5b3 0%, var(--teal) 70%, #14a4a2 100%); box-shadow: 0 12px 26px rgba(18, 78, 80, .16); position: relative; z-index: 20; }
.site-header::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 1px; background: rgba(255, 255, 255, .28); }
.header__inner { height: 100%; justify-content: space-between; gap: 34px; position: relative; }
.logo { width: 205px; height: 80px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; padding: 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
.logo:hover { transform: none; box-shadow: none; }
.logo:focus-visible { transform: none; box-shadow: none; outline: 3px solid rgba(255, 255, 255, .9); outline-offset: 4px; }
.logo img { width: 100%; height: 100%; display: block; object-fit: contain; }
.main-nav { height: 100%; flex: 1; min-width: 0; align-self: stretch; display: flex; justify-content: flex-end; align-items: center; gap: clamp(18px, 2.4vw, 48px); font-family: "Lato", Arial, sans-serif; font-weight: 700; font-size: 15px; letter-spacing: .25px; }
.nav-item { height: 100%; display: flex; align-items: center; position: relative; }
.nav-link { height: 100%; display: flex; align-items: center; position: relative; padding-top: 4px; white-space: nowrap; transition: color .2s ease, opacity .2s ease; }
.nav-link::after { content: ""; position: absolute; height: 3px; width: 100%; max-width: 121px; bottom: 22px; left: 0; background: #d9e8c7; border-radius: 999px; opacity: 0; transform: scaleX(.7); transform-origin: left; transition: opacity .2s ease, transform .2s ease; }
.nav-link--active::after, .nav-link:hover::after, .nav-link:focus-visible::after, .nav-item--dropdown:hover .nav-link::after, .nav-item--dropdown:focus-within .nav-link::after, .nav-item--dropdown.is-open .nav-link::after { opacity: 1; transform: scaleX(1); }
.nav-link--active::after { width: 52px; }
.nav-link--has-submenu::after { width: 121px; }
.nav-chevron { width: 9px; height: 9px; margin-left: 13px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-3px); transition: transform .2s ease; }
.nav-item--dropdown:hover .nav-chevron, .nav-item--dropdown:focus-within .nav-chevron, .nav-item--dropdown.is-open .nav-chevron { transform: rotate(225deg) translate(-2px, -1px); }
.submenu { position: absolute; top: calc(100% - 4px); left: 50%; width: 320px; padding: 6px; background: var(--white); border: 0; border-top: 2px solid rgba(24, 170, 168, .28); border-radius: 0 0 8px 8px; box-shadow: 0 10px 24px rgba(22, 58, 62, .12); opacity: 0; visibility: hidden; transform: translate(-50%, 8px); pointer-events: none; transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
.submenu::before { content: none; }
.nav-item--dropdown:hover .submenu, .nav-item--dropdown:focus-within .submenu, .nav-item--dropdown.is-open .submenu { opacity: 1; visibility: visible; transform: translate(-50%, 0); pointer-events: auto; }
.submenu__link { min-height: 48px; display: flex; align-items: center; padding: 0 18px; border: 0; border-radius: 6px; color: #3c7478; font-size: 13px; font-weight: 600; line-height: 1.2; letter-spacing: .15px; text-transform: uppercase; transition: color .18s ease, background-color .18s ease, padding-left .18s ease; }
.submenu__link + .submenu__link { margin-top: 2px; }
.submenu__link:hover, .submenu__link:focus { color: var(--teal-dark); background: rgba(24, 170, 168, .08); padding-left: 20px; outline: none; }
.menu-toggle { width: 46px; height: 46px; flex: 0 0 auto; display: none; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: 1px solid rgba(255, 255, 255, .45); border-radius: 6px; color: var(--white); background: rgba(255, 255, 255, .13); cursor: pointer; transition: background-color .2s ease, transform .2s ease; }
.menu-toggle:hover, .menu-toggle:focus-visible { background: rgba(255, 255, 255, .22); transform: translateY(-1px); outline: none; }
.menu-toggle span { width: 23px; height: 2px; display: block; background: currentColor; border-radius: 999px; transition: transform .2s ease, opacity .2s ease; }
.site-header.is-menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.is-menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.is-menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { min-height: calc(100vh - 204px); position: relative; overflow: hidden; background: linear-gradient(112deg, rgba(255, 255, 255, .72) 0 43%, rgba(237, 246, 247, .45) 43% 100%), linear-gradient(180deg, #edf5f6 0%, #e5eff0 100%); }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(24, 170, 168, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(24, 170, 168, .05) 1px, transparent 1px); background-size: 56px 56px; -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, .35), transparent 68%); mask-image: linear-gradient(90deg, rgba(0, 0, 0, .35), transparent 68%); pointer-events: none; }
.hero::after { content: ""; position: absolute; top: 11%; right: -15%; width: 58%; height: 78%; background: linear-gradient(135deg, rgba(24, 170, 168, .14), rgba(255, 255, 255, 0)); transform: skewX(-13deg); pointer-events: none; }
.hero__inner { width: min(calc(100% - 64px), var(--page-width)); min-height: 865px; margin: auto; padding: 74px 0 68px; display: grid; grid-template-columns: minmax(500px, .92fr) minmax(420px, 1.08fr); align-items: center; gap: 54px; position: relative; z-index: 1; }
.hero__content { min-width: 0; padding: 0 0 0 22px; position: relative; z-index: 2; }
.hero__content::before { content: ""; position: absolute; top: 4px; left: 0; width: 4px; height: 116px; background: linear-gradient(180deg, var(--teal), rgba(24, 170, 168, 0)); border-radius: 999px; }
.hero__kicker { display: flex; align-items: flex-start; flex-wrap: wrap; gap: 14px; margin: 0 0 24px; }
.eyebrow { display: grid; gap: 7px; color: var(--teal); font-weight: 800; margin: 0; }
.eyebrow__label { display: block; font-size: 19px; line-height: 1.1; letter-spacing: 5px; }
.eyebrow__context { display: block; max-width: 580px; color: #607177; font-size: 13px; line-height: 1.35; letter-spacing: 1.2px; text-transform: uppercase; }
.hero__status { min-height: 32px; display: inline-flex; align-items: center; padding: 0 12px; border: 1px solid rgba(24, 170, 168, .28); border-radius: 8px; color: var(--teal-dark); background: rgba(255, 255, 255, .6); font-size: 12px; font-weight: 800; letter-spacing: 1.4px; }
h1 { font-size: 72px; max-width: 760px; line-height: 1.07; letter-spacing: 0; margin: 0 0 42px; font-weight: 800; }
.copy { width: 650px; max-width: 100%; padding-left: 22px; border-left: 3px solid rgba(24, 170, 168, .26); color: var(--muted); font-size: 18px; line-height: 1.68; }
.copy p { margin: 0 0 16px; }
.copy p:last-child { margin-bottom: 0; }
.copy strong { color: #4f575d; }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 48px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-width: 224px; height: 68px; border-radius: 40px; border: 1px solid transparent; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: white; font-size: 15px; font-weight: 800; box-shadow: 0 16px 26px rgba(1, 118, 117, .18); transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease; }
.button::after { content: ""; width: 9px; height: 9px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; transform: rotate(45deg); }
.button:hover, .button:focus-visible { background: linear-gradient(135deg, #19b9b7, var(--teal-dark)); box-shadow: 0 20px 32px rgba(1, 118, 117, .23); transform: translateY(-2px); outline: none; }
.button--secondary { min-width: 188px; color: var(--teal-dark); background: rgba(255, 255, 255, .58); border-color: rgba(24, 170, 168, .26); box-shadow: none; }
.button--secondary:hover, .button--secondary:focus-visible { color: var(--teal-dark); background: rgba(255, 255, 255, .86); border-color: rgba(24, 170, 168, .42); box-shadow: 0 12px 24px rgba(36, 90, 94, .1); }
.hero__signals { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero__signals span { min-height: 40px; display: inline-flex; align-items: center; padding: 0 14px; border: 1px solid rgba(24, 170, 168, .16); border-radius: 8px; background: rgba(255, 255, 255, .56); color: #546166; font-size: 12px; font-weight: 800; letter-spacing: .7px; }
.hero-visual { width: min(100%, 850px); margin: 0 -18px 0 auto; position: relative; display: flex; justify-content: center; align-items: center; }
.hero-visual::before { content: ""; position: absolute; right: 6%; bottom: 3%; width: 74%; height: 24%; background: rgba(56, 92, 94, .17); border-radius: 50%; filter: blur(24px); transform: rotate(-6deg); }
.hero-visual::after { content: ""; position: absolute; inset: 8% 3% 5% 15%; border: 1px solid rgba(24, 170, 168, .16); border-radius: 28px; transform: rotate(-2deg); opacity: .75; }
.hero-visual img { width: 100%; height: auto; position: relative; z-index: 1; display: block; object-fit: contain; filter: drop-shadow(0 30px 34px rgba(42, 76, 78, .2)); }
.hero-visual__note { position: absolute; right: 5%; bottom: 16%; z-index: 2; min-height: 44px; display: inline-flex; align-items: center; padding: 0 15px; border: 1px solid rgba(24, 170, 168, .2); border-radius: 8px; background: rgba(255, 255, 255, .86); color: var(--teal-dark); box-shadow: 0 14px 26px rgba(30, 77, 80, .14); font-size: 12px; font-weight: 800; letter-spacing: .8px; }

/* Ordenador: 1181px en adelante */
@media (min-width: 1181px) {
  .menu-toggle { display: none; }
}

@media (min-width: 1181px) and (max-width: 1440px) {
  .submenu { width: 310px; padding: 6px; }
  .submenu__link { min-height: 46px; padding: 0 18px; font-size: 13px; }
  .submenu__link:hover, .submenu__link:focus { padding-left: 20px; }
  .hero__inner { min-height: 720px; grid-template-columns: minmax(420px, .95fr) minmax(380px, 1fr); gap: 28px; padding: 56px 0; }
  .hero__kicker { margin-bottom: 20px; }
  h1 { max-width: 700px; font-size: 54px; margin-bottom: 40px; }
  .copy { width: 580px; font-size: 17px; line-height: 1.65; }
  .hero__actions { margin-top: 38px; }
  .button { height: 64px; }
  .hero-visual { width: min(100%, 650px); margin-right: -8px; }
  .hero-visual__note { right: 4%; bottom: 13%; }
}

/* Tableta: 761px a 1180px */
@media (min-width: 761px) and (max-width: 1180px) {
  .topbar { height: 50px; }
  .topbar__inner, .header__inner, .hero__inner { width: min(calc(100% - 52px), var(--page-width)); }
  .site-header { height: 82px; }
  .header__inner { gap: 24px; }
  .logo { width: 164px; height: 68px; padding: 0; }
  .menu-toggle { display: flex; }
  .main-nav { position: absolute; top: 100%; right: 0; left: 0; height: auto; display: grid; gap: 0; align-items: stretch; padding: 8px 0; background: var(--white); color: var(--ink); box-shadow: 0 18px 32px rgba(33, 65, 68, .16); opacity: 0; visibility: hidden; transform: translateY(-8px); pointer-events: none; transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
  .site-header.is-menu-open .main-nav { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
  .nav-item { height: auto; display: block; }
  .nav-link { min-height: 54px; height: auto; padding: 0 28px; color: var(--ink); border-bottom: 1px solid #edf4f4; }
  .nav-link::after { display: none; }
  .nav-chevron { margin-left: auto; border-color: var(--teal); }
  .submenu { position: static; width: 100%; max-height: 0; padding: 0; border: 0; border-radius: 0; box-shadow: none; overflow: hidden; opacity: 1; visibility: visible; transform: none; pointer-events: none; transition: max-height .24s ease, padding .24s ease; }
  .submenu::before { display: none; }
  .nav-item--dropdown:hover .submenu, .nav-item--dropdown:focus-within .submenu, .nav-item--dropdown.is-open .submenu { max-height: 290px; padding: 2px 0 8px; transform: none; pointer-events: auto; }
  .submenu__link { min-height: 46px; padding: 0 22px; font-size: 13px; background: #fff; border: 0; }
  .submenu__link:hover, .submenu__link:focus { padding-left: 24px; }
  .hero { min-height: calc(100vh - 164px); }
  .hero__inner { min-height: 650px; grid-template-columns: minmax(330px, 1fr) minmax(260px, .82fr); align-items: center; padding: 48px 0; gap: 22px; }
  .hero__content { max-width: 520px; padding-left: 18px; }
  .hero__content::before { height: 92px; }
  .hero__kicker { gap: 8px; margin-bottom: 16px; }
  .eyebrow { gap: 5px; }
  .eyebrow__label { font-size: 14px; letter-spacing: 3px; }
  .eyebrow__context { max-width: 430px; font-size: 11px; letter-spacing: .8px; }
  .hero__status { min-height: 28px; padding: 0 9px; font-size: 10px; letter-spacing: 1px; }
  h1 { max-width: 500px; font-size: 42px; letter-spacing: 0; margin-bottom: 26px; }
  .copy { width: auto; padding-left: 16px; font-size: 15px; line-height: 1.58; }
  .hero__actions { margin-top: 26px; gap: 10px; }
  .button { height: 58px; min-width: 178px; font-size: 13px; }
  .button--secondary { min-width: 158px; }
  .hero__signals { margin-top: 18px; gap: 7px; }
  .hero__signals span { min-height: 34px; padding: 0 10px; font-size: 10px; }
  .hero-visual { width: min(100%, 430px); margin: 0 -8px 0 auto; }
  .hero-visual__note { min-height: 36px; padding: 0 11px; font-size: 10px; }
}

@media (min-width: 761px) and (max-width: 900px) {
  .hero__inner { grid-template-columns: minmax(300px, .98fr) minmax(220px, .72fr); gap: 16px; }
  .eyebrow__label { font-size: 12px; letter-spacing: 2px; }
  .eyebrow__context { max-width: 310px; font-size: 10px; letter-spacing: .6px; }
  .hero__status { display: none; }
  h1 { font-size: 36px; margin-bottom: 22px; }
  .copy { font-size: 14px; line-height: 1.55; }
  .hero__actions { margin-top: 22px; }
  .button { height: 54px; min-width: 164px; }
  .button--secondary { display: none; }
  .hero__signals { display: none; }
  .hero-visual { width: min(100%, 360px); margin-right: -18px; }
  .hero-visual__note { display: none; }
}

/* Celular: hasta 760px */
@media (max-width: 760px) {
  .topbar { height: 46px; }
  .topbar__inner, .header__inner, .hero__inner { width: min(calc(100% - 40px), var(--page-width)); }
  .utility-links { gap: 15px; }
  .utility span { display: none; }
  .site-header { height: 68px; }
  .logo { width: 128px; height: 56px; padding: 0; }
  .menu-toggle { display: flex; width: 46px; height: 46px; }
  .main-nav { position: absolute; top: calc(100% + 10px); right: 0; left: 0; height: auto; max-height: calc(100vh - 154px); display: grid; gap: 7px; align-items: stretch; padding: 10px; overflow-y: auto; color: var(--ink); background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(245, 252, 252, .98)), repeating-linear-gradient(135deg, rgba(24, 170, 168, .06) 0, rgba(24, 170, 168, .06) 1px, transparent 1px, transparent 10px); border: 1px solid rgba(24, 170, 168, .18); border-radius: 14px; box-shadow: 0 22px 40px rgba(23, 61, 64, .2), 0 3px 10px rgba(23, 61, 64, .08); opacity: 0; visibility: hidden; transform: translateY(-8px); pointer-events: none; transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
  .main-nav::before { content: ""; position: absolute; top: 8px; right: 18px; width: 28px; height: 3px; background: var(--teal); border-radius: 999px; opacity: .55; }
  .site-header.is-menu-open .main-nav { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
  .nav-item { height: auto; display: block; }
  .nav-link { min-height: 50px; height: auto; padding: 0 16px; color: var(--ink); background: rgba(255, 255, 255, .78); border: 1px solid rgba(24, 170, 168, .12); border-radius: 9px; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8); }
  .nav-link:hover, .nav-link:focus-visible { color: var(--teal-dark); background: rgba(239, 250, 250, .95); border-color: rgba(24, 170, 168, .28); outline: none; }
  .nav-link::after { display: none; }
  .nav-chevron { margin-left: auto; border-color: var(--teal); }
  .submenu { position: static; width: 100%; max-height: 0; margin: 0; padding: 0; background: #fff; border: 0; border-radius: 8px; box-shadow: none; overflow: hidden; opacity: 1; visibility: visible; transform: none; pointer-events: none; transition: max-height .24s ease, padding .24s ease, margin .24s ease; }
  .submenu::before { display: none; }
  .nav-item--dropdown:hover .submenu, .nav-item--dropdown:focus-within .submenu, .nav-item--dropdown.is-open .submenu { max-height: 280px; margin: 7px 0 2px; padding: 6px; transform: none; pointer-events: auto; }
  .submenu__link { min-height: 44px; padding: 0 16px; font-size: 13px; background: transparent; border: 0; border-radius: 6px; }
  .submenu__link + .submenu__link { margin-top: 2px; }
  .submenu__link:hover, .submenu__link:focus { background: rgba(24, 170, 168, .08); padding-left: 18px; }
  .hero { min-height: calc(100vh - 134px); }
  .hero__inner { display: flex; flex-direction: column; align-items: flex-start; min-height: 0; padding: 72px 0 26px; gap: 0; }
  .hero__content { width: 100%; padding-left: 16px; }
  .hero__content::before { height: 88px; }
  .hero__kicker { gap: 8px; margin-bottom: 18px; }
  .eyebrow { gap: 5px; }
  .eyebrow__label { font-size: 13px; letter-spacing: 2px; }
  .eyebrow__context { max-width: 300px; font-size: 10px; letter-spacing: .5px; }
  .hero__status { min-height: 28px; padding: 0 9px; font-size: 10px; letter-spacing: .9px; }
  h1 { max-width: 100%; font-size: 38px; letter-spacing: 0; margin-bottom: 34px; overflow-wrap: break-word; }
  .copy { padding-left: 15px; font-size: 16px; line-height: 1.6; }
  .hero__actions { width: 100%; margin-top: 30px; gap: 10px; }
  .button { height: 58px; min-width: 190px; font-size: 14px; }
  .button--secondary { min-width: 168px; }
  .hero__signals { display: grid; grid-template-columns: 1fr; width: 100%; margin-top: 18px; gap: 7px; }
  .hero__signals span { min-height: 34px; padding: 0 10px; font-size: 10px; }
  .hero-visual { width: min(112%, 430px); margin: 24px 0 0 -6%; }
  .hero-visual::before { right: 3%; bottom: 4%; width: 78%; height: 22%; filter: blur(16px); }
  .hero-visual::after, .hero-visual__note { display: none; }
}

@media (min-width: 560px) and (max-width: 760px) {
  .hero__inner { display: grid; grid-template-columns: minmax(300px, 1fr) minmax(190px, .66fr); align-items: center; min-height: 620px; padding: 52px 0; gap: 14px; }
  .hero__content { max-width: 380px; }
  .eyebrow__label { font-size: 12px; letter-spacing: 2px; }
  .eyebrow__context { display: none; }
  .hero__status { display: none; }
  h1 { font-size: 34px; margin-bottom: 22px; }
  .copy { font-size: 14px; line-height: 1.55; }
  .hero__actions { margin-top: 24px; }
  .button { height: 54px; min-width: 166px; font-size: 13px; }
  .button--secondary, .hero__signals { display: none; }
  .hero-visual { width: min(100%, 320px); margin: 0 -22px 0 auto; }
}

/* Acabados visuales: se conserva la composición, la paleta y las dimensiones. */
:root {
  --teal-wash: rgba(24, 170, 168, .1);
  --teal-glow: rgba(24, 170, 168, .22);
  --header-shadow: rgba(11, 75, 77, .2);
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection { color: var(--white); background: var(--teal-dark); }

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(217, 232, 199, .9);
  outline-offset: 4px;
}

.topbar {
  position: relative;
  isolation: isolate;
  color: #4b5563;
  background: #f8f9fa;
  border-bottom-color: rgba(0, 150, 136, .32);
  box-shadow: 0 3px 10px rgba(31, 41, 55, .09);
}

.topbar::before {
  content: none;
}

.utility {
  border: 1px solid transparent;
  text-shadow: none;
}

.utility:hover,
.utility:focus-visible {
  color: #374151;
  background: rgba(0, 150, 136, .08);
  border-color: rgba(0, 150, 136, .14);
  box-shadow: none;
}

.utility svg {
  color: #008f83;
  filter: none;
}

.site-header {
  isolation: isolate;
  position: sticky;
  top: 0;
  background:
    radial-gradient(ellipse at 14% 0%, rgba(255, 255, 255, .09), transparent 32%),
    radial-gradient(ellipse at 92% 105%, rgba(3, 117, 116, .24), transparent 42%),
    linear-gradient(180deg, rgba(29, 181, 179, .91) 0%, rgba(24, 170, 168, .9) 70%, rgba(20, 164, 162, .91) 100%);
  box-shadow: 0 14px 30px var(--header-shadow), inset 0 1px rgba(255, 255, 255, .07);
  transform: translateY(0);
  transition: transform .34s cubic-bezier(.22, .61, .36, 1), box-shadow .34s ease;
  -webkit-backdrop-filter: blur(8px) saturate(110%);
  backdrop-filter: blur(8px) saturate(110%);
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 2px));
  box-shadow: none;
  pointer-events: none;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .2;
  background-image: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, .1) 47%, transparent 65%);
}

.site-header::after {
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .08), rgba(217, 232, 199, .52) 48%, rgba(255, 255, 255, .08));
  box-shadow: 0 1px 6px rgba(217, 232, 199, .16);
}



.main-nav { text-shadow: 0 1px 1px rgba(0, 89, 88, .15); }

.nav-link { opacity: .92; }

.nav-link:hover,
.nav-link:focus-visible,
.nav-link--active { color: #fff; opacity: 1; }

.nav-link::after {
  background: linear-gradient(90deg, #c9ddb8, rgba(255, 255, 255, .75));
  box-shadow: 0 2px 6px rgba(217, 232, 199, .28);
}

.submenu {
  background: #fff;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.submenu::before { content: none; }

.submenu__link {
  position: relative;
  color: #3c7478;
  text-shadow: none;
}

.submenu__link::after {
  content: none;
}

.submenu__link:hover,
.submenu__link:focus {
  background: rgba(24, 170, 168, .08);
  box-shadow: none;
}

.menu-toggle {
  box-shadow: inset 0 1px rgba(255, 255, 255, .18), 0 7px 16px rgba(0, 86, 86, .12);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  box-shadow: inset 0 1px rgba(255, 255, 255, .24), 0 10px 18px rgba(0, 86, 86, .16);
}

.hero {
  background:
    radial-gradient(ellipse at 5% 11%, rgba(255, 255, 255, .54), transparent 32%),
    linear-gradient(112deg, rgba(255, 255, 255, .58) 0 43%, rgba(237, 246, 247, .4) 43% 100%),
    linear-gradient(180deg, #edf5f6 0%, #e5eff0 100%);
}

.hero::before {
  opacity: .82;
  background-image:
    linear-gradient(rgba(24, 170, 168, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 170, 168, .05) 1px, transparent 1px),
    radial-gradient(circle at 34% 30%, rgba(24, 170, 168, .1), transparent 22%);
}

.hero::after {
  background: linear-gradient(135deg, rgba(24, 170, 168, .18), rgba(255, 255, 255, 0) 63%);
}

.hero__content::before {
  background: linear-gradient(180deg, #20b9b7 0%, var(--teal) 58%, rgba(24, 170, 168, 0));
  box-shadow: 0 0 9px rgba(24, 170, 168, .2);
}

.eyebrow__label { text-shadow: 0 1px rgba(255, 255, 255, .42); }

.eyebrow__context { color: #5e7075; }

.hero__status {
  background: linear-gradient(145deg, rgba(255, 255, 255, .66), rgba(235, 247, 247, .54));
  box-shadow: inset 0 1px rgba(255, 255, 255, .62), 0 6px 16px rgba(31, 94, 96, .06);
}

h1 {
  color: transparent;
  background: linear-gradient(135deg, #2d3133 12%, #303032 51%, #267d80 125%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 1px rgba(255, 255, 255, .24);
}

.copy {
  border-left-color: rgba(24, 170, 168, .38);
  text-shadow: 0 1px rgba(255, 255, 255, .58);
}

.copy strong { color: #3f4c51; }

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, #16acab 0%, var(--teal) 52%, var(--teal-dark) 100%);
  box-shadow: 0 16px 26px rgba(1, 118, 117, .18), inset 0 1px rgba(255, 255, 255, .14), inset 0 -1px rgba(0, 89, 88, .16);
  text-shadow: 0 1px rgba(0, 90, 89, .22);
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .48;
  background: linear-gradient(112deg, transparent 20%, rgba(255, 255, 255, .16) 47%, transparent 62%);
  transform: translateX(-65%);
  transition: transform .45s ease;
}

.button::after { position: relative; }

.button:hover::before,
.button:focus-visible::before { transform: translateX(65%); }

.button:hover,
.button:focus-visible {
  background: linear-gradient(135deg, #1bb2b0 0%, var(--teal) 52%, var(--teal-dark) 100%);
  box-shadow: 0 21px 34px rgba(1, 118, 117, .22), inset 0 1px rgba(255, 255, 255, .18), inset 0 -1px rgba(0, 89, 88, .16);
}

.button--secondary {
  background: linear-gradient(145deg, rgba(255, 255, 255, .68), rgba(234, 247, 247, .5));
  box-shadow: inset 0 1px rgba(255, 255, 255, .68), 0 5px 14px rgba(36, 90, 94, .04);
  text-shadow: none;
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: linear-gradient(145deg, rgba(255, 255, 255, .95), rgba(234, 248, 248, .76));
  box-shadow: 0 14px 26px rgba(36, 90, 94, .12), inset 0 1px rgba(255, 255, 255, .95);
}

.hero__signals span {
  background: linear-gradient(145deg, rgba(255, 255, 255, .65), rgba(235, 248, 248, .44));
  border-color: rgba(24, 170, 168, .2);
  box-shadow: inset 0 1px rgba(255, 255, 255, .85), 0 5px 12px rgba(35, 91, 93, .04);
}

.hero-visual::before {
  background: rgba(42, 83, 86, .19);
  filter: blur(28px);
}

.hero-visual::after {
  border-color: rgba(24, 170, 168, .22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12), 0 18px 36px rgba(37, 102, 103, .06);
}

.hero-visual img {
  filter: drop-shadow(0 32px 36px rgba(42, 76, 78, .22));
  transition: filter .3s ease, transform .3s ease;
}

.hero-visual:hover img { filter: drop-shadow(0 36px 40px rgba(42, 76, 78, .26)); transform: translateY(-3px); }

.hero-visual__note {
  background: linear-gradient(145deg, rgba(255, 255, 255, .84), rgba(234, 247, 247, .72));
  border-color: rgba(24, 170, 168, .25);
  box-shadow: 0 16px 30px rgba(30, 77, 80, .14), inset 0 1px rgba(255, 255, 255, .75);
}

@media (min-width: 761px) and (max-width: 1180px) {
  .main-nav {
    background: linear-gradient(180deg, rgba(255, 255, 255, .99), rgba(244, 252, 252, .99));
    box-shadow: 0 20px 36px rgba(33, 65, 68, .18), inset 0 1px rgba(255, 255, 255, .9);
    text-shadow: none;
  }

  .nav-link { opacity: 1; }

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

@media (max-width: 760px) {
  .main-nav { text-shadow: none; }

  .nav-link { opacity: 1; }

  .nav-link--active {
    color: var(--teal-dark);
    background: linear-gradient(90deg, rgba(239, 250, 250, .95), rgba(255, 255, 255, .86));
    border-color: rgba(24, 170, 168, .24);
  }

  .submenu__link::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Hero carousel */
.hero {
  min-height: 630px;
  min-height: clamp(630px, calc(100svh - 143px), 756px);
  isolation: isolate;
  font-family: "Lato", Arial, sans-serif;
  background:
    radial-gradient(ellipse at 80% 48%, rgba(34, 190, 186, .18) 0%, rgba(116, 220, 216, .08) 27%, transparent 53%),
    radial-gradient(circle at 96% 4%, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, 0) 31%),
    linear-gradient(112deg, rgba(255, 255, 255, .99) 0 39%, rgba(250, 253, 253, .92) 48%, rgba(231, 247, 246, .82) 100%),
    #eef8f8;
}

.hero::before {
  content: "";
  inset: -24% -15% -28% 34%;
  opacity: .92;
  background-image:
    radial-gradient(ellipse at 78% 62%,
      transparent 0 33.5%,
      rgba(38, 195, 190, .17) 34% 34.7%,
      transparent 35.2% 40.8%,
      rgba(38, 195, 190, .1) 41.3% 42%,
      transparent 42.5% 48.5%,
      rgba(255, 255, 255, .82) 49% 50.2%,
      transparent 50.8%),
    linear-gradient(rgba(24, 170, 168, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 170, 168, .035) 1px, transparent 1px);
  background-size: auto, 52px 52px, 52px 52px;
  transform: rotate(-7deg);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .5) 17%, #000 34%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .5) 17%, #000 34%);
}

.hero::after {
  content: "";
  top: auto;
  right: -12%;
  bottom: -44%;
  width: 72%;
  height: 84%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(24, 170, 168, .15) 0%, rgba(70, 203, 199, .08) 38%, transparent 71%);
  transform: none;
  filter: blur(10px);
}

.hero-carousel,
.hero-carousel__viewport {
  width: 100%;
  max-width: 100%;
  min-height: inherit;
  min-width: 0;
  position: relative;
}

.hero-carousel__viewport { display: grid; }

.hero-slide {
  grid-area: 1 / 1;
  min-width: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(14px);
  pointer-events: none;
  transition:
    opacity .62s ease,
    transform .62s cubic-bezier(.22, .61, .36, 1),
    visibility 0s linear .62s;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
  transition-delay: 0s;
}

.hero .hero__inner {
  width: min(calc(100% - 48px), 1360px);
  min-height: clamp(610px, calc(100svh - 143px), 720px);
  margin: 0 auto;
  padding: 42px 0 48px;
  display: grid;
  grid-template-columns: minmax(470px, .94fr) minmax(400px, .86fr);
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}

.hero .hero__content {
  width: 100%;
  max-width: 650px;
  padding: 0;
}

.hero .hero__content::before { content: none; }

.hero .hero__kicker {
  margin: 0 0 22px;
  padding-left: 18px;
  position: relative;
  display: grid;
  justify-items: start;
  gap: 9px;
}

.hero .hero__kicker::before {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--teal), rgba(24, 170, 168, .18));
}

.hero .eyebrow {
  gap: 8px;
  color: #087f7d;
}

.hero .eyebrow__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 3px;
  text-shadow: none;
}

.hero .eyebrow__label::before {
  content: none;
}

.hero .eyebrow__context {
  max-width: 510px;
  color: #66787c;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 1px;
}

.hero .hero__status {
  min-height: 28px;
  margin: 0;
  padding: 0 10px;
  flex: 0 0 auto;
  border-color: rgba(24, 170, 168, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  box-shadow: none;
  font-size: 10px;
  letter-spacing: 1.1px;
}

.hero .hero__title {
  max-width: 560px;
  margin: 0 0 24px;
  color: #5c6062;
  background: none;
  font-size: clamp(48px, 4.35vw, 68px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -.025em;
  text-shadow: none;
  overflow-wrap: normal;
}

.hero .hero__title > span { display: inline; }

.hero .hero__title-accent {
  color: inherit;
}

.hero .copy {
  width: 620px;
  max-width: 100%;
  padding: 0 0 0 18px;
  border: 0;
  border-left: 2px solid rgba(24, 170, 168, .48);
  color: #5d7075;
  font-size: 16px;
  line-height: 1.62;
  text-shadow: none;
}

.hero .copy p { margin-bottom: 10px; }
.hero .copy strong { color: #31494e; }

.hero .hero__actions {
  margin-top: 28px;
  gap: 12px;
}

.hero .button {
  min-width: 196px;
  height: 54px;
  border-radius: 999px;
  background: #13aaa7;
  box-shadow: 0 10px 22px rgba(3, 127, 125, .16);
  font-size: 13px;
  text-shadow: none;
}

.hero .button::before { content: none; }

.hero .button:hover,
.hero .button:focus-visible {
  background: #078f8d;
  box-shadow: 0 13px 25px rgba(3, 127, 125, .2);
}

.hero .button--secondary {
  min-width: 174px;
  color: #087f7d;
  background: rgba(255, 255, 255, .7);
  border-color: rgba(8, 143, 141, .28);
  box-shadow: none;
}

.hero .button--secondary:hover,
.hero .button--secondary:focus-visible {
  color: #066f6d;
  background: #fff;
  border-color: rgba(8, 143, 141, .42);
  box-shadow: 0 9px 20px rgba(36, 90, 94, .09);
}

.hero .hero__signals {
  margin-top: 26px;
  padding-top: 18px;
  gap: 24px;
  border-top: 1px solid rgba(49, 91, 94, .13);
}

.hero .hero__signals span {
  min-height: 0;
  padding: 0;
  border: 0;
  background: none;
  color: #52666b;
  box-shadow: none;
  font-size: 10px;
  letter-spacing: .65px;
}

.hero .hero__signals span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border: 2px solid var(--teal);
  border-radius: 50%;
}

.hero .hero-visual {
  width: min(94%, 650px);
  margin: 0 auto;
}

.hero .hero-visual::before {
  right: 12%;
  bottom: 4%;
  width: 72%;
  height: 17%;
  background: rgba(31, 76, 80, .14);
  filter: blur(25px);
  transform: none;
}

.hero .hero-visual::after { content: none; }

.hero .hero-visual img {
  width: 100%;
  max-height: 570px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 22px 24px rgba(31, 66, 70, .16));
  transition: transform .35s ease, filter .35s ease;
}

.hero-slide--image-fade .hero-visual img {
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, .12) 0%, rgba(0, 0, 0, .58) 15%, #000 34%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .12) 0%, rgba(0, 0, 0, .58) 15%, #000 34%);
}

.hero .hero-visual:hover img {
  transform: translateY(-2px);
  filter: drop-shadow(0 25px 28px rgba(31, 66, 70, .19));
}

.hero .hero-visual__note {
  right: 4%;
  bottom: 7%;
  min-height: 38px;
  padding: 0 13px;
  border-color: rgba(24, 170, 168, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 9px 20px rgba(30, 77, 80, .1);
  font-size: 10px;
  letter-spacing: .7px;
}

/* Tarjeta IA: primer slide del Hero */
.hero .hero-slide--image-fade .hero-ai-card {
  width: min(278px, 39%);
  min-height: 0;
  top: 24%;
  right: auto;
  bottom: auto;
  left: -45px;
  display: grid;
  justify-items: start;
  gap: 13px;
  padding: 15px 16px 14px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 16px;
  background: rgba(255, 255, 255, .87);
  color: #3e555a;
  box-shadow: 0 14px 28px rgba(25, 72, 75, .13);
  backdrop-filter: blur(9px);
  transform: translate(20%, -50%);
  transition: background-color .25s ease;
}

.hero .hero-slide--image-fade .hero-ai-card:hover { background: transparent; }

.hero-ai-card__tag {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(71, 103, 107, .08);
  color: #168d8b;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .8px;
}

.hero-ai-card__tag i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(24, 170, 168, .13);
}

.hero-ai-card__copy { color: #465c61; font-size: 11px; font-weight: 600; letter-spacing: 0; line-height: 1.45; }
.hero-ai-card__link { display: inline-flex; align-items: center; gap: 8px; color: #078b89; font-size: 10px; font-weight: 800; letter-spacing: .1px; }
.hero-ai-card__link i { width: 6px; height: 6px; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; transform: rotate(45deg); transition: transform .2s ease; }
.hero-ai-card__link:hover i, .hero-ai-card__link:focus-visible i { transform: translateX(3px) rotate(45deg); }
.hero-ai-card__link:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

.hero-carousel__controls {
  position: absolute;
  right: max(24px, calc((100% - 1500px) / 2));
  bottom: 13px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 2px;
}

.hero-carousel__dot {
  width: 28px;
  height: 28px;
  padding: 0;
  position: relative;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero-carousel__dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(59, 91, 95, .28);
  transform: translate(-50%, -50%);
  transition: width .2s ease, background-color .2s ease;
}

.hero-carousel__dot.is-active::before {
  width: 20px;
  background: var(--teal);
}

.hero-carousel__dot:focus-visible {
  outline-color: var(--teal-dark);
  outline-offset: 0;
}

@media (min-width: 1181px) and (max-width: 1440px) {
  .hero .hero__inner {
    width: min(calc(100% - 48px), 1360px);
    min-height: clamp(599px, calc(100svh - 143px), 683px);
    padding: 38px 0 48px;
    grid-template-columns: minmax(446px, 1fr) minmax(383px, 1fr);
    gap: 26px;
  }

  .hero .hero__title { font-size: 52px; }
  .hero .copy { font-size: 15px; }
  .hero .hero-visual { width: min(94%, 590px); }
  .hero .hero-visual img { max-height: 525px; }
  .hero-carousel__controls { right: 24px; }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .hero {
    min-height: 567px;
    min-height: clamp(567px, calc(100svh - 125px), 651px);
  }

  .hero .hero__inner {
    width: min(calc(100% - 24px), 1218px);
    min-height: inherit;
    padding: 36px 0 48px;
    grid-template-columns: minmax(389px, 1.04fr) minmax(305px, .78fr);
    gap: 25px;
  }

  .hero .hero__content { max-width: 578px; }
  .hero .hero__kicker { margin-bottom: 17px; }
  .hero .eyebrow__label { font-size: 11px; letter-spacing: 2px; }
  .hero .eyebrow__context { max-width: 400px; font-size: 9px; }
  .hero .hero__title { margin-bottom: 18px; font-size: 42px; }
  .hero .copy { font-size: 14px; line-height: 1.55; }
  .hero .hero__actions { margin-top: 22px; }
  .hero .button { min-width: 166px; height: 48px; font-size: 11px; }
  .hero .button--secondary { min-width: 150px; }
  .hero .hero__signals { margin-top: 20px; padding-top: 14px; gap: 14px; }
  .hero .hero-visual { width: min(96%, 478px); }
  .hero .hero-visual img { max-height: 441px; }
  .hero .hero-visual__note { display: inline-flex; }
  .hero-carousel__controls { right: 18px; bottom: 8px; }
}

@media (min-width: 761px) and (max-width: 900px) {
  .hero .hero__inner {
    grid-template-columns: minmax(362px, 1.04fr) minmax(242px, .64fr);
    gap: 17px;
  }

  .hero .hero__content { max-width: 593px; }
  .hero .hero__status { display: inline-flex; }
  .hero .eyebrow__context { max-width: 300px; }
  .hero .hero__title { font-size: 36px; }
  .hero .button--secondary { display: inline-flex; }
  .hero .hero__signals { display: flex; }
  .hero .hero-visual { width: min(94%, 357px); margin: 0 auto; }
  .hero .hero-visual__note { display: none; }
}

@media (max-width: 760px) {
  .hero { min-height: 0; }

  .hero::before {
    inset: 38% -52% -18% 4%;
    background-size: auto, 38px 38px, 38px 38px;
    transform: rotate(-11deg);
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%);
    mask-image: linear-gradient(180deg, transparent, #000 30%);
  }

  .hero::after {
    right: -48%;
    bottom: -5%;
    width: 125%;
    height: 38%;
  }

  .hero .hero__inner {
    width: min(calc(100% - 16px), 693px);
    min-height: 0;
    padding: 44px 0 69px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .hero .hero__content {
    width: 100%;
    max-width: none;
    min-width: 0;
    padding: 0;
  }

  .hero .hero__kicker { margin-bottom: 18px; align-items: flex-start; }
  .hero .eyebrow { gap: 6px; }
  .hero .eyebrow__label { font-size: 11px; letter-spacing: 1.8px; }
  .hero .eyebrow__context { display: block; max-width: 310px; font-size: 9px; letter-spacing: .7px; }
  .hero .hero__status { display: inline-flex; min-height: 26px; font-size: 9px; }
  .hero .hero__title { margin-bottom: 20px; font-size: clamp(34px, 10vw, 44px); overflow-wrap: anywhere; }
  .hero .copy { font-size: 14px; line-height: 1.55; }
  .hero .hero__actions { width: 100%; margin-top: 24px; }
  .hero .button { min-width: 172px; height: 50px; font-size: 12px; }
  .hero .button--secondary { display: inline-flex; min-width: 152px; }
  .hero .hero__signals { display: flex; margin-top: 22px; padding-top: 14px; gap: 14px; }
  .hero .hero-visual { width: min(94%, 431px); margin: 29px auto 0; }
  .hero .hero-visual img { max-height: 347px; }
  .hero-slide--image-fade .hero-visual img {
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, .55), #000 24%);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, .55), #000 24%);
  }
  .hero .hero-visual__note { display: none; }
  .hero-carousel__controls { right: 50%; bottom: 10px; transform: translateX(50%); }
}

@media (max-width: 520px) {
  .hero .hero__inner { padding-top: 36px; }
  .hero .hero__kicker { display: grid; justify-items: start; gap: 10px; }
  .hero .hero__title { font-size: 34px; }
  .hero .hero__actions { display: grid; grid-template-columns: 1fr; }
  .hero .button,
  .hero .button--secondary { width: 100%; max-width: 100%; min-width: 0; }
  .hero .hero__signals { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .hero .hero-visual { width: min(92%, 399px); margin-top: 25px; }
  .hero .hero-visual img { max-height: 289px; }
}


/* Primer slide: imagen integrada sobre el fondo general del hero. */
.hero .hero-slide--image-fade {
  position: relative;
}

.hero .hero-slide--image-fade .hero-visual {
  isolation: isolate;
}

.hero .hero-slide--image-fade .hero-visual img {
  opacity: 1;
  filter: none;
  mix-blend-mode: multiply;
  transform: scale(1.16) translateX(-4%);
  transform-origin: center;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 9%, #000 97%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 6%, #000 95%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 9%, #000 97%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 6%, #000 95%, transparent 100%);
  mask-composite: intersect;
}

.hero .hero-slide--image-fade .hero-visual:hover img {
  filter: none;
  transform: scale(1.17) translate(-4%, -2px);
}

@media (max-width: 760px) {
  .hero .hero-slide--image-fade .hero-visual {
    overflow: hidden;
  }

  .hero .hero-slide--image-fade .hero-visual img {
    transform: scale(1.08) translateX(-3%);
  }

  .hero .hero-slide--image-fade .hero-visual:hover img {
    transform: scale(1.08) translate(-3%, -2px);
  }
}

@media (max-width: 520px) {
  .hero .hero-slide--image-fade .hero-visual img {
    transform: scale(1.04) translateX(-2%);
  }

  .hero .hero-slide--image-fade .hero-visual:hover img {
    transform: scale(1.04) translate(-2%, -2px);
  }
}

/* Nuestros productos */
.products {
  --products-ink: #2f4a4e;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 548px;
  padding: clamp(68px, 5.2vw, 82px) 24px clamp(46px, 4vw, 64px);
  background: #edf3f3;
  font-family: "Lato", Arial, sans-serif;
  scroll-margin-top: 24px;
}

.products > * { position: relative; }

.products__backdrop {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244, 249, 249, .9), rgba(232, 240, 240, .86)),
    url("../img/fondo_SCV.png") center / cover no-repeat;
}

.products__backdrop::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 72px;
  background: linear-gradient(180deg, rgba(215, 235, 236, .5), transparent);
  pointer-events: none;
}

.products::before,
.products::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.products::before {
  width: min(58vw, 850px);
  aspect-ratio: 1;
  top: -43%;
  left: -16%;
  border: 1px solid rgba(24, 170, 168, .12);
  box-shadow: 0 0 0 38px rgba(24, 170, 168, .025), 0 0 0 88px rgba(24, 170, 168, .018);
}

.products::after {
  width: min(45vw, 650px);
  aspect-ratio: 1;
  right: -16%;
  bottom: -40%;
  background: radial-gradient(circle, rgba(24, 170, 168, .13), transparent 68%);
}

.products__inner { width: min(100%, 1360px); margin: 0 auto; }

.products__heading {
  max-width: 710px;
  margin: 0 auto clamp(46px, 4vw, 58px);
  text-align: center;
}

.products__eyebrow {
  margin: 22px 0 0;
  color: #098f8d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  line-height: 1.3;
  text-transform: uppercase;
}

.products__heading h2 {
  margin: 0;
  color: #27383c;
  font-size: clamp(38px, 3.3vw, 50px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.products__heading h2::after {
  content: none;
}

.products__grid {
  width: min(100%, 1080px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3.2vw, 58px);
}

.product-card {
  min-height: 280px;
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 10px;
  background: linear-gradient(145deg, #22b4b1, #13a7a5);
  box-shadow: 0 12px 24px rgba(24, 78, 80, .2);
  color: #fff;
  transition: transform .3s cubic-bezier(.22, .61, .36, 1), box-shadow .3s ease, border-color .3s ease;
}

.product-card__image {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: center / cover no-repeat;
  mix-blend-mode: multiply;
  transform: scale(1.08);
  transition: opacity .35s ease, transform .55s cubic-bezier(.22, .61, .36, 1);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 145, 143, .1) 0%, rgba(2, 91, 91, .7) 100%);
  opacity: 0;
  transition: opacity .3s ease;
}

.product-card--stations .product-card__image { background-image: url("../img/fondo_SCV.png"); }
.product-card--self .product-card__image { background-image: url("../img/fondo_autoconsumo.png"); }
.product-card--trading .product-card__image { background-image: url("../img/fondo-comercializadora.png"); }
.product-card--transport .product-card__image { background-image: url("../img/fondo_transportistas.png"); }
.product-card--self .product-card__image { opacity: .82; transform: scale(1.01); }
.product-card--self::after { opacity: .48; }

.product-card__content {
  height: 100%;
  min-height: inherit;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.product-card__icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .23);
  border-radius: 50%;
  background: rgba(255, 255, 255, .09);
  transition: background-color .3s ease, transform .3s ease;
}

.product-card__icon img { width: 37px; height: 37px; object-fit: contain; }
.product-card__title { max-width: 205px; margin-top: 28px; font-size: clamp(17px, 1.25vw, 20px); font-weight: 700; line-height: 1.2; letter-spacing: -.02em; text-shadow: 0 1px 8px rgba(0, 68, 68, .16); }
.product-card__title small { display: block; font: inherit; }

.product-card:hover,
.product-card:focus-visible { border-color: rgba(255, 255, 255, .95); box-shadow: 0 22px 38px rgba(15, 76, 79, .25); transform: translateY(-7px); }
.product-card:focus-visible { outline: 3px solid rgba(255, 255, 255, .98); outline-offset: 4px; }
.product-card:hover .product-card__image,
.product-card:focus-visible .product-card__image { opacity: .68; transform: scale(1.01); }
.product-card--self:hover .product-card__image,
.product-card--self:focus-visible .product-card__image { opacity: .9; }
.product-card:hover::after,
.product-card:focus-visible::after { opacity: 1; }
.product-card:hover .product-card__icon,
.product-card:focus-visible .product-card__icon { background: rgba(255, 255, 255, .18); transform: translateY(-3px); }

@media (max-width: 1080px) {
  .products__grid { width: min(100%, 680px); grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .product-card { min-height: 300px; }
  .product-card__title { font-size: 21px; }
}

@media (max-width: 600px) {
  .products { padding-right: 16px; padding-left: 16px; }
  .products__heading { margin-bottom: 38px; }
  .products__eyebrow { font-size: 10px; letter-spacing: 2.8px; }
  .products__grid { grid-template-columns: 1fr; gap: 16px; }
  .product-card { width: min(100%, 330px); min-height: 290px; margin: 0 auto; }
  .product-card__content { padding: 25px; }
  .product-card__icon { width: 60px; height: 60px; }
  .product-card__icon img { width: 34px; height: 34px; }
  .product-card__title { max-width: 250px; font-size: 21px; }
  .product-card:hover,
  .product-card:focus-visible { transform: translateY(-5px); }
}

/* Cumplimiento normativo */
.compliance {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 9vw, 146px) 24px;
  background:
    radial-gradient(circle at 84% 42%, rgba(24, 170, 168, .09), transparent 27%),
    linear-gradient(180deg, #fff 0%, #f7fbfb 100%);
  color: #40575b;
  font-family: "Lato", Arial, sans-serif;
}

.compliance::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24, 170, 168, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 170, 168, .035) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .6) 57%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .6) 57%, transparent 100%);
  pointer-events: none;
}

.compliance__inner {
  width: min(100%, 1240px);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(470px, 1.18fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
}

.compliance__content { max-width: 490px; }

.compliance__eyebrow {
  margin: 0 0 17px;
  color: #0a9895;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.4px;
  line-height: 1.2;
  text-transform: uppercase;
}

.compliance h2 {
  margin: 0 0 31px;
  color: #39575c;
  font-size: clamp(40px, 3.5vw, 57px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: .99;
}

.compliance__copy {
  padding-left: 20px;
  border-left: 2px solid rgba(24, 170, 168, .45);
  color: #576d72;
  font-size: 15px;
  line-height: 1.58;
}

.compliance__copy p { margin: 0 0 20px; }
.compliance__copy p:last-child { margin-bottom: 0; color: #436167; font-weight: 700; }

.compliance__visual {
  width: min(100%, 680px);
  margin: 0;
  position: relative;
  justify-self: end;
}

.compliance__visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 76%;
  aspect-ratio: 1;
  top: 10%;
  right: 8%;
  border: 1px solid rgba(24, 170, 168, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(24, 170, 168, .025);
}

.compliance__visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 22px rgba(33, 76, 80, .18));
  animation: compliance-float 7s ease-in-out infinite;
}

@keyframes compliance-float {
  50% { transform: translateY(-7px); }
}

@media (max-width: 900px) {
  .compliance { padding: 82px 24px 88px; }
  .compliance__inner { grid-template-columns: 1fr; gap: 52px; }
  .compliance__content { max-width: 620px; }
  .compliance__visual { width: min(100%, 620px); justify-self: center; }
}

@media (max-width: 600px) {
  .compliance { padding: 70px 16px; }
  .compliance__inner { gap: 38px; }
  .compliance__eyebrow { font-size: 10px; letter-spacing: 2.7px; }
  .compliance h2 { margin-bottom: 25px; font-size: 39px; }
  .compliance__copy { padding-left: 15px; font-size: 14px; line-height: 1.6; }
  .compliance__visual { width: min(106%, 520px); margin-left: -3%; }
}

/* Carrusel de capacidades */
.message-carousel {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 6vw, 94px) 24px;
  background:
    radial-gradient(circle at 88% 25%, rgba(255, 255, 255, .15), transparent 30%),
    linear-gradient(112deg, #127f82 0%, #16a7a4 52%, #28bdb6 100%);
  color: #fff;
  font-family: "Lato", Arial, sans-serif;
}

.message-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 61, 65, .12), transparent 45%, rgba(255, 255, 255, .07));
  pointer-events: none;
}

.message-carousel__shell {
  width: min(100%, 1420px);
  min-height: 205px;
  margin: 0 auto;
  position: relative;
}

.message-carousel__viewport {
  min-height: inherit;
  display: grid;
  place-items: center;
}

.message-carousel__slide {
  grid-area: 1 / 1;
  width: min(100% - 168px, 1120px);
  margin: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .45s ease, transform .45s cubic-bezier(.22, .61, .36, 1), visibility 0s linear .45s;
}

.message-carousel__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.message-carousel__slide p {
  margin: 0;
  font-size: clamp(31px, 3.3vw, 52px);
  font-weight: 700;
  letter-spacing: -.032em;
  line-height: 1.08;
  text-shadow: 0 2px 2px rgba(0, 74, 76, .24);
}

.message-carousel__slide strong { color: #fff; }

.message-carousel__arrow {
  width: 54px;
  height: 54px;
  padding: 0 0 5px;
  position: absolute;
  top: calc(50% - 17px);
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  color: #fff;
  background: transparent;
  font-family: Arial, sans-serif;
  font-size: 57px;
  font-weight: 300;
  line-height: .7;
  cursor: pointer;
  opacity: .88;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease, opacity .2s ease;
}

.message-carousel__arrow--previous { left: 0; }
.message-carousel__arrow--next { right: 0; }
.message-carousel__arrow:hover,
.message-carousel__arrow:focus-visible { border-color: rgba(255, 255, 255, .42); background: rgba(255, 255, 255, .12); opacity: 1; outline: none; transform: scale(1.06); }

.message-carousel__dots {
  position: absolute;
  bottom: -20px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 9px;
  transform: translateX(-50%);
}

.message-carousel__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .42);
  cursor: pointer;
  transition: width .22s ease, background-color .22s ease;
}

.message-carousel__dot.is-active { width: 25px; border-radius: 999px; background: #fff; }
.message-carousel__dot:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

@media (max-width: 760px) {
  .message-carousel { padding: 58px 16px 72px; }
  .message-carousel__shell { min-height: 238px; }
  .message-carousel__slide { width: min(100% - 68px, 620px); }
  .message-carousel__slide p { font-size: clamp(25px, 7vw, 39px); line-height: 1.13; }
  .message-carousel__arrow { width: 38px; height: 42px; top: calc(50% - 9px); font-size: 46px; }
  .message-carousel__dots { bottom: -24px; }
}

/* Solución integral */
.integral-solution {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 8vw, 130px) 24px clamp(92px, 9vw, 142px);
  background:
    linear-gradient(90deg, rgba(248, 253, 253, .94), rgba(240, 250, 251, .79)),
    url("../img/un-gran-camion-con-la-palabra-tanque-en-el-lado.jpg") center / cover no-repeat;
  color: #3d5559;
  font-family: "Lato", Arial, sans-serif;
}

.integral-solution::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, .2), transparent 42%, rgba(24, 170, 168, .06));
  pointer-events: none;
}

.integral-solution__inner { width: min(100%, 1120px); margin: 0 auto; position: relative; }

.integral-solution__heading { margin-bottom: clamp(42px, 5vw, 66px); text-align: center; }
.integral-solution__heading p { margin: 0 0 13px; color: #0a9895; font-size: 11px; font-weight: 700; letter-spacing: 3.6px; text-transform: uppercase; }
.integral-solution__heading h2 { margin: 0; color: #2d3f43; font-size: clamp(38px, 3.6vw, 52px); font-weight: 700; letter-spacing: -.04em; line-height: 1.05; }

.integral-solution__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.5vw, 38px); }

.integral-card {
  min-height: 332px;
  padding: 28px 24px;
  border: 1px solid rgba(12, 165, 163, .72);
  border-radius: 10px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 16px 30px rgba(40, 85, 88, .09);
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.integral-card:hover { background: rgba(255, 255, 255, .96); box-shadow: 0 22px 36px rgba(20, 91, 94, .16); transform: translateY(-7px); }
.integral-card__icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 50%; background: var(--teal); color: #fff; }
.integral-card__icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.integral-card h3 { margin: 0 0 18px; color: #2d464b; font-size: 16px; font-weight: 700; line-height: 1.2; }
.integral-card p { margin: 0; color: #587075; font-size: 13px; line-height: 1.58; }

.integral-cta {
  min-height: 510px;
  padding: clamp(78px, 9vw, 142px) 24px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(0, 89, 89, .9), rgba(0, 126, 125, .84)),
    url("../img/flujo-de-codigo-binario.jpg") center / cover no-repeat;
  font-family: "Lato", Arial, sans-serif;
}

.integral-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 20%, rgba(45, 214, 207, .2), transparent 26%), radial-gradient(circle at 88% 85%, rgba(255, 255, 255, .1), transparent 25%); pointer-events: none; }

.integral-cta__panel {
  width: min(100%, 720px);
  padding: clamp(48px, 5vw, 72px) clamp(30px, 5vw, 76px);
  position: relative;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(29, 178, 175, .94), rgba(7, 135, 134, .94));
  box-shadow: 0 26px 50px rgba(0, 52, 54, .26);
  color: #fff;
  text-align: center;
}

.integral-cta__eyebrow { margin: 0 0 16px; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; opacity: .78; }
.integral-cta h2 { max-width: 560px; margin: 0 auto 21px; font-size: clamp(31px, 3.4vw, 47px); font-weight: 700; letter-spacing: -.04em; line-height: 1.08; }
.integral-cta__panel > p:not(.integral-cta__eyebrow) { margin: 0 auto 28px; font-size: 14px; line-height: 1.55; }
.integral-cta .button { min-width: 174px; height: 50px; background: #e51a1a; box-shadow: 0 12px 22px rgba(94, 15, 15, .24); font-size: 11px; }
.integral-cta .button:hover, .integral-cta .button:focus-visible { background: #c91313; box-shadow: 0 15px 25px rgba(94, 15, 15, .29); }

@media (max-width: 960px) {
  .integral-solution__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 650px; margin: 0 auto; gap: 22px; }
  .integral-card { min-height: 280px; }
}

@media (max-width: 600px) {
  .integral-solution { padding: 70px 16px 78px; }
  .integral-solution__heading p { font-size: 10px; letter-spacing: 2.7px; }
  .integral-solution__grid { grid-template-columns: 1fr; max-width: 360px; gap: 16px; }
  .integral-card { min-height: 0; padding: 26px 24px; }
  .integral-card__icon { margin-bottom: 17px; }
  .integral-card h3 { margin-bottom: 11px; }
  .integral-cta { min-height: 0; padding: 70px 16px; }
  .integral-cta__panel { border-radius: 16px; }
  .integral-cta__eyebrow { font-size: 10px; letter-spacing: 2.3px; }
  .integral-cta h2 { font-size: 31px; }
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 48px 24px 24px;
  border-top: 3px solid var(--teal);
  background: linear-gradient(135deg, #101c25 0%, #162731 52%, #102029 100%);
  color: #d8e6e7;
  font-family: "Lato", Arial, sans-serif;
}

.site-footer::after {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  top: -390px;
  right: -120px;
  border: 1px solid rgba(56, 212, 207, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(56, 212, 207, .025);
  pointer-events: none;
}

.site-footer__inner { width: min(100%, 1320px); margin: 0 auto; position: relative; }
.site-footer__main { min-height: 106px; display: flex; align-items: center; gap: clamp(58px, 8vw, 138px); }

.site-footer__brand { width: 195px; display: block; flex: 0 0 auto; }
.site-footer__brand img { width: 100%; height: auto; display: block; filter: brightness(0) invert(1); opacity: .96; transition: opacity .2s ease, transform .2s ease; }
.site-footer__brand:hover img, .site-footer__brand:focus-visible img { opacity: 1; transform: translateY(-2px); }
.site-footer__brand:focus-visible { outline: 2px solid #54d5d1; outline-offset: 6px; }

.site-footer__contact { display: grid; gap: 8px; font-style: normal; }
.site-footer__label { margin-bottom: 3px; color: #fff; font-size: 14px; font-weight: 700; letter-spacing: .35px; }
.site-footer__contact a { width: fit-content; color: #b9d1d4; font-size: 14px; font-weight: 600; line-height: 1.3; transition: color .2s ease; }
.site-footer__contact a span { color: #80efea; }
.site-footer__phone { width: fit-content; color: #b9d1d4; font-size: 14px; font-weight: 600; line-height: 1.3; }
.site-footer__phone span { color: #80efea; }
.site-footer__contact a:hover, .site-footer__contact a:focus-visible { color: #7de8e3; outline: none; }

.site-footer__bottom {
  min-height: 64px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(174, 215, 217, .2);
}

.site-footer__bottom p { margin: 0; color: #a9c2c5; font-size: 13px; font-weight: 600; line-height: 1.5; }
.site-footer__bottom a { color: #68e5df; font-size: 13px; font-weight: 700; letter-spacing: .25px; text-transform: uppercase; transition: color .2s ease; }
.site-footer__bottom a:hover, .site-footer__bottom a:focus-visible { color: #fff; outline: none; }
.site-footer__privacy { color: #68e5df; font-size: 13px; font-weight: 700; letter-spacing: .25px; text-transform: uppercase; }

@media (max-width: 600px) {
  .site-footer { padding: 40px 20px 24px; }
  .site-footer__main { min-height: 0; align-items: flex-start; flex-direction: column; gap: 30px; }
  .site-footer__brand { width: 180px; }
  .site-footer__bottom { min-height: 0; align-items: flex-start; flex-direction: column; gap: 14px; margin-top: 32px; padding-top: 20px; }
  .site-footer__bottom p, .site-footer__bottom a, .site-footer__privacy { font-size: 12px; }
}

/* Página de productos */
.products-page { background: #f5fafa; }
.products-page .site-header { position: relative; }
.products-hero { min-height: 490px; padding: 106px 24px 88px; display: flex; align-items: center; position: relative; overflow: hidden; background: linear-gradient(90deg, rgba(248, 253, 253, .98) 0%, rgba(244, 252, 252, .86) 47%, rgba(232, 248, 248, .58) 100%), url("../img/mangueras_dispensarios.png") center / cover no-repeat; font-family: "Lato", Arial, sans-serif; }
.products-hero::after { content: ""; position: absolute; width: 48vw; aspect-ratio: 1; right: -13%; bottom: -67%; border: 1px solid rgba(24, 170, 168, .13); border-radius: 50%; box-shadow: 0 0 0 42px rgba(24, 170, 168, .025); }
.products-hero__inner { width: min(100%, 1180px); margin: 0 auto; position: relative; z-index: 1; }
.products-hero__eyebrow, .product-detail__eyebrow { margin: 0 0 16px; color: #078f8d; font-size: 11px; font-weight: 700; letter-spacing: 3.8px; text-transform: uppercase; }
.products-hero h1 { max-width: 630px; margin: 0 0 22px; color: #2d4348; font-size: clamp(45px, 5vw, 70px); font-weight: 700; letter-spacing: -.05em; line-height: 1.02; }
.products-hero__inner > p:not(.products-hero__eyebrow) { max-width: 530px; margin: 0 0 33px; color: #5c7378; font-size: 17px; line-height: 1.6; }
.products-hero .button { height: 52px; min-width: 206px; font-size: 12px; }
.products-overview { padding: 80px 24px 88px; position: relative; overflow: hidden; background: linear-gradient(90deg, rgba(241, 249, 249, .94), rgba(232, 243, 244, .83)), url("../img/fondo_SCV.png") center / cover no-repeat; font-family: "Lato", Arial, sans-serif; }
.products-overview__inner { width: min(100%, 1060px); margin: 0 auto; }
.products-overview__heading { margin-bottom: 47px; text-align: center; }
.products-overview__heading p { margin: 0 0 12px; color: #099a98; font-size: 11px; font-weight: 700; letter-spacing: 3.7px; text-transform: uppercase; }
.products-overview__heading h2 { margin: 0; color: #30484d; font-size: clamp(34px, 3.5vw, 49px); font-weight: 700; letter-spacing: -.04em; }
.products-overview__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.products-overview__grid a { min-height: 195px; padding: 24px; display: flex; flex-direction: column; align-items: flex-start; position: relative; isolation: isolate; overflow: hidden; border-radius: 12px; background: linear-gradient(145deg, #20b4b1, #11a09f); color: #fff; box-shadow: 0 15px 27px rgba(23, 88, 91, .16); transition: transform .25s ease, box-shadow .25s ease; }
.products-overview__grid a::before,
.products-overview__grid a::after { content: ""; position: absolute; inset: 0; z-index: 0; opacity: 0; pointer-events: none; transition: opacity .35s ease; }
.products-overview__grid a::before { background: center / cover no-repeat; transform: scale(1.04); transition: opacity .35s ease, transform .5s ease; }
.products-overview__grid a > * { position: relative; z-index: 1; }
.products-overview__grid a::after { background: linear-gradient(135deg, rgba(0, 72, 74, .63), rgba(0, 127, 125, .48)); }
.products-overview__grid a:nth-child(1)::before { background-image: url("../img/gasolinera-por-la-noche-400x250.jpg"); }
.products-overview__grid a:nth-child(2)::before { background-image: url("../img/vista-de-mujer-con-coche-en-el-gasolinera-400x284.jpg"); }
.products-overview__grid a:nth-child(3)::before { background-image: url("../img/contaminacion-ambiental-y-exterior-de-la-industria-la-luz-del-dia-400x250.jpg"); }
.products-overview__grid a:nth-child(4)::before { background-image: url("../img/camiones-que-transportan-productos-quimicos-peligrosos-por-carretera-transporte-industrial-400x250.jpg"); }
@media (hover: hover) and (pointer: fine) {
  .products-overview__grid a:hover::before,
  .products-overview__grid a:hover::after { opacity: 1; }
  .products-overview__grid a:hover::before { transform: scale(1); }
}
.products-overview__grid a:focus-visible::before,
.products-overview__grid a:focus-visible::after { opacity: 1; }
.products-overview__grid a:focus-visible::before { transform: scale(1); }
.products-overview__grid a:hover, .products-overview__grid a:focus-visible { box-shadow: 0 20px 34px rgba(23, 88, 91, .25); outline: 2px solid rgba(255, 255, 255, .96); outline-offset: 3px; transform: translateY(-6px); }
.products-overview__grid img { width: 45px; height: 45px; object-fit: contain; margin-bottom: auto; }
.products-overview__grid span { max-width: 150px; font-size: 16px; font-weight: 700; line-height: 1.2; }
.product-detail { min-height: 600px; padding: clamp(84px, 9vw, 135px) 24px; position: relative; overflow: hidden; font-family: "Lato", Arial, sans-serif; scroll-margin-top: 20px; }
.product-detail__inner { width: min(100%, 1120px); margin: 0 auto; min-height: 350px; display: grid; grid-template-columns: minmax(330px, .88fr) minmax(390px, .72fr); align-items: center; gap: clamp(58px, 10vw, 160px); position: relative; }
.product-detail--reverse .product-detail__inner { grid-template-columns: minmax(350px, .92fr) minmax(380px, .74fr); }
.product-detail--station { background: linear-gradient(108deg, rgba(243, 250, 250, .93), rgba(246, 252, 252, .68)), url("../img/fondo_EstacionGasolina_white_overlay3.png") center / cover no-repeat; }
.product-detail--station::after { content: ""; position: absolute; right: clamp(18px, 4vw, 72px); bottom: 1%; z-index: 0; width: clamp(170px, 20vw, 300px); aspect-ratio: 1; background: url("../img/POS-300x300.png") center / contain no-repeat; opacity: 0; pointer-events: none; transform: translateX(24%); transition: opacity .4s ease, transform .55s cubic-bezier(.22, .8, .3, 1); }
.product-detail--station .product-detail__inner { z-index: 1; }
@media (hover: hover) and (pointer: fine) {
  .product-detail--station:hover::after { animation: station-pos-arrival 1.35s cubic-bezier(.22, .8, .3, 1) forwards; }
}
@keyframes station-pos-arrival {
  0% { opacity: 0; transform: translateX(24%) translateY(0); }
  62% { opacity: 1; transform: translateX(7%) translateY(0); }
  80% { opacity: 1; transform: translateX(7%) translateY(-8px); }
  100% { opacity: 1; transform: translateX(7%) translateY(0); }
}
@media (max-width: 600px) {
  .product-detail--station::after { right: 10px; bottom: 1%; width: 140px; }
}
@media (prefers-reduced-motion: reduce) {
  .product-detail--station::after { transition: opacity .2s ease; }
  .product-detail--station:hover::after { animation: none; opacity: 1; transform: translateX(-1%); }
}
.product-detail--self { background: #f6fbfb; }
.product-detail--trading { background: linear-gradient(90deg, rgba(252, 254, 254, .94), rgba(245, 251, 251, .78)), url("../img/Planta_Industrial_petroleo.jpg") center / cover no-repeat; }
.product-detail--transport { background: linear-gradient(90deg, rgba(242, 249, 249, .94), rgba(239, 248, 248, .72)), url("../img/fondo_transportistas.png") center / cover no-repeat; }
.product-detail__feature { min-height: 355px; padding: 38px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; border-radius: 22px; background: linear-gradient(155deg, #22b5b2, #078f8e); box-shadow: 0 24px 42px rgba(18, 99, 101, .21); color: #fff; }
.product-detail__feature::before { content: ""; width: 174px; height: 174px; position: absolute; top: -64px; right: -54px; border: 1px solid rgba(255, 255, 255, .22); border-radius: 50%; box-shadow: 0 0 0 25px rgba(255, 255, 255, .04); }
.product-detail__feature > span { position: absolute; top: 29px; right: 31px; color: rgba(255, 255, 255, .54); font-size: 12px; font-weight: 700; letter-spacing: 2px; }
.product-detail__feature img { width: 70px; height: 70px; object-fit: contain; margin-bottom: 22px; }
.product-detail__feature strong { max-width: 250px; font-size: clamp(29px, 3vw, 40px); line-height: 1.08; letter-spacing: -.04em; }
.product-detail__content { max-width: 490px; }
.product-detail__content h2 { margin: 0 0 20px; color: #304a4f; font-size: clamp(34px, 3.25vw, 48px); font-weight: 700; letter-spacing: -.045em; line-height: 1.05; }
.product-detail__content > p:not(.product-detail__eyebrow) { margin: 0 0 21px; color: #5b7176; font-size: 15px; line-height: 1.62; }
.product-detail__content ul { display: grid; gap: 10px; margin: 0 0 25px; padding: 0; list-style: none; color: #526b70; font-size: 14px; line-height: 1.45; }
.product-detail__content li { display: flex; gap: 10px; }
.product-detail__content li::before { content: ""; width: 7px; height: 7px; flex: 0 0 auto; margin-top: .44em; border: 2px solid var(--teal); border-radius: 50%; }
.product-detail__link { display: inline-flex; align-items: center; gap: 11px; color: #078f8d; font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }
.product-detail__link i { width: 8px; height: 8px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; transform: rotate(45deg); transition: transform .2s ease; }
.product-detail__link:hover i, .product-detail__link:focus-visible i { transform: translateX(4px) rotate(45deg); }
.product-detail__link:focus-visible { outline: 2px solid var(--teal); outline-offset: 5px; }
.product-detail__media { overflow: hidden; border-radius: 22px; box-shadow: 0 22px 38px rgba(30, 79, 82, .17); }
.product-detail--transport .product-detail__media { width: calc(100% + 32px); margin-right: -32px; overflow: visible; background: transparent; box-shadow: none; }
.product-detail__media img { width: 100%; min-height: 300px; display: block; object-fit: cover; transition: transform .45s ease; }
.product-detail__media:hover img { transform: scale(1.04); }
.system-compatibility { padding: clamp(72px, 8vw, 116px) 24px; overflow: hidden; color: #fff; background: radial-gradient(circle at 14% 0%, rgba(43, 183, 180, .18), transparent 31%), linear-gradient(135deg, #173f42, #0f6969); font-family: "Lato", Arial, sans-serif; }
.system-compatibility__inner { width: min(100%, 1380px); margin: 0 auto; text-align: center; }
.system-compatibility__eyebrow { margin: 0 0 12px; color: rgba(221, 247, 246, .72); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; }
.system-compatibility h2 { margin: 0; font-size: clamp(34px, 4vw, 52px); line-height: 1.08; letter-spacing: -.04em; }
.system-compatibility__logos { margin-top: clamp(48px, 6vw, 78px); display: grid; grid-template-columns: repeat(5, minmax(120px, 1fr)); align-items: center; gap: clamp(25px, 4vw, 70px); }
.system-compatibility__logos > * { width: 100%; max-width: 220px; height: 112px; margin: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: .94; }
.system-compatibility__bennett { display: grid; justify-items: center; gap: 1px; color: #fff; filter: none; font-style: italic; line-height: .9; }
.system-compatibility__bennett strong { font-size: clamp(32px, 3vw, 48px); font-weight: 700; letter-spacing: -.06em; }
.system-compatibility__bennett span { font-size: clamp(16px, 1.5vw, 23px); font-weight: 700; }
@media (max-width: 760px) { .system-compatibility { padding: 66px 16px; } .system-compatibility__logos { grid-template-columns: repeat(2, minmax(120px, 1fr)); gap: 34px 28px; } .system-compatibility__logos > * { max-width: 175px; height: 90px; } .system-compatibility__logos > :last-child { grid-column: 1 / -1; } }
@media (max-width: 900px) { .products-overview__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 600px; margin: 0 auto; } .product-detail, .product-detail--reverse { min-height: 0; } .product-detail__inner, .product-detail--reverse .product-detail__inner { grid-template-columns: 1fr; gap: 46px; max-width: 610px; } .product-detail__content { max-width: 590px; } .product-detail--reverse .product-detail__media { order: 2; } .product-detail--reverse .product-detail__content { order: 1; } }
@media (max-width: 600px) { .products-hero { min-height: 440px; padding: 78px 16px 70px; } .products-hero__eyebrow, .product-detail__eyebrow { font-size: 10px; letter-spacing: 2.7px; } .products-hero__inner > p:not(.products-hero__eyebrow) { font-size: 15px; } .products-overview { padding: 67px 16px 72px; } .products-overview__grid { grid-template-columns: 1fr; gap: 14px; max-width: 330px; } .products-overview__grid a { min-height: 150px; } .product-detail { padding: 70px 16px; } .product-detail__inner, .product-detail--reverse .product-detail__inner { gap: 35px; } .product-detail__feature { min-height: 300px; padding: 29px; border-radius: 16px; } .product-detail__content h2 { font-size: 34px; } .product-detail__content > p:not(.product-detail__eyebrow) { font-size: 14px; } .product-detail__content ul { font-size: 13px; } .product-detail__media { border-radius: 16px; } .product-detail--transport .product-detail__media { width: 100%; margin-right: 0; } .product-detail__media img { min-height: 225px; } }

/* Página Anexo 21 */
.anexo-page { background: #f6fbfb; color: #40595e; font-family: "Lato", Arial, sans-serif; }
.anexo-wrap { width: min(100% - 48px, 1100px); margin: auto; }
.anexo-hero { padding: 92px 24px; background: #e9f6f6; }
.anexo-hero__inner { width: min(100%, 1060px); min-height: 380px; margin: auto; display: grid; grid-template-columns: .9fr .8fr; align-items: center; gap: 80px; }
.anexo-hero p,.anexo-kicker { margin: 0 0 16px; color: #0a9895; font-size: 11px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; }
.anexo-hero h1 { max-width: 520px; margin: 0; color: #354d52; font-size: clamp(42px, 4.7vw, 67px); line-height: 1.05; letter-spacing: -.05em; }
.anexo-hero img { width: min(100%, 420px); justify-self: center; filter: drop-shadow(0 22px 28px rgba(25,80,83,.16)); }
.anexo-update { padding: 82px 0 65px; background: #f8ffff; }.anexo-update h2,.anexo-what h2 { margin: 0 0 10px; color:#31474c; font-size:clamp(30px,3vw,44px); letter-spacing:-.04em; }.anexo-update p { margin:0; font-weight:700; font-size:15px; }.anexo-update img { width:min(100%,850px); display:block; margin:35px auto 0; }
.anexo-intro { padding:88px 0; overflow:hidden; background:linear-gradient(90deg,rgba(238,248,248,.97),rgba(242,251,251,.8)),url("../img/flujo-de-codigo-binario.jpg") center/cover; }.anexo-intro__grid { display:grid; grid-template-columns:minmax(0,1.45fr) minmax(240px,.55fr); align-items:stretch; gap:clamp(48px,7vw,96px); }.anexo-intro__copy { align-self:center; padding-left:28px; border-left:3px solid rgba(24,170,168,.28); }.anexo-intro p,.anexo-what p { margin:0; font-size:15px; line-height:1.72; }.anexo-intro p+p { margin-top:20px; }.anexo-intro__visual { min-height:360px; display:grid; place-items:center; position:relative; isolation:isolate; }.anexo-intro__visual::before { content:""; width:min(100%,330px); aspect-ratio:1; position:absolute; z-index:-1; border-radius:50%; background:linear-gradient(145deg,rgba(31,180,176,.94),rgba(8,132,131,.98)); box-shadow:0 24px 50px rgba(17,101,103,.2); }.anexo-intro img { width:min(115%,305px); display:block; transform:translate(-3%,2%) rotate(-2deg); filter:drop-shadow(0 20px 22px rgba(8,67,70,.26)); }
.anexo-what { padding:100px 0; background:linear-gradient(90deg,rgba(255,255,255,.96),rgba(250,253,253,.8)),url("../img/fondo-comercializadora.png") center/cover; }.anexo-what__grid { display:grid; grid-template-columns:minmax(250px,.72fr) minmax(0,1.28fr); gap:clamp(50px,8vw,110px); align-items:start; }.anexo-what__heading { position:relative; padding-top:4px; }.anexo-what__heading::after { content:""; width:72px; height:3px; display:block; margin-top:28px; border-radius:999px; background:linear-gradient(90deg,var(--teal),rgba(24,170,168,.15)); }.anexo-what .anexo-kicker { margin:0 0 14px; }.anexo-what h2 { max-width:360px; margin-bottom:0; line-height:1.1; }.anexo-what__copy { padding:4px 0 4px clamp(26px,4vw,48px); border-left:1px solid rgba(24,170,168,.24); }.anexo-what__copy p { max-width:660px; color:#52676c; font-size:16px; line-height:1.78; }.anexo-what__copy p+p { margin-top:24px; }
.anexo-spec { padding:86px 0 100px; background:#e9f7f7; }.anexo-spec h2 { max-width:850px; margin:0 0 46px; color:#39565b; font-size:clamp(24px,2.4vw,34px); line-height:1.28; }.anexo-spec__grid { display:grid; grid-template-columns:.72fr 1.28fr; gap:35px; align-items:start; }.anexo-spec__badge { min-height:300px; padding:38px; display:flex; flex-direction:column; justify-content:center; border-radius:18px; background:linear-gradient(145deg,#21b5b2,#098f8e); color:#fff; box-shadow:0 20px 38px rgba(17,101,103,.18); }.anexo-spec__badge img { width:58px; margin-bottom:28px; }.anexo-spec__badge strong { font-size:42px; letter-spacing:-.05em; }.anexo-spec__badge span { margin-top:8px; font-size:12px; font-weight:700; text-transform:uppercase; }.anexo-spec__cards { display:grid; gap:18px; }.anexo-spec__cards article { padding:28px 30px; border-radius:16px; background:#fff; box-shadow:0 14px 28px rgba(35,85,88,.1); }.anexo-spec__cards h3 { margin:0 0 15px; color:#3b555a; font-size:16px; }.anexo-spec__cards ul { margin:0; padding-left:18px; color:#5c7176; font-size:13px; line-height:1.55; }.anexo-spec__cards li+li { margin-top:8px; }
.anexo-cta { min-height:430px; padding:70px 24px; display:grid; place-items:center; background:linear-gradient(115deg,rgba(0,90,90,.9),rgba(0,139,137,.83)),url("../img/flujo-de-codigo-binario.jpg") center/cover; }.anexo-cta>div { width:min(100%,680px); padding:55px 45px; border-radius:20px; background:linear-gradient(145deg,rgba(31,180,176,.95),rgba(8,132,131,.95)); color:#fff; text-align:center; box-shadow:0 22px 42px rgba(0,53,55,.25); }.anexo-cta h2 { margin:0 0 16px; font-size:clamp(31px,3.4vw,47px); line-height:1.08; letter-spacing:-.04em; }.anexo-cta p { margin:0 0 26px; font-size:14px; }.anexo-cta .button { min-width:175px; height:50px; background:#e31c1c; font-size:11px; box-shadow:none; }
.anexo-page .anexo-cta { background-image:linear-gradient(115deg,rgba(0,70,72,.82),rgba(0,129,127,.68)),url("../img/Recurso-65-1.png"); background-position:center; background-size:cover; background-repeat:no-repeat; }.anexo-page .anexo-cta>div { border:1px solid rgba(255,255,255,.18); background:linear-gradient(145deg,rgba(31,180,176,.88),rgba(8,112,113,.9)); -webkit-backdrop-filter:blur(3px); backdrop-filter:blur(3px); }
.tech-page .anexo-cta { background-image:linear-gradient(115deg,rgba(0,70,72,.82),rgba(0,129,127,.68)),url("../img/Recurso-65-1.png"); background-position:center; background-size:cover; background-repeat:no-repeat; }
@media(max-width:900px){.anexo-intro__grid{grid-template-columns:minmax(0,1.25fr) minmax(210px,.75fr);gap:38px}.anexo-intro__visual{min-height:300px}.anexo-intro__visual::before{width:min(100%,270px)}.anexo-intro img{width:min(112%,255px)}.anexo-what__grid{grid-template-columns:minmax(220px,.8fr) minmax(0,1.2fr);gap:42px}}
@media(max-width:760px){.anexo-wrap{width:min(100% - 32px,620px)}.anexo-hero{padding:70px 16px}.anexo-hero__inner{min-height:0;grid-template-columns:1fr;gap:38px}.anexo-hero h1{font-size:42px}.anexo-hero img{width:min(85%,340px)}.anexo-update,.anexo-intro,.anexo-what,.anexo-spec{padding:65px 0}.anexo-intro__grid,.anexo-what__grid,.anexo-spec__grid{grid-template-columns:1fr;gap:38px}.anexo-intro__copy{padding-left:20px}.anexo-intro__visual{min-height:260px;grid-row:1}.anexo-intro__visual::before{width:240px}.anexo-intro img{width:225px}.anexo-what__grid{gap:34px}.anexo-what__heading::after{margin-top:22px}.anexo-what__copy{padding:0;border-left:0}.anexo-what__copy p{font-size:15px;line-height:1.72}.anexo-what__copy p+p{margin-top:20px}.anexo-spec__badge{min-height:220px}.anexo-spec__cards article{padding:24px 20px}.anexo-cta{min-height:0;padding:64px 16px}.anexo-page .anexo-cta{background-position:62% center}.anexo-cta>div{padding:42px 25px;border-radius:15px}}
@media(max-width:430px){.anexo-intro__visual{min-height:225px}.anexo-intro__visual::before{width:205px}.anexo-intro img{width:195px}.anexo-page .anexo-cta{background-position:58% center}}

/* Tecnología */
.tech-page { overflow-x:hidden; background:#f4fafa; color:#38555a; font-family:"Lato",Arial,sans-serif; }
.tech-hero { min-height:680px; position:relative; overflow:hidden; background:linear-gradient(135deg,#e8f5f5 0 57%,#d9eeee 57%); }
.tech-hero::before { content:""; width:46vw; height:46vw; position:absolute; top:-26vw; right:-8vw; border:1px solid rgba(24,170,168,.18); border-radius:50%; box-shadow:0 0 0 72px rgba(24,170,168,.035),0 0 0 145px rgba(24,170,168,.025); }
.tech-hero__inner { width:min(calc(100% - 48px),1180px); min-height:680px; margin:auto; padding:88px 0 82px; display:grid; grid-template-columns:minmax(0,1.04fr) minmax(380px,.96fr); align-items:center; position:relative; }
.tech-hero__content { max-width:690px; padding:50px 0 58px; position:relative; z-index:2; }
.tech-hero__content::before { content:""; width:92px; height:3px; position:absolute; left:0; bottom:30px; border-radius:999px; background:linear-gradient(90deg,var(--teal),rgba(24,170,168,0)); }
.tech-hero p { margin:0 0 22px; color:#078f8d; font-size:11px; font-weight:700; letter-spacing:3.8px; }
.tech-hero h1 { max-width:650px; margin:0; color:#304b50; font-size:clamp(48px,5.2vw,76px); line-height:1.02; letter-spacing:-.055em; }
.tech-hero__visual { min-height:460px; display:grid; place-items:center; position:relative; z-index:1; }
.tech-hero__visual::before { content:""; width:clamp(330px,35vw,480px); aspect-ratio:1; position:absolute; border:1px solid rgba(255,255,255,.82); border-radius:38% 62% 56% 44% / 45% 40% 60% 55%; background:rgba(255,255,255,.47); box-shadow:0 30px 65px rgba(33,96,99,.14); transform:rotate(-8deg); }
.tech-hero__visual::after { content:""; width:78%; height:1px; position:absolute; top:18%; right:56%; z-index:-1; background:linear-gradient(90deg,transparent,rgba(24,170,168,.38)); }
.tech-hero__visual span { width:11px; height:11px; position:absolute; top:calc(18% - 5px); left:42%; border:3px solid #e8f5f5; border-radius:50%; background:var(--teal); box-shadow:0 0 0 1px rgba(24,170,168,.35); }
.tech-hero__visual img { width:min(92%,470px); height:auto; display:block; position:relative; z-index:1; filter:drop-shadow(0 28px 25px rgba(20,73,77,.2)); }
.tech-map { padding:clamp(78px,9vw,128px) 24px; position:relative; background:#f9fdfd; }
.tech-map__inner { width:min(100%,1120px); margin:auto; }
.tech-map__frame { padding:clamp(12px,2vw,22px); position:relative; border:1px solid rgba(24,170,168,.2); border-radius:28px; background:#fff; box-shadow:0 25px 60px rgba(31,80,83,.11); }
.tech-map__frame::before { content:""; position:absolute; inset:clamp(12px,2vw,22px); z-index:1; border:1px solid rgba(255,255,255,.22); border-radius:18px; pointer-events:none; }
.tech-map img { width:100%; height:auto; display:block; border-radius:18px; }
.tech-map__node { width:13px; height:13px; position:absolute; z-index:2; border:3px solid #fff; border-radius:50%; background:var(--teal); box-shadow:0 0 0 1px rgba(24,170,168,.45); }
.tech-map__node--one { top:-7px; left:14%; }.tech-map__node--two { right:-7px; bottom:22%; }
.tech-architecture { padding:clamp(88px,9vw,132px) 24px; position:relative; background:linear-gradient(145deg,#173f42,#0d6263); }
.tech-architecture::before { content:""; position:absolute; inset:0; opacity:.13; background-image:linear-gradient(rgba(255,255,255,.18) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.18) 1px,transparent 1px); background-size:64px 64px; -webkit-mask-image:linear-gradient(180deg,#000,transparent 65%); mask-image:linear-gradient(180deg,#000,transparent 65%); pointer-events:none; }
.tech-architecture__inner { width:min(100%,1180px); margin:auto; position:relative; z-index:1; }
.tech-architecture h2 { max-width:760px; margin:0 0 58px; color:#fff; font-size:clamp(36px,4.2vw,56px); letter-spacing:-.045em; }
.tech-cards { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px; counter-reset:tech-module; }
.tech-module { min-width:0; overflow:hidden; display:grid; grid-template-rows:230px 1fr; border:1px solid rgba(255,255,255,.16); border-radius:22px; background:rgba(244,252,252,.97); box-shadow:0 22px 42px rgba(0,38,40,.2); counter-increment:tech-module; }
.tech-module__media { min-height:230px; display:grid; place-items:center; position:relative; overflow:hidden; border-bottom:1px solid rgba(24,170,168,.16); background:linear-gradient(145deg,#dff2f2,#f8fdfd); }
.tech-module__media::after { content:"0" counter(tech-module); position:absolute; top:20px; right:22px; color:rgba(9,137,136,.42); font-size:12px; font-weight:700; letter-spacing:2px; }
.tech-module__media img { width:100%; height:100%; display:block; object-fit:contain; mix-blend-mode:multiply; }
.tech-module:first-child .tech-module__media img { object-fit:cover; object-position:center 48%; }
.tech-module__media--servers img,.tech-module__media--database img { object-fit:cover; mix-blend-mode:normal; }
.tech-module__media--servers img { object-position:center 48%; }.tech-module__media--database img { object-position:center 53%; }
.tech-module__body { padding:30px 32px 34px; }
.tech-page.is-tech-reveal-ready .tech-module__body { opacity:.12; transform:translateY(34px); transition:opacity .85s ease-out,transform .85s cubic-bezier(.22,1,.36,1); transition-delay:var(--tech-reveal-delay,0ms); will-change:opacity,transform; }
.tech-page.is-tech-reveal-ready .tech-module__body.is-visible { opacity:1; transform:translateY(0); }
.tech-cards h3 { margin:0 0 20px; color:#315359; font-size:clamp(22px,2.2vw,29px); line-height:1.15; letter-spacing:-.03em; }
.tech-cards p,.tech-cards li,.tech-info li { font-size:13px; line-height:1.62; }
.tech-cards p { margin:0 0 13px; }.tech-cards strong { display:block; margin:19px 0 10px; font-size:13px; }.tech-cards ul,.tech-info ul { margin:0; padding-left:19px; }.tech-cards li+li,.tech-info li+li { margin-top:8px; }
.tech-info { padding:clamp(82px,9vw,125px) 24px; background:#eef7f7; }
.tech-info__inner { width:min(100%,1180px); margin:auto; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; align-items:stretch; }
.tech-info__card { min-width:0; min-height:360px; padding:34px 32px; position:relative; border:1px solid rgba(18,145,143,.18); border-radius:20px; background:rgba(255,255,255,.9); box-shadow:0 14px 30px rgba(30,85,88,.08); transition:transform .3s ease,border-color .3s ease,box-shadow .3s ease,background-color .3s ease; }
.tech-info__card::before { content:""; width:42px; height:3px; display:block; margin-bottom:28px; border-radius:999px; background:var(--teal); }
.tech-info__card:hover { transform:translateY(-4px) scale(1.008); border-color:rgba(18,145,143,.38); background:#fff; box-shadow:0 22px 40px rgba(30,85,88,.13); }
.tech-info__card h2 { margin:0 0 24px; color:#315359; font-size:clamp(24px,2.25vw,32px); line-height:1.12; letter-spacing:-.035em; }
.tech-info__card img { width:48px; height:48px; margin:0 0 20px; object-fit:contain; }
.tech-info__card--security h2 { max-width:250px; }
.tech-page .system-compatibility { border-top:1px solid rgba(255,255,255,.12); background:radial-gradient(circle at 80% 15%,rgba(43,183,180,.16),transparent 28%),linear-gradient(135deg,#153b3f,#0d6263); }
@media(max-width:980px){.tech-hero{min-height:600px}.tech-hero__inner{min-height:600px;grid-template-columns:minmax(0,1fr) minmax(320px,.82fr)}.tech-hero h1{font-size:clamp(46px,6vw,62px)}.tech-hero__visual{min-height:390px}.tech-cards{gap:20px}.tech-module{grid-template-rows:200px 1fr}.tech-module__media{min-height:200px}.tech-info__inner{grid-template-columns:repeat(2,minmax(0,1fr))}.tech-info__card:last-child{grid-column:1/-1;min-height:0}}
@media(max-width:760px){.tech-hero{min-height:0;background:linear-gradient(165deg,#e8f5f5 0 64%,#d9eeee 64%)}.tech-hero::before{width:80vw;height:80vw;top:-45vw;right:-25vw}.tech-hero__inner{width:min(100% - 32px,580px);min-height:0;padding:70px 0 62px;grid-template-columns:1fr;gap:20px}.tech-hero__content{padding:0 0 35px}.tech-hero__content::before{bottom:12px}.tech-hero h1{font-size:clamp(40px,12vw,54px)}.tech-hero__visual{min-height:310px}.tech-hero__visual::before{width:min(88vw,340px)}.tech-hero__visual::after{right:50%}.tech-hero__visual img{width:min(92%,340px)}.tech-map,.tech-architecture,.tech-info{padding-right:16px;padding-left:16px}.tech-map__frame{border-radius:18px}.tech-map__frame::before,.tech-map img{border-radius:12px}.tech-cards{grid-template-columns:1fr;gap:18px}.tech-module{grid-template-rows:190px 1fr;border-radius:17px}.tech-module__media{min-height:190px}.tech-module__body{padding:27px 24px 30px}.tech-architecture h2{margin-bottom:38px}.tech-info__inner{grid-template-columns:1fr}.tech-info__card,.tech-info__card:last-child{min-height:0;grid-column:auto;padding:30px 25px}.tech-info__card--security::before{top:30px;right:25px}}
@media(max-width:440px){.tech-hero__visual{min-height:260px}.tech-module{grid-template-rows:165px 1fr}.tech-module__media{min-height:165px}.tech-map{padding-top:64px;padding-bottom:64px}.tech-map__frame{padding:8px}.tech-map__frame::before{inset:8px}.tech-map__node{display:none}}
@media(prefers-reduced-motion:reduce){.tech-info__card{transition:none}.tech-info__card:hover{transform:none}.tech-page.is-tech-reveal-ready .tech-module__body{opacity:1;transform:none;transition:none;will-change:auto}}

/* Quiénes somos */
.about-page { overflow-x:hidden; background:#f3f9f9; color:#3d555a; font-family:"Lato",Arial,sans-serif; }
.about-hero { min-height:620px; display:grid; align-items:center; position:relative; overflow:hidden; background-image:linear-gradient(90deg,rgba(245,250,250,.98) 0%,rgba(245,250,250,.9) 32%,rgba(245,250,250,.32) 56%,rgba(245,250,250,.05) 100%),url("../img/equipo_de_trabajo_1.png"); background-position:center; background-size:cover; background-repeat:no-repeat; }
.about-hero::after { content:""; width:420px; height:420px; position:absolute; left:-250px; bottom:-280px; border:1px solid rgba(24,170,168,.16); border-radius:50%; box-shadow:0 0 0 70px rgba(24,170,168,.035); pointer-events:none; }
.about-hero__inner { width:min(calc(100% - 48px),1180px); margin:auto; padding:100px 0; }
.about-hero__content { max-width:610px; padding-left:28px; position:relative; }
.about-hero__content::before { content:""; width:4px; height:100%; position:absolute; top:0; left:0; border-radius:999px; background:linear-gradient(180deg,var(--teal),rgba(24,170,168,.12)); }
.about-hero h1 { margin:0 0 27px; color:#304b50; font-size:clamp(48px,5.4vw,76px); line-height:1.02; letter-spacing:-.055em; }
.about-hero p { max-width:570px; margin:0; color:#52686d; font-size:17px; line-height:1.7; }
.about-mv { padding:clamp(85px,9vw,128px) 24px; background:#f8fdfd; }
.about-mv__inner { width:min(100%,1180px); margin:auto; }
.about-mv__heading { margin:0 0 48px; text-align:center; }
.about-mv__heading>p,.about-values__heading>div>p { margin:0 0 13px; color:#0a9895; font-size:11px; font-weight:700; letter-spacing:3.4px; text-transform:uppercase; }
.about-mv__heading h2,.about-values__heading h2 { margin:0; color:#304b50; font-size:clamp(36px,4.2vw,56px); line-height:1.08; letter-spacing:-.045em; }
.about-mv__layout { display:grid; grid-template-columns:minmax(300px,.82fr) minmax(0,1.18fr); align-items:stretch; gap:30px; }
.about-mv__visual { min-height:480px; overflow:hidden; position:relative; border-radius:24px; box-shadow:0 24px 48px rgba(30,80,83,.15); }
.about-mv__visual::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 55%,rgba(9,91,92,.23)); pointer-events:none; }
.about-mv__visual img { width:100%; height:100%; display:block; object-fit:cover; object-position:48% center; }
.about-mv__cards { display:grid; gap:20px; }
.about-mv__card { min-height:230px; padding:34px 36px 32px; position:relative; overflow:hidden; border:1px solid rgba(24,170,168,.18); border-radius:20px; background:#fff; box-shadow:0 14px 30px rgba(30,85,88,.08); }
.about-mv__card:last-child { background:linear-gradient(145deg,#eef9f9,#fff); }
.about-mv__card::after { content:""; width:120px; height:120px; position:absolute; top:-70px; right:-55px; border:1px solid rgba(24,170,168,.15); border-radius:50%; }
.about-mv__card img { width:46px; height:46px; margin:0 0 18px; object-fit:contain; }
.about-mv__card h3 { margin:0 0 14px; color:#315359; font-size:clamp(24px,2.5vw,32px); line-height:1.1; letter-spacing:-.035em; }
.about-mv__card p { margin:0; color:#5a7075; font-size:14px; line-height:1.68; }
.about-page.is-about-reveal-ready .about-mv__card { opacity:.12; transform:translateY(28px); transition:opacity .8s ease-out,transform .8s cubic-bezier(.22,1,.36,1); transition-delay:var(--about-delay,0ms); }
.about-page.is-about-reveal-ready .about-mv__card.is-visible { opacity:1; transform:translateY(0); }
.about-values { padding:clamp(88px,10vw,140px) 24px; position:relative; overflow:hidden; background:radial-gradient(circle at 14% 5%,rgba(57,194,190,.16),transparent 28%),linear-gradient(145deg,#173f42,#0c6263); }
.about-values::before { content:""; position:absolute; inset:0; z-index:0; opacity:.1; background-image:linear-gradient(rgba(255,255,255,.2) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.2) 1px,transparent 1px); background-size:64px 64px; -webkit-mask-image:linear-gradient(90deg,#000,transparent 78%); mask-image:linear-gradient(90deg,#000,transparent 78%); pointer-events:none; }
.about-values::after { content:""; position:absolute; inset:-4%; z-index:0; background:linear-gradient(90deg,rgba(13,87,89,.98) 0%,rgba(13,87,89,.76) 42%,rgba(13,87,89,.3) 76%,rgba(13,87,89,.72) 100%),url("../img/cualidades_4.png") center/cover no-repeat; opacity:.58; filter:blur(1.5px) saturate(.78); -webkit-mask-image:linear-gradient(90deg,transparent 0%,#000 18%,#000 88%,transparent 100%); mask-image:linear-gradient(90deg,transparent 0%,#000 18%,#000 88%,transparent 100%); pointer-events:none; }
.about-values__inner { width:min(100%,1180px); margin:auto; position:relative; z-index:1; }
.about-values__heading { margin-bottom:50px; display:grid; grid-template-columns:minmax(0,1fr) minmax(260px,.55fr); align-items:center; gap:50px; }
.about-values__heading>div>p { color:rgba(214,246,245,.7); }.about-values__heading h2 { color:#fff; }
.about-values__heading img { width:min(100%,330px); max-height:200px; justify-self:end; object-fit:contain; filter:drop-shadow(0 18px 24px rgba(0,27,29,.22)); }
.about-values__grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; counter-reset:about-value; }
.about-values article { min-width:0; min-height:180px; padding:30px 28px 28px; position:relative; overflow:hidden; border:1px solid rgba(255,255,255,.17); border-radius:18px; background:rgba(255,255,255,.1); color:#fff; box-shadow:0 16px 30px rgba(0,37,39,.14); counter-increment:about-value; -webkit-backdrop-filter:blur(5px); backdrop-filter:blur(5px); }
.about-values article::before { content:"0" counter(about-value); display:block; margin-bottom:28px; color:#5de0dc; font-size:12px; font-weight:700; letter-spacing:2px; }
.about-values article::after { content:""; width:62px; height:2px; position:absolute; top:38px; right:28px; border-radius:999px; background:linear-gradient(90deg,rgba(93,224,220,.7),transparent); }
.about-values h3 { margin:0 0 12px; font-size:20px; line-height:1.2; letter-spacing:-.02em; }.about-values p { margin:0; color:rgba(239,252,252,.82); font-size:13px; line-height:1.58; }
.about-page.is-about-reveal-ready .about-values article { opacity:.08; transform:translateX(54px); transition:opacity .85s ease-out,transform .85s cubic-bezier(.22,1,.36,1); transition-delay:var(--about-delay,0ms); }
.about-page.is-about-reveal-ready .about-values.is-visible article { opacity:1; transform:translateX(0); }
.about-agreements { padding:clamp(76px,8vw,108px) 24px; position:relative; overflow:hidden; text-align:center; color:#fff; background:radial-gradient(circle at 50% -35%,rgba(80,218,214,.28),transparent 42%),linear-gradient(135deg,#163d41,#0d6263); }
.about-agreements::before,.about-agreements::after { content:""; position:absolute; border:1px solid rgba(255,255,255,.08); border-radius:50%; pointer-events:none; }.about-agreements::before { width:360px; height:360px; top:-270px; left:calc(50% - 180px); }.about-agreements::after { width:180px; height:180px; right:-100px; bottom:-115px; }
.about-agreements h2 { margin:0 0 42px; position:relative; z-index:1; font-size:clamp(30px,3.2vw,42px); line-height:1.1; letter-spacing:-.035em; }
.about-agreements h2::after { content:""; width:56px; height:2px; display:block; margin:17px auto 0; border-radius:999px; background:#59ddd9; }
.about-agreements>div { width:min(100%,720px); margin:auto; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); align-items:center; gap:24px; position:relative; z-index:1; }
.about-agreements img { width:100%; height:118px; display:block; padding:30px 42px; border:1px solid rgba(255,255,255,.15); border-radius:18px; background:rgba(255,255,255,.075); object-fit:contain; filter:none; box-shadow:0 15px 30px rgba(0,34,36,.13); transition:transform .3s ease,border-color .3s ease,background-color .3s ease,box-shadow .3s ease; }
.about-agreements img:hover { transform:translateY(-4px); border-color:rgba(89,221,217,.48); background:rgba(255,255,255,.12); box-shadow:0 20px 36px rgba(0,34,36,.2); }
.about-page.is-agreements-reveal-ready .about-agreements img { opacity:.1; transform:translateY(22px); transition:opacity .75s ease-out,transform .75s cubic-bezier(.22,1,.36,1),border-color .3s ease,background-color .3s ease,box-shadow .3s ease; transition-delay:var(--agreement-delay,0ms); }
.about-page.is-agreements-reveal-ready .about-agreements.is-visible img { opacity:1; transform:translateY(0); }
.about-page.is-agreements-reveal-ready .about-agreements.is-visible img:hover { transform:translateY(-4px); }
@media(max-width:900px){.about-hero{min-height:560px;background-position:58% center}.about-mv__layout{grid-template-columns:minmax(260px,.75fr) minmax(0,1.25fr)}.about-mv__visual{min-height:500px}.about-mv__card{padding:30px}.about-values__grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:760px){.about-hero{min-height:620px;align-items:end;background-image:linear-gradient(180deg,rgba(245,250,250,.08) 0 38%,rgba(245,250,250,.9) 68%,rgba(245,250,250,.99) 100%),url("../img/equipo_de_trabajo_1.png");background-position:68% center}.about-hero__inner{width:min(100% - 32px,580px);padding:260px 0 62px}.about-hero__content{padding-left:20px}.about-hero h1{margin-bottom:19px;font-size:clamp(42px,12vw,56px)}.about-hero p{font-size:14px;line-height:1.62}.about-mv,.about-values{padding-right:16px;padding-left:16px}.about-mv__heading{text-align:left;margin-bottom:36px}.about-mv__layout{grid-template-columns:1fr;gap:22px}.about-mv__visual{min-height:260px}.about-mv__cards{gap:16px}.about-mv__card{min-height:0;padding:28px 25px}.about-values__heading{grid-template-columns:1fr;gap:26px;margin-bottom:38px}.about-values__heading img{width:min(82%,290px);justify-self:center}.about-values__grid{grid-template-columns:1fr;gap:14px}.about-values article{min-height:155px;padding:26px 24px}.about-values article::after{top:34px;right:24px}.about-agreements>div{grid-template-columns:1fr;max-width:360px;gap:16px}.about-agreements img{height:105px;padding:27px 36px}}
@media(max-width:420px){.about-hero{min-height:590px;background-position:70% center}.about-hero__inner{padding-top:235px}.about-values__heading img{width:100%}}
@media(prefers-reduced-motion:reduce){.about-page.is-about-reveal-ready .about-mv__card,.about-page.is-about-reveal-ready .about-values article,.about-page.is-agreements-reveal-ready .about-agreements img{opacity:1;transform:none;transition:none}}
.contact-page { overflow-x:hidden; background:#f3f9f9; color:#40575b; font-family:"Lato",Arial,sans-serif; }
.contact-banner { min-height:470px; position:relative; overflow:hidden; background:linear-gradient(125deg,#173f42 0 55%,#0b7775 55% 100%); color:#fff; }
.contact-banner::before { content:""; position:absolute; inset:0; opacity:.12; background-image:linear-gradient(rgba(255,255,255,.18) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.18) 1px,transparent 1px); background-size:58px 58px; -webkit-mask-image:linear-gradient(90deg,#000,transparent 75%); mask-image:linear-gradient(90deg,#000,transparent 75%); }
.contact-banner::after { content:""; width:420px; height:420px; position:absolute; right:-170px; top:-210px; border:1px solid rgba(255,255,255,.15); border-radius:50%; box-shadow:0 0 0 70px rgba(255,255,255,.025); }
.contact-banner__inner { width:min(calc(100% - 48px),1120px); min-height:470px; margin:auto; padding:70px 0; display:grid; grid-template-columns:minmax(0,1fr) minmax(280px,.55fr); align-items:center; gap:60px; position:relative; z-index:1; }
.contact-banner h1 { max-width:680px; margin:0; color:#fff; font-size:clamp(50px,6vw,82px); line-height:1.02; letter-spacing:-.055em; }
.contact-banner__visual { min-height:270px; display:grid; place-items:center; position:relative; }
.contact-banner__visual::before { content:""; width:280px; height:280px; position:absolute; border:1px solid rgba(255,255,255,.2); border-radius:38% 62% 55% 45% / 45% 42% 58% 55%; background:rgba(255,255,255,.08); transform:rotate(-7deg); }
.contact-banner img { width:min(90%,300px); max-height:250px; height:auto; display:block; position:relative; z-index:1; object-fit:contain; filter:drop-shadow(0 22px 24px rgba(0,37,39,.25)); }
.contact-content { padding:clamp(82px,9vw,125px) 24px; position:relative; background:radial-gradient(circle at 86% 8%,rgba(24,170,168,.1),transparent 25%),#f4fafa; }
.contact-content__grid { width:min(100%,1120px); margin:auto; display:grid; grid-template-columns:minmax(0,1.08fr) minmax(340px,.92fr); gap:26px; align-items:stretch; }
.contact-card { min-width:0; min-height:430px; padding:clamp(34px,4vw,52px); position:relative; overflow:hidden; border-radius:22px; box-shadow:0 20px 42px rgba(28,80,83,.11); }
.contact-card--demo { border:1px solid rgba(24,170,168,.19); background:rgba(255,255,255,.94); }
.contact-card--demo::before { content:""; width:70px; height:4px; display:block; margin-bottom:34px; border-radius:999px; background:linear-gradient(90deg,var(--teal),rgba(24,170,168,.12)); }
.contact-card--support { border:1px solid rgba(255,255,255,.15); color:#fff; background:linear-gradient(145deg,#18aaa8,#087f7d); }
.contact-card--support::before { content:""; width:160px; height:160px; position:absolute; top:-105px; right:-80px; border:1px solid rgba(255,255,255,.16); border-radius:50%; }
.contact-card h2 { max-width:520px; margin:0 0 30px; font-size:clamp(29px,3.2vw,43px); line-height:1.12; letter-spacing:-.04em; }
.contact-card--demo h2 { color:#315359; }.contact-card p { margin:0; font-size:14px; line-height:1.68; }.contact-card p+p { margin-top:9px; }.contact-card--demo p { color:#607479; }
.contact-card--support>div { margin-top:36px; padding:24px 24px 24px 64px; position:relative; border:1px solid rgba(255,255,255,.2); border-radius:15px; background:rgba(255,255,255,.94); color:#238f8d; transition:transform .3s ease,box-shadow .3s ease; }
.contact-card--support>div::before { content:""; width:22px; height:22px; position:absolute; top:25px; left:24px; border:2px solid currentColor; border-radius:50%; box-shadow:7px 7px 0 -5px currentColor; }
.contact-card--support>div:hover { transform:translateY(-3px); box-shadow:0 14px 26px rgba(0,60,61,.18); }
.contact-card strong { display:block; margin-bottom:8px; font-size:18px; }.contact-card a { display:block; color:#64767a; font-size:15px; font-weight:700; line-height:1.45; }.contact-card a:focus-visible { outline:2px solid var(--teal); outline-offset:5px; }
.contact-page.is-contact-reveal-ready .contact-card { opacity:.1; transform:translateY(30px); transition:opacity .8s ease-out,transform .8s cubic-bezier(.22,1,.36,1); transition-delay:var(--contact-delay,0ms); }
.contact-page.is-contact-reveal-ready .contact-card.is-visible { opacity:1; transform:translateY(0); }
@media(max-width:820px){.contact-banner__inner{grid-template-columns:minmax(0,1fr) minmax(230px,.5fr);gap:35px}.contact-content__grid{grid-template-columns:1fr}.contact-card{min-height:0}}
@media(max-width:600px){.contact-banner{min-height:520px;background:linear-gradient(160deg,#173f42 0 67%,#0b7775 67%)}.contact-banner__inner{width:min(100% - 32px,520px);min-height:520px;padding:62px 0 48px;grid-template-columns:1fr;gap:22px}.contact-banner h1{max-width:340px;font-size:clamp(40px,12vw,52px);overflow-wrap:break-word}.contact-banner__visual{min-height:185px}.contact-banner__visual::before{width:190px;height:190px}.contact-banner img{width:min(90%,210px);max-height:165px;object-fit:contain}.contact-content{padding:65px 16px}.contact-content__grid{gap:18px}.contact-card{padding:32px 25px;border-radius:17px}.contact-card h2{margin-bottom:24px;font-size:29px}.contact-card--support>div{padding:21px 18px 21px 56px}.contact-card--support>div::before{top:22px;left:20px}.contact-card a{font-size:13px}}
@media(prefers-reduced-motion:reduce){.contact-page.is-contact-reveal-ready .contact-card{opacity:1;transform:none;transition:none}.contact-card--support>div{transition:none}}

.whatsapp-float { min-height:56px; position:fixed; right:clamp(16px,2.2vw,32px); bottom:clamp(16px,2.2vw,30px); z-index:80; display:inline-flex; align-items:center; gap:11px; padding:8px 18px 8px 9px; border:1px solid rgba(255,255,255,.35); border-radius:999px; color:#fff; background:#20a967; box-shadow:0 14px 30px rgba(17,85,54,.24); font-family:"Lato",Arial,sans-serif; font-size:13px; font-weight:700; line-height:1.2; transition:transform .25s ease,background-color .25s ease,box-shadow .25s ease; }
.whatsapp-float:hover,.whatsapp-float:focus-visible { color:#fff; background:#15965a; box-shadow:0 18px 34px rgba(17,85,54,.3); transform:translateY(-3px); outline:none; }
.whatsapp-float__icon { width:40px; height:40px; flex:0 0 auto; display:grid; place-items:center; border-radius:50%; background:rgba(255,255,255,.16); }
.whatsapp-float__icon svg { width:24px; height:24px; display:block; fill:currentColor; }
@media(max-width:560px){.whatsapp-float{width:56px;height:56px;min-height:0;padding:8px;justify-content:center}.whatsapp-float__icon{width:40px;height:40px}.whatsapp-float__label{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}}
@media(prefers-reduced-motion:reduce){.whatsapp-float{transition:none}.whatsapp-float:hover,.whatsapp-float:focus-visible{transform:none}}
@media (max-width: 760px) {
  .hero .hero-slide--image-fade .hero-ai-card { width: min(286px, 82%); top: 8px; right: auto; bottom: auto; left: 8px; display: grid; gap: 11px; padding: 13px 14px; transform: none; }
  .hero-ai-card__copy { font-size: 10px; }
}
@media (max-width: 420px) { .hero .hero-slide--image-fade .hero-ai-card { left: 4px; width: min(260px, calc(100% - 8px)); } }

/* Ajustes específicos de la página de inicio. */
.products .product-card--stations .product-card__image {
  background-image: url("../img/gasolinera-por-la-noche-400x516.jpg");
}

.products .product-card--self .product-card__image {
  background-image: url("../img/vista-de-mujer-con-coche-en-el-gasolinera-400x516.jpg");
  opacity: 0;
  transform: scale(1.08);
}

.products .product-card--trading .product-card__image {
  background-image: url("../img/contaminacion-ambiental-y-exterior-de-la-industria-la-luz-del-dia-400x516.jpg");
}

.products .product-card--transport .product-card__image {
  background-image: url("../img/camiones-que-transportan-productos-quimicos-peligrosos-por-carretera-transporte-industrial-400x516.jpg");
}

.products .product-card:hover .product-card__image,
.products .product-card:focus-visible .product-card__image {
  opacity: .72;
  transform: scale(1.01);
}

.compliance {
  isolation: isolate;
  background:
    radial-gradient(circle at 83% 18%, rgba(31, 173, 169, .18), transparent 25%),
    radial-gradient(circle at 96% 78%, rgba(24, 141, 145, .09), transparent 23%),
    linear-gradient(125deg, #fff 0%, #f8fcfc 48%, #eef8f7 100%);
}

.compliance::before { z-index: 0; }

.compliance__ambient {
  position: absolute;
  z-index: 0;
  width: min(52vw, 720px);
  aspect-ratio: 1;
  top: -22%;
  right: -12%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 37%, rgba(255, 255, 255, .76) 0 2%, transparent 2.5%),
    radial-gradient(circle at 46% 47%, rgba(55, 184, 177, .2) 0%, rgba(55, 184, 177, .08) 36%, transparent 68%);
  filter: blur(.2px);
  pointer-events: none;
}

.compliance__rings {
  position: absolute;
  z-index: 0;
  width: min(41vw, 555px);
  aspect-ratio: 1;
  right: 4%;
  bottom: -28%;
  border: 1px solid rgba(20, 145, 144, .16);
  border-radius: 50%;
  box-shadow:
    0 0 0 26px rgba(20, 145, 144, .035),
    0 0 0 72px rgba(20, 145, 144, .018);
  pointer-events: none;
}

.compliance__inner { z-index: 1; }

.compliance__visual::before {
  border-color: rgba(24, 170, 168, .22);
  box-shadow: 0 0 0 28px rgba(24, 170, 168, .045), 0 18px 42px rgba(26, 117, 119, .05);
}

.message-carousel.is-scroll-driven .message-carousel__arrow {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.integral-cta {
  background:
    linear-gradient(115deg, rgba(0, 79, 81, .89), rgba(0, 126, 125, .78)),
    url("../img/Recurso-65-1-1024x499.png") center / cover no-repeat;
}

@media (max-width: 900px) {
  .compliance__ambient { width: min(88vw, 680px); top: 38%; right: -32%; }
  .compliance__rings { width: min(72vw, 520px); right: -17%; bottom: -13%; }
}

@media (max-width: 600px) {
  .compliance__ambient { width: 118vw; top: 44%; right: -52%; }
  .compliance__rings { width: 92vw; right: -36%; bottom: -8%; }
}

@media (prefers-reduced-motion: reduce) {
  .message-carousel.is-scroll-driven .message-carousel__slide { transition: none; }
}
