:root {
  --navy: #021428;
  --blue-deep: #083060;
  --blue: #0e52a0;
  --blue-mid: #1478d4;
  --sky: #38b6ff;
  --sky-light: #b8e3ff;
  --sky-xlight: #e8f6ff;
  --teal: #00c4b0;
  --teal-light: #b2f0e8;
  --red: #c90808;
  --white: #ffffff;
  --off: #f3faff;
  --gray: #6a90b0;
  --text: #051828;
  --sub: #336080;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-full: 999px;
  --shadow-sm: 0 2px 12px rgba(14, 82, 160, .08);
  --shadow-md: 0 8px 32px rgba(4, 47, 95, .153);
  --shadow-lg: 0 20px 60px rgba(14, 82, 160, .20);
  --shadow-xl: 0 32px 80px rgba(14, 82, 160, .26);
  --t: 0.28s cubic-bezier(.4, 0, .2, 1);
  --section-y: 100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

svg {
  max-width: 100%;
}

@font-face {
  font-family: "MonotypeCorsiva";
  src: url("./fonts/MTCORSVA.TTF") format("truetype");
}

.container {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 28px;
  box-sizing: border-box;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-full);
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  border: none;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep));
  color: #fff;
  box-shadow: 0 4px 18px rgba(14, 82, 160, .32);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(14, 82, 160, .42);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  backdrop-filter: blur(4px);
}

.btn-wa {
  background: linear-gradient(135deg, #25d366, #1db954);
  color: #fff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .32);
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, .48);
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sky);
  background: rgba(56, 182, 255, .12);
  padding: 5px 14px;
  border-radius: var(--r-full);
  border: 1px solid rgba(56, 182, 255, .22);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(14, 82, 160, .08);
  transition: box-shadow var(--t), background var(--t);
}

header.scrolled {
  box-shadow: 0 4px 24px rgba(14, 82, 160, .10);
  background: rgba(255, 255, 255, .97);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-img-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 6px rgba(0, 0, 0, .18);
  flex-shrink: 0;
  overflow: hidden;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.logo-name {
  font-family: "MonotypeCorsiva", cursive;
  font-size: 22px;
  color: var(--red);
  line-height: 1;
}

.logo-sub {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 3px;
}

nav.dnav {
  display: flex;
  align-items: center;
  gap: 2px;
}

nav.dnav a {
  font-size: 13px;
  font-weight: 700;
  color: var(--sub);
  padding: 7px 14px;
  border-radius: var(--r-full);
  transition: color var(--t), background var(--t);
  position: relative;
}

nav.dnav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 2px;
  background: var(--blue-mid);
  border-radius: 2px;
  transition: transform var(--t);
}

nav.dnav a:hover,
nav.dnav a.active {
  color: var(--blue);
  background: var(--sky-xlight);
}

nav.dnav a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.dropdown {
  position: relative;
}

.dropbtn {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s;
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 12px 18px;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background: #f5f7fa;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hcta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--sky-xlight), #d6eeff);
  border: 1px solid var(--sky-light);
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  transition: transform var(--t), box-shadow var(--t);
  box-shadow: var(--shadow-sm);
}

.phone-pill:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.phone-pill svg {
  width: 15px;
  height: 15px;
  fill: var(--blue);
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--r-sm);
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mnav {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 16px 28px 28px;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform .35s ease, opacity .25s ease;
  z-index: 199;
  border-top: 1px solid var(--sky-xlight);
  box-sizing: border-box;
}

.mnav.open {
  transform: translateY(0);
  opacity: 1;
}

.mnav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--sky-xlight);
  transition: color var(--t), padding-left var(--t);
}

.mnav a:last-child {
  border-bottom: none;
}

.mnav a:hover {
  color: var(--blue);
  padding-left: 8px;
}

.mobile-dropdown {
  width: 100%;
}

.mobile-dropdown-btn {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--sky-xlight);
  padding: 13px 0;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-dropdown-content {
  display: none;
  padding: 4px 0 8px 16px;
}

.mobile-dropdown-content.open {
  display: block;
}

.mobile-dropdown-content a {
  border-bottom: none;
  padding: 10px 0;
  font-size: 14px;
  color: var(--sub);
}

.hero {
  padding-top: 100px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  background: url('./assets/hero.png') center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 720px;
  height: 720px;
  top: -240px;
  right: -240px;
  background: radial-gradient(circle, rgba(56, 182, 255, .16) 0%, transparent 65%);
  pointer-events: none;
  animation: pulseGlow 7s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  bottom: -180px;
  left: -120px;
  background: radial-gradient(circle, rgba(0, 196, 176, .12) 0%, transparent 65%);
  pointer-events: none;
  animation: pulseGlow 9s ease-in-out infinite 2s;
}

@keyframes pulseGlow {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.12);
    opacity: .7;
  }
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 3;
}

.hero-wave svg {
  width: 100%;
  height: 90px;
  display: block;
}

.hero-content {
  padding: 80px 0 120px 56px;
  position: relative;
  z-index: 2;
  letter-spacing: .5px;
}

.hero-slogan {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero-title {
  font-family: "MonotypeCorsiva", cursive;
  font-size: clamp(42px, 3.3vw, 78px);
  color: var(--blue-deep);
  line-height: 1.05;
  margin-bottom: 22px;
  font-weight: 400;
  margin-left: -2px;
}

.hero-title span {
  font-family: "MonotypeCorsiva", cursive;
  font-size: clamp(42px, 7.5vw, 78px);
  line-height: 1.05;
}

.hero-title .red {
  color: var(--red);
  font-weight: 600;
  letter-spacing: -1px;
}

.hero-title .teal {
  color: var(--teal);
}

.hero-desc {
  font-size: 15px;
  color: rgba(5, 24, 40, .65);
  line-height: 1.85;
  max-width: 420px;
  margin-bottom: 36px;
  font-weight: 600;
  text-align: justify;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  gap: 16px;
}

.hero-stats>div {
  padding: 14px 20px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  border: 1px solid rgba(56, 182, 255, .18);
  box-shadow: var(--shadow-sm);
  min-width: 80px;
  text-align: center;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: .02em;
  color: var(--blue-deep);
  line-height: 1;
}

.stat-dot {
  color: var(--teal);
}

.stat-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--sub);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  height: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-garrafon {
  position: relative;
  width: 340px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .32));
}

.hero-garrafon img {
  width: 100%;
  animation: bob 5s ease-in-out infinite;
}

@keyframes bob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

.fbadge {
  position: absolute;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: var(--r-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
}

.fbadge.b1 {
  top: 80px;
  left: -20px;
  animation: floatY 4s ease-in-out infinite;
}

.fbadge.b2 {
  bottom: 120px;
  right: -10px;
  animation: floatY 4s ease-in-out infinite 2.2s;
}

.fbadge.b3 {
  bottom: 50px;
  left: 10px;
  animation: floatY 4s ease-in-out infinite 1s;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.fbadge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(56, 182, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.fbadge-top {
  font-size: 12px;
  font-weight: 800;
}

.fbadge-bot {
  font-size: 10px;
  color: rgba(255, 255, 255, .65);
  margin-top: 2px;
}

.trust {
  padding-bottom: var(--section-y);
}

.trust-title {
  margin-top: 70px;
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
  text-align: center;
}

.trust-subtitle {
  font-size: 22px;
  color: var(--blue-deep);
  margin-bottom: 44px;
  text-align: center;
}

.trust-subtitle span {
  color: var(--blue-mid);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.trust-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
  border: 1px solid rgba(56, 182, 255, .10);
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sky-light);
}

.trust-icon {
  font-size: 3rem;
  color: var(--blue-mid);
  margin-bottom: 16px;
  display: block;
  transition: transform var(--t);
  line-height: 1;
}

.trust-card:hover .trust-icon {
  transform: scale(1.15);
}

.trust-card h3 {
  color: var(--blue-deep);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.trust-card p {
  color: var(--sub);
  font-size: .9rem;
  line-height: 1.7;
}

.sec-header {
  text-align: center;
  margin-bottom: 52px;
}

.sec-title {
  font-size: clamp(30px, 3vw, 52px);
  color: var(--text);
  letter-spacing: .04em;
  margin-top: 10px;
  font-weight: 400;
  text-transform: uppercase;
}

.sec-sub {
  font-size: 15px;
  color: var(--sub);
  max-width: 520px;
  margin: 14px auto 0;
  line-height: 1.85;
  font-weight: 500;
}

.services-sub {
  font-size: 15px;
  color: var(--sub);
  max-width: 520px;
  line-height: 1.85;
  font-weight: 500;
}

.features {
  padding: var(--section-y) 0;
  background: var(--off);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 0%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feat {
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid rgba(56, 182, 255, .12);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.feat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-mid), var(--sky), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.feat:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-xl);
  border-color: var(--sky-light);
}

.feat:hover::before {
  transform: scaleX(1);
}

.feat-ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sky-xlight), #d0ecff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: transform var(--t), box-shadow var(--t);
  box-shadow: 0 4px 14px rgba(56, 182, 255, .15);
}

.feat:hover .feat-ico {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 8px 24px rgba(56, 182, 255, .28);
}

.feat-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: .06em;
  color: var(--text);
  margin-bottom: 10px;
}

.feat-desc {
  font-size: 13.5px;
  color: var(--sub);
  line-height: 1.8;
}

.services {
  padding: var(--section-y) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 20px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 12px rgba(1, 29, 52, 0.18);
  transition: transform .3s ease, box-shadow .3s ease;
}

.svc-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.svc-img {
  height: 210px;
  overflow: hidden;
  position: relative;
}

.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.svc-card:hover .svc-img img {
  transform: scale(1.08);
}

.svc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(2, 20, 40, .42) 100%);
}

.svc-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-full);
  z-index: 1;
  box-shadow: 0 3px 12px rgba(14, 82, 160, .32);
}

.svc-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .05em;
  color: var(--text);
  margin-bottom: 10px;
}

.svc-desc {
  font-size: 13.5px;
  color: var(--sub);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 20px;
  text-align: justify;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--blue-mid);
  transition: gap var(--t), color var(--t);
}

.svc-link:hover {
  gap: 12px;
  color: var(--blue);
}

.wave-divider {
  line-height: 0;
  position: relative;
  z-index: 1;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

.instalaciones {
  padding: var(--section-y) 0;
  background: linear-gradient(145deg, var(--navy) 0%, #0a3566 100%);
  position: relative;
  overflow: hidden;
}

.instalaciones::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -140px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(56, 182, 255, .09) 0%, transparent 65%);
  pointer-events: none;
  animation: pulseGlow 10s ease-in-out infinite;
}

.instalaciones::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 196, 176, .09) 0%, transparent 65%);
  pointer-events: none;
}

.instalaciones .label {
  color: var(--teal);
  background: rgba(0, 196, 176, .14);
  border-color: rgba(0, 196, 176, .25);
}

.instalaciones .sec-title {
  color: var(--white);
}

.instalaciones .sec-sub {
  color: rgba(255, 255, 255, .55);
}

.inst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.inst-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  transition: transform var(--t), box-shadow var(--t);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
}

.inst-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-xl);
  border-color: rgba(56, 182, 255, .28);
}

.inst-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(2, 20, 40, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.inst-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .55s ease;
  display: block;
}

.inst-card:hover .inst-img-wrap img {
  transform: scale(1.06);
}

.inst-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(2, 20, 61, .75) 100%);
  pointer-events: none;
}

.inst-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: var(--r-full);
  box-shadow: 0 3px 12px rgba(14, 82, 160, .38);
}

.inst-content {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.inst-content h3 {
  font-size: 20px;
  letter-spacing: .06em;
  color: #fff;
  margin: 0;
  line-height: 1.15;
  font-weight: 600;
}

.inst-content p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .58);
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

.inst-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  padding: 9px 20px;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(56, 182, 255, .4);
  background: rgba(56, 182, 255, .08);
  color: var(--sky);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .03em;
  cursor: pointer;
  transition: background var(--t), border-color var(--t), transform var(--t);
  width: fit-content;
}

.inst-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.inst-btn:hover {
  background: rgba(56, 182, 255, .18);
  border-color: var(--sky);
  transform: translateX(3px);
}

.inst-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(2, 10, 24, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .3s ease;
  box-sizing: border-box;
}

.inst-modal-backdrop.open {
  display: flex;
  opacity: 1;
}

.inst-modal {
  background: linear-gradient(160deg, #0a2040 0%, #0e3566 100%);
  border-radius: var(--r-xl);
  max-width: 860px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .55);
  border: 1px solid rgba(56, 182, 255, .16);
  display: flex;
  flex-direction: column;
  max-height: 92vh;
  animation: modalIn .32s cubic-bezier(.4, 0, .2, 1) both;
}

@keyframes modalIn {
  from {
    transform: translateY(24px) scale(.97);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

.inst-modal-img {
  width: 100%;
  background: rgba(2, 16, 36, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 320px;
  max-height: 55vh;
  overflow: hidden;
}

.inst-modal-img img {
  max-width: 100%;
  max-height: 55vh;
  object-fit: contain;
  display: block;
}

.inst-modal-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(2, 16, 36, .85) 0%, transparent 100%);
  z-index: 2;
}

.inst-modal-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sky);
  background: rgba(56, 182, 255, .16);
  border: 1px solid rgba(56, 182, 255, .28);
  padding: 5px 14px;
  border-radius: var(--r-full);
}

.inst-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background var(--t), transform var(--t);
  flex-shrink: 0;
}

.inst-modal-close:hover {
  background: rgba(201, 8, 8, .55);
  transform: rotate(90deg);
}

.inst-modal-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.inst-modal-body {
  padding: 28px 32px 32px;
}

.inst-modal-title {
  font-size: 30px;
  letter-spacing: .06em;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.1;
  font-weight: 400;
  text-transform: uppercase;
}

.inst-modal-desc {
  font-size: 14.5px;
  color: rgba(255, 255, 255, .62);
  line-height: 1.85;
  margin-bottom: 22px;
}

.inst-modal-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  list-style: none;
}

.inst-modal-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .75);
  background: rgba(56, 182, 255, .07);
  border: 1px solid rgba(56, 182, 255, .12);
  border-radius: var(--r-md);
  padding: 10px 14px;
}

.inst-modal-list li span.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.proceso {
  padding: var(--section-y) 0;
  background: var(--off);
  position: relative;
  overflow: hidden;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 2px;
  background: linear-gradient(90deg, var(--sky-light), var(--teal));
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 18px;
}

.step-n {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  border: 2px solid var(--sky-light);
  background: var(--white);
  color: var(--blue);
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(14, 82, 160, .12);
  transition: transform var(--t), box-shadow var(--t);
}

.step:hover .step-n {
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(14, 82, 160, .22);
}

.step:nth-child(3) .step-n,
.step:nth-child(4) .step-n {
  border-color: var(--teal);
  color: var(--teal);
}

.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: .06em;
  color: var(--text);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  color: var(--blue);
  line-height: 1.8;
  font-weight: 500;
}

.contact {
  padding: var(--section-y) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.contact-info .label {
  color: var(--blue);
  background: var(--sky-xlight);
  border-color: var(--sky-light);
}

.contact-info .sec-title {
  text-align: left;
  margin-top: 10px;
}

.contact-info .sec-sub {
  text-align: left;
  margin: 12px 0 0;
}

.cinfo-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.cinfo-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--off);
  border-radius: var(--r-md);
  border: 1px solid rgba(56, 182, 255, .12);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  box-shadow: var(--shadow-sm);
}

.cinfo-item:hover {
  border-color: var(--sky-light);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.cinfo-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--sky-xlight), #d0eeff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(56, 182, 255, .15);
}

.cinfo-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 3px;
}

.cinfo-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: .04em;
  color: var(--text);
}

.cinfo-lbl-new {
  color: white;
  text-transform: capitalize;
  font-size: 11px;
  font-weight: 600;
  font-style: italic;
}

.cinfo-val-new {
  color: white;
  text-transform: capitalize;
  letter-spacing: .10em;
}

.cform {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(56, 182, 255, .10);
  position: relative;
  overflow: hidden;
}

.cform::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--sky), var(--teal));
}

.cform-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: .05em;
  color: var(--white);
  margin-bottom: 4px;
}

.cform-sub {
  font-size: 13px;
  color: var(--sub);
  margin-bottom: 24px;
}

.fg {
  margin-bottom: 14px;
}

.fg label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--sub);
  margin-bottom: 6px;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(56, 182, 255, .2);
  background: var(--off);
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
  appearance: none;
  box-sizing: border-box;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--blue-mid);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(20, 120, 212, .10);
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: #a8c8df;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fsub {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 15px;
  margin-top: 8px;
  border-radius: var(--r-md);
}

.fnote {
  text-align: center;
  font-size: 11px;
  color: var(--gray);
  margin-top: 12px;
}

.wa-banner {
  background: linear-gradient(90deg, #064e44 0%, #0a7a68 60%, #128c7e 100%);
  padding: 32px 0;
  position: relative;
  overflow: hidden;
}

.wa-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='28' stroke='rgba(255,255,255,.04)' fill='none'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.wa-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.wa-text {
  color: #fff;
}

.wa-text strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: .05em;
  display: block;
  margin-bottom: 3px;
}

.wa-text span {
  font-size: 14px;
}

.wa-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: #fff;
  letter-spacing: .05em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .18);
}

footer {
  background: linear-gradient(175deg, #021428 0%, #031d3a 60%, #021428 100%);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 182, 255, .18), rgba(0, 196, 176, .14), transparent);
}

footer::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(56, 182, 255, .055) 0%, transparent 65%);
  pointer-events: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .055);
  position: relative;
  z-index: 1;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.854);
  margin-top: 18px;
  max-width: 230px;
  line-height: 2;
  text-align: justify;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(56, 182, 255, .12);
  display: inline-block;
  margin-left: 10px;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgb(255, 255, 255);
  margin-bottom: 12px;
  transition: color var(--t), gap var(--t);
  letter-spacing: .01em;
}

.footer-col a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity var(--t);
}

.footer-col a:hover {
  color: rgba(255, 255, 255, .9);
  gap: 10px;
}

.footer-col a:hover::before {
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, 0.909);
  font-size: 17px;
  text-decoration: none;
  transition: all .3s ease;
  margin-bottom: 0;
}

.footer-social a::before {
  display: none;
}

.footer-social a:hover {
  transform: translateY(-3px);
  color: #fff;
  gap: 0;
  border-color: transparent;
}

.footer-social a:nth-child(1):hover {
  background: #25D366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, .28);
}

.footer-social a:nth-child(2):hover {
  background: #1877F2;
  box-shadow: 0 8px 20px rgba(24, 119, 242, .28);
}

.footer-social a:nth-child(3):hover {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  box-shadow: 0 8px 20px rgba(221, 42, 123, .28);
}

.footer-social a:nth-child(4):hover {
  background: #000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
}

.footer-social a:nth-child(5):hover {
  background: #000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
}

.footer-bot {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.footer-bot p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.961);
  letter-spacing: .02em;
  font-weight: 500;
}

.footer-logo .logo-name {
  color: var(--white);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 10px;
}

.scroll-fab {
  bottom: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue));
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 6px 24px rgba(14, 82, 160, .40);
  z-index: 190;
  transition: transform var(--t), box-shadow var(--t);
}

.fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 32px rgba(14, 82, 160, .52);
}

.wa-fab {
  position: fixed;
  bottom: 86px;
  right: 24px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #25d366, #1db954);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .40);
  z-index: 190;
  transition: transform var(--t), box-shadow var(--t);
}

.wa-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .52);
}

.wa-fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .38);
  animation: waPulse 2.5s ease-out infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    background-image: none;
    background: linear-gradient(160deg, var(--sky-xlight) 0%, #d6eeff 55%, var(--off) 100%);
    padding-top: 68px;
    overflow: hidden;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-wave {
    position: relative;
    bottom: auto;
    margin-top: -2px;
    line-height: 0;
  }

  .hero-content {
    padding: 48px 28px 32px;
    text-align: center;
  }

  .hero-slogan,
  .hero-desc,
  .hero-actions,
  .hero-stats {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-desc {
    max-width: 550px;
    text-align: center;
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .fbadge {
    display: none;
  }

  .features::before {
    display: none;
  }

  .features-grid,
  .inst-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .steps::before {
    display: none;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  nav.dnav,
  .hcta .btn {
    display: none;
  }

  .burger {
    display: flex;
  }

  .fab,
  .wa-fab {
    display: flex;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-title {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .hero {
    background-image: url('./assets/mobile_hero.png');
    background-size: cover;
    background-position: center;
  }

  .hero-title {
    font-size: clamp(38px, 10vw, 58px);
    text-align: start;
  }

  .hero-slogan {
    text-align: start;
  }

  .hero-title span {
    font-size: clamp(38px, 10vw, 58px);
  }

  .hero-desc {
    font-size: 14px;
    line-height: 1.8;
    font-weight: 700;
    color: var(--blue-deep);
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 50%;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
    text-align: justify;
  }

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .cform {
    padding: 28px 20px;
  }

  .frow {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
  }

  .wa-inner {
    flex-direction: column;
    text-align: center;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inst-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .inst-modal {
    max-width: 100%;
    border-radius: var(--r-lg);
  }

  .inst-modal-body {
    padding: 20px 18px 24px;
  }

  .inst-modal-list {
    grid-template-columns: 1fr;
  }

  .wa-num {
    font-size: 26px;
  }
}

@media (max-width: 520px) {
  footer {
    padding: 56px 0 0;
  }

  .hero {
    background-image: url('./assets/mobile_hero.png');
    background-size: cover;
    background-position: 75% center;
  }

  .hero-content {
    padding: 36px 16px 28px;
  }

  .hero-title {
    font-size: clamp(34px, 11vw, 52px);
  }

  .hero-title span {
    font-size: clamp(34px, 11vw, 52px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: start;
    gap: 12px;
  }

  .hero-actions a {
    width: auto;
    min-width: 140px;
    max-width: 210px;
    justify-content: start;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }

  .hero-stats>div {
    min-width: 70px;
    padding: 5px 9px;
  }

  .stat-num {
    font-size: 26px;
  }

  .features-grid,
  .inst-grid,
  .steps,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .svc-img {
    height: 180px;
  }

  .cform {
    padding: 24px 16px;
  }

  .footer-inner {
    gap: 28px;
  }

  .wa-inner .btn {
    width: 100%;
    justify-content: center;
  }

  .scroll-fab,
  .wa-fab {
    right: 12px;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .wa-fab {
    bottom: 72px;
  }

  .scroll-fab {
    bottom: 20px;
  }
}