﻿:root {
  --dark: #02051A;
  --dark-2: #021E4D;
  --blue: #0033A0;
  --blue-2: #0066FF;
  --blue-cyan: #00B4FF;
  --blue-neon: #00E6FF;
  --ink: #F3F9FF;
  --muted: rgba(243, 249, 255, 0.82);
  --line: rgba(0, 102, 255, 0.22);
  --soft: #DDEBFF;
  --white: #F8FBFF;
  --glass: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.32);
  --shadow-deep: 0 28px 80px rgba(0, 0, 0, 0.45);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(0, 102, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px),
    var(--dark);
  background-size: 72px 72px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: rgba(10, 18, 40, 0.22);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header:hover {
  background: rgba(10, 18, 40, 0.92);
  border-bottom-color: rgba(0, 102, 255, 0.22);
}

.navbar {
  width: 100%;
  height: 90px;
  margin: 0;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-sizing: border-box;
}

.brand {
  min-width: 240px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 14px 26px rgba(0, 102, 255, 0.34);
  overflow: hidden;
}

.brand-mark .brand-logo {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: transparent;
}

.brand-mark .brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.12);
}

.brand-mark span:nth-child(2):not(.brand-logo) {
  width: 20px;
}

.brand-mark span:nth-child(3) {
  width: 23px;
}

.brand strong {
  display: block;
  color: var(--white);
  font-size: 1.18rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 900;
}

.brand small {
  display: block;
  margin-top: 7px;
  color: var(--blue-cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.nav-menu a {
  position: relative;
  padding: 10px 0;
  border-radius: 999px;
  transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.nav-menu a:not(.nav-cta):hover {
  color: var(--blue-cyan);
  background: transparent;
  transform: translateY(-1px);
}

.nav-cta {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-left: 4px;
  padding: 0 28px;
  color: var(--dark);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 16px 32px rgba(0, 102, 255, 0.24);
  font-size: 0.98rem;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.28);
}

.nav-call {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 50%;
  color: var(--blue-cyan);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.nav-call svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--dark-2);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--soft);
  border-radius: 2px;
}

.hero {
  width: 100%;
  height: clamp(560px, 62vh, 760px);
  min-height: 620px;
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  isolation: isolate;
  background: linear-gradient(180deg, #151515, #1a1a1a);
  border-radius: 0;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #1a1a1a;
  box-shadow: none;
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 0;
  border-radius: 0;
  pointer-events: none;
}

.hero-slider::after {
  display: none;
}

.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.9s ease, transform 6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  display: none;
}

.hero-content {
  display: none;
}

.hero-badge {
  display: none;
}

.hero .eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  margin: 0 auto 18px;
  padding: 9px 14px;
  border: 1px solid rgba(0, 102, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  background: rgba(26, 26, 26, 0.72);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  font-size: 0.78rem;
  font-weight: 900;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.22);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-cyan);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  color: var(--soft);
  font-size: clamp(2.25rem, 3.6vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  width: min(780px, 100%);
  margin-inline: auto;
  color: var(--white);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.12;
  text-transform: uppercase;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.55);
}

h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.05rem, 3.8vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--soft);
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-text {
  display: none;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-actions {
  display: none;
}

.btn {
  position: relative;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 0;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn-primary {
  color: var(--dark);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 20px 42px rgba(0, 102, 255, 0.28);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(0, 102, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.icon {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.hero-metrics {
  display: none;
}

.hero-metrics div {
  padding: 18px;
  border: 1px solid rgba(0, 102, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.hero-metrics div:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
}

.hero-metrics strong {
  display: block;
  color: var(--white);
  font-size: 1.58rem;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.hero-proof {
  display: none;
}

.slider-controls {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.72);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.slider-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border: 1px solid rgba(0, 102, 255, 0.7);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.slider-dot.is-active {
  width: 10px;
  background: var(--blue-cyan);
  transform: scale(1.15);
}

.section {
  position: relative;
  padding: 108px 0;
  background-image: url("../img/fondo_web.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #111;
  background-blend-mode: overlay;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.48);
  pointer-events: none;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
} 

.section-heading p,
.split-copy p,
.why-copy p,
.contact-info p {
  color: var(--muted);
  line-height: 1.76;
}

.services {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.72), rgba(17, 17, 17, 0.86));
  background-image:
    linear-gradient(180deg, rgba(17, 17, 17, 0.72), rgba(17, 17, 17, 0.86)),
    url("../img/fondo_web.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-card,
.testimonial,
.step {
  position: relative;
  border: 1px solid rgba(0, 102, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(23, 23, 23, 0.92)),
    var(--dark);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.service-card::before,
.testimonial::before,
.step::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.14), transparent 46%, rgba(0, 102, 255, 0.08));
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.service-card {
  min-height: 248px;
  padding: 28px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover,
.step:hover,
.testimonial:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 102, 255, 0.28);
  box-shadow: var(--shadow-deep);
}

.service-card:hover::before,
.step:hover::before,
.testimonial:hover::before {
  opacity: 1;
}

.line-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--blue-cyan);
  border: 1px solid rgba(0, 102, 255, 0.18);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), var(--dark-2));
  box-shadow: 0 12px 24px rgba(0, 102, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card p,
.step p,
.testimonial p {
  color: rgba(255, 244, 205, 0.9);
  line-height: 1.68;
}

.sectors,
.process,
.testimonials {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.72), rgba(17, 17, 17, 0.84));
  background-image:
    linear-gradient(180deg, rgba(17, 17, 17, 0.72), rgba(17, 17, 17, 0.84)),
    url("../img/fondo_web.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  align-items: center;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(0, 102, 255, 0.18);
  border-radius: 24px;
  background: rgba(26, 26, 26, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.sector-grid span,
.benefit-list span,
.eco-items span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 15px 18px;
  border: 1px solid rgba(0, 102, 255, 0.18);
  border-radius: 15px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.sector-grid span:hover,
.benefit-list span:hover,
.eco-items span:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 102, 255, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.step {
  min-height: 245px;
  padding: 26px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.step span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--dark), var(--blue-2));
  box-shadow: 0 14px 28px rgba(0, 102, 255, 0.22);
  font-size: 0.78rem;
  font-weight: 900;
}

.why {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.70), rgba(17, 17, 17, 0.84));
  background-image:
    linear-gradient(180deg, rgba(17, 17, 17, 0.70), rgba(17, 17, 17, 0.84)),
    url("../img/fondo_web.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
}

.why-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.why-photo {
  position: relative;
}

.why-photo::before {
  content: "";
  position: absolute;
  inset: 24px -20px -20px 24px;
  border: 1px solid rgba(0, 102, 255, 0.18);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.12), rgba(26, 26, 26, 0.7));
}

.why-photo img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: var(--shadow-deep);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.eco-band {
  padding: 92px 0;
  border-block: 1px solid rgba(0, 102, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(19, 19, 19, 0.92));
  background-image:
    linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(19, 19, 19, 0.92)),
    url("../img/fondo_web.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
}

.eco-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: center;
}

.eco-layout .eyebrow {
  color: var(--blue-cyan);
}

.eco-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.eco-items span {
  border-color: rgba(0, 102, 255, 0.18);
}

.gallery {
  background-color: rgb(154 187 235 / 98%);
  background-image:
    linear-gradient(90deg, rgb(154 187 235 / 18%), rgb(154 187 235 / 18%)),
    url("../img/fondo_atras.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply, normal;
}

.gallery .eyebrow {
  color: #071f3a;
  font-size: clamp(1.9rem, 3.2vw, 2.85rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.08;
  text-transform: uppercase;
}

.gallery .eyebrow::after {
  content: "";
  display: block;
  width: 220px;
  height: 1px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, transparent, #0b5fbd, #d79c2d, transparent);
  box-shadow: none;
}

.gallery::before {
  display: none;
}

.gallery-carousel {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.22);
}

.gallery-track {
  position: absolute;
  inset: 0;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
  z-index: 0;
}

.gallery-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.04) brightness(0.95);
  transition: transform 0.8s ease, filter 0.8s ease;
}

.gallery-slide:hover img {
  transform: scale(1.02);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(8, 24, 72, 0.85);
  border: 1px solid rgba(0, 102, 255, 0.22);
  color: var(--white);
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  z-index: 2;
}

.gallery-arrow:hover {
  transform: translateY(-50%) scale(1.08);
  background: rgba(0, 71, 173, 0.95);
}

.gallery-prev {
  left: 18px;
}

.gallery-next {
  right: 18px;
}

.gallery-arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.gallery-dot.is-active {
  background: var(--blue-cyan);
  width: 14px;
  height: 14px;
  transform: scale(1.05);
  border-color: transparent;
}

@media (max-width: 860px) {
  .gallery-carousel {
    min-height: 420px;
  }

  .gallery-arrow {
    width: 44px;
    height: 44px;
  }

  .gallery-dots {
    bottom: 14px;
  }
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial {
  padding: 30px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.testimonial p {
  font-size: 1.07rem;
}

.testimonial strong {
  color: var(--blue-cyan);
}

.contact {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.94), rgba(17, 17, 17, 0.96));
  background-image:
    linear-gradient(135deg, rgba(17, 17, 17, 0.94), rgba(17, 17, 17, 0.96)),
    url("../img/fondo_web.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: start;
}

.contact-info {
  padding: 10px 0;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 32px 0 18px;
  padding: 0;
  list-style: none;
  color: rgba(255, 244, 205, 0.9);
  line-height: 1.55;
}

.contact-list li {
  padding: 15px 16px;
  border: 1px solid rgba(0, 102, 255, 0.18);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.contact-list strong {
  color: var(--blue-cyan);
}

.map-link {
  color: var(--blue-cyan);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 34px;
  border: 1px solid rgba(0, 102, 255, 0.22);
  border-radius: 24px;
  background: rgba(26, 26, 26, 0.84);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue-2), var(--blue-cyan));
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 102, 255, 0.18);
  border-radius: 14px;
  padding: 15px 16px;
  color: var(--white);
  font: inherit;
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-cyan);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 5px rgba(0, 102, 255, 0.14);
}

.footer {
  padding: 30px 0;
  color: #DDEBFF;
  background: linear-gradient(135deg, var(--dark), #111111);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer p {
  margin: 0;
}

.footer a {
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 9999;
  width: 65px;
  height: 65px;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s;
  animation: whatsappRing 3.8s ease-in-out infinite;
}

.whatsapp-float:hover img {
  transform: scale(1.1);
  animation-play-state: paused;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  opacity: 0;
  transform: scale(0.86);
  animation: whatsappPulse 3.8s ease-out infinite;
  pointer-events: none;
}

@keyframes whatsappRing {
  0%,
  62%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  68% {
    transform: rotate(-10deg) scale(1.04);
  }

  74% {
    transform: rotate(10deg) scale(1.04);
  }

  80% {
    transform: rotate(-8deg) scale(1.04);
  }

  86% {
    transform: rotate(8deg) scale(1.04);
  }

  92% {
    transform: rotate(0deg) scale(1);
  }
}

@keyframes whatsappPulse {
  0%,
  58%,
  100% {
    opacity: 0;
    transform: scale(0.86);
  }

  68% {
    opacity: 0.72;
  }

  92% {
    opacity: 0;
    transform: scale(1.22);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .news-ticker-track {
    animation: none;
  }
}

@media (max-width: 1120px) {
  .hero {
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: auto;
    max-height: none;
    width: 100%;
    margin-top: 78px;
    padding: 0;
    border-radius: 0;
  }

  .hero-content {
    width: min(920px, calc(100% - 40px));
    margin: 0 auto;
  }

  .hero-slider {
    min-height: 100%;
  }

  .slider-controls {
    left: 50%;
    right: auto;
    bottom: 32px;
    transform: translateX(-50%);
  }

  .card-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .why-layout,
  .eco-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    inset: 0 0 auto 0;
  }

  .navbar {
    height: 78px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 86px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(0, 102, 255, 0.18);
    border-radius: 22px;
    background: rgba(26, 26, 26, 0.94);
    box-shadow: var(--shadow-deep);
    backdrop-filter: blur(18px);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 14px 14px;
  }

  .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .nav-call {
    width: 100%;
    height: 48px;
    border-radius: 14px;
  }

  .hero {
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: auto;
    max-height: none;
    padding-top: 0;
    border-radius: 0;
  }

  .hero-metrics,
  .gallery-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .gallery-wide {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  .section {
    padding: 78px 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .hero h1 {
    font-size: clamp(1.5rem, 8vw, 2.25rem);
  }

  .hero {
    padding-inline: 0;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-metrics,
  .card-grid,
  .timeline,
  .sector-grid,
  .benefit-list,
  .eco-items {
    grid-template-columns: 1fr;
  }

  .sector-grid {
    padding: 12px;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Light premium refinement */
:root {
  --dark: #ffffff;
  --dark-2: #f4f9ff;
  --blue: #0b5fbd;
  --blue-2: #1594df;
  --blue-cyan: #49bce9;
  --blue-neon: #6ed7f5;
  --ink: #10243a;
  --muted: #617285;
  --line: #d8e6f1;
  --soft: #f6faff;
  --white: #ffffff;
  --glass: #ffffff;
  --shadow-soft: 0 14px 34px rgba(18, 45, 75, 0.08);
  --shadow-deep: 0 22px 58px rgba(18, 45, 75, 0.12);
}

body {
  color: var(--ink);
  background: #ffffff;
}

.site-header,
.site-header:hover {
  background: #ffffff;
  border-bottom-color: #dce8f2;
  box-shadow: 0 10px 28px rgba(18, 45, 75, 0.08);
  backdrop-filter: none;
}

.brand strong,
h1,
h2,
h3,
.contact-form label,
.contact-list strong,
.testimonial strong,
.sector-grid span,
.benefit-list span,
.eco-items span {
  color: #10243a;
}

.brand small,
.eyebrow,
.map-link {
  color: #0b5fbd;
}

.nav-menu {
  color: #41506a;
}

.nav-toggle {
  border-color: #d8e6f1;
  background: #f7fbff;
}

.nav-toggle span {
  background: #061d3f;
}

.nav-menu a:not(.nav-cta):hover {
  color: #0b5fbd;
  background: #eef6ff;
}

.section-heading p,
.split-copy p,
.why-copy p,
.contact-info p,
.service-card p,
.step p,
.testimonial p,
.contact-list {
  color: #617285;
}

.services,
.contact {
  background: linear-gradient(180deg, #ffffff, #f8fbfe);
}

.gallery {
  background-color: rgb(154 187 235 / 98%);
  background-image:
    linear-gradient(90deg, rgb(154 187 235 / 18%), rgb(154 187 235 / 18%)),
    url("../img/fondo_atras.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply, normal;
}

.sectors,
.process,
.testimonials {
  background: linear-gradient(180deg, #f8fbfe, #ffffff);
}

.service-card,
.testimonial,
.step,
.sector-grid,
.contact-form,
.contact-list li,
.sector-grid span,
.benefit-list span,
.eco-items span {
  background: #ffffff;
  border-color: #d8e6f1;
  box-shadow: var(--shadow-soft);
}

.service-card::before,
.testimonial::before,
.step::before {
  background: linear-gradient(135deg, rgba(11, 95, 189, 0.07), transparent 48%, rgba(56, 169, 117, 0.08));
}

.line-icon {
  color: #0b5fbd;
  background: linear-gradient(135deg, #ffffff, #eaf6ff);
  border-color: #d8e6f1;
}

.step span {
  background: linear-gradient(135deg, #0b5fbd, #1594df);
}

.why {
  background: #ffffff;
}

.why-photo::before {
  background: linear-gradient(135deg, #eef7ff, #f2fbf6);
  border-color: #d8e6f1;
}

.eco-band {
  background: linear-gradient(135deg, #effaf5, #ffffff);
  border-block-color: #d7eddf;
}

.gallery-carousel {
  background: #ffffff;
  border-color: #d8e6f1;
  box-shadow: var(--shadow-soft);
}

.gallery-arrow {
  color: #0b5fbd;
  background: #ffffff;
  border-color: #d8e6f1;
  box-shadow: 0 12px 26px rgba(18, 45, 75, 0.10);
}

.gallery-dot {
  border-color: #b9cde0;
}

.gallery-dot.is-active {
  background: #0b5fbd;
}

.contact-form {
  backdrop-filter: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  color: #10243a;
  background: #fbfdff;
  border-color: #d8e6f1;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #ffffff;
  border-color: rgb(154 187 235 / 98%);
  box-shadow: 0 0 0 5px rgb(154 187 235 / 26%);
}

.contact {
  overflow: hidden;
  scroll-margin-top: 90px;
  padding: 72px 0 68px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 48%, #f2f7ff 100%);
}

.contact::before {
  display: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(520px, 1.02fr);
  gap: 46px;
  align-items: start;
}

.contact-info {
  padding: 0;
}

.contact-info .eyebrow {
  margin-bottom: 16px;
  color: #061d3f;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.contact-info h2 {
  max-width: 620px;
  margin-bottom: 14px;
  color: #000000;
  font-size: clamp(2.8rem, 5vw, 4.15rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.contact-info h2::after {
  content: "";
  display: block;
  width: 220px;
  height: 1px;
  margin-top: 18px;
  border-radius: 0;
  background: linear-gradient(90deg, #0b5fbd, #d79c2d, transparent);
}

.contact-info > p {
  max-width: 590px;
  color: #617285;
  font-size: 1rem;
  line-height: 1.58;
}

.contact-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.76fr);
  gap: 14px;
  max-width: 560px;
  margin: 24px 0 26px;
}

.contact-actions .btn {
  min-height: 52px;
  border-radius: 12px;
  font-size: 0.92rem;
}

.contact-actions .btn svg,
.contact-form .btn svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.contact-actions .btn-primary,
.contact-form .btn-primary {
  color: #061d3f;
  background: rgb(154 187 235 / 98%);
  box-shadow: 0 18px 34px rgb(154 187 235 / 35%);
}

.contact-actions .btn-secondary {
  color: #061d3f;
  border: 1px solid rgb(154 187 235 / 80%);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
  backdrop-filter: none;
}

.contact-list {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin: 0 0 16px;
  padding: 0;
  color: #061d3f;
}

.contact-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 13px 16px;
  border: 1px solid #e4edf7;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(18, 45, 75, 0.08);
}

.contact-icon,
.form-icon {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #061d3f;
  background: rgb(154 187 235 / 98%);
}

.contact-icon {
  width: 38px;
  height: 38px;
}

.contact-icon svg {
  width: 19px;
  height: 19px;
}

.contact-card strong,
.map-link strong {
  display: block;
  margin-bottom: 3px;
  color: #061d3f;
  font-size: 0.9rem;
}

.contact-card a,
.contact-card span,
.map-link small {
  color: #253858;
  font-size: 0.92rem;
  line-height: 1.35;
}

.contact-card a {
  color: #061d3f;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-link {
  max-width: 620px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  padding: 13px 16px;
  border: 1px solid rgb(154 187 235 / 72%);
  border-radius: 12px;
  color: #061d3f;
  background: linear-gradient(135deg, rgb(154 187 235 / 28%), #ffffff);
  box-shadow: 0 12px 30px rgba(18, 45, 75, 0.07);
  text-decoration: none;
}

.contact-map {
  display: block;
}

.map-heading {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
}

.contact-map iframe {
  width: 100%;
  height: 180px;
  display: block;
  margin-top: 14px;
  border: 0;
  border-radius: 10px;
}

.map-thumb {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #061d3f;
  background:
    linear-gradient(135deg, rgb(154 187 235 / 55%), rgba(244, 183, 63, 0.12)),
    #f7fbff;
}

.map-thumb svg {
  width: 26px;
  height: 26px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 3.4vw, 36px);
  border: 1px solid #edf2f8;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 70px rgba(18, 45, 75, 0.12);
  backdrop-filter: none;
}

.contact-form::before {
  content: none;
}

.form-heading {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 4px;
}

.form-icon {
  width: 54px;
  height: 54px;
  color: #061d3f;
  background: rgb(154 187 235 / 55%);
}

.form-icon svg {
  width: 29px;
  height: 29px;
}

.form-heading h3 {
  margin: 0 0 5px;
  color: #061d3f;
  font-size: 1.38rem;
}

.form-heading p {
  margin: 0;
  color: #617285;
  font-size: 0.94rem;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: #061d3f;
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form label > span {
  color: #061d3f;
}

.contact-form label b {
  color: #e04444;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 52px;
  border: 1px solid #d8e2ee;
  border-radius: 10px;
  padding: 14px 16px;
  color: #253858;
  background: #ffffff;
  font-size: 0.94rem;
}

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

.form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 4px;
  color: #617285;
  font-size: 0.82rem;
}

.form-note svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: #617285;
}

.contact-form .btn {
  min-height: 56px;
  border-radius: 10px;
  font-size: 0.98rem;
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-info h2 {
    font-size: clamp(2.55rem, 10vw, 4rem);
  }
}

@media (max-width: 640px) {
  .contact {
    padding: 72px 0;
  }

  .contact-actions,
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .contact-card,
  .map-link {
    grid-template-columns: 46px 1fr;
    padding: 14px;
  }

  .map-thumb {
    width: 46px;
    height: 46px;
  }
}

.footer {
  background: #ffffff;
  color: #061d3f;
}

.footer a {
  color: #061d3f;
}

/* Policy / mission and vision section */
.policy {
  position: relative;
  overflow: hidden;
  padding: 88px 0 104px;
  background:
    linear-gradient(180deg, rgba(3, 13, 32, 0.72), rgba(3, 13, 32, 0.82)),
    url("../img/fondo_web.png") center / cover no-repeat;
  color: #ffffff;
}

.policy .container {
  position: relative;
  z-index: 1;
}

.policy .section-heading {
  margin-bottom: 50px;
}

.policy .eyebrow {
  color: #f4b73f;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-shadow: 0 8px 20px rgba(244, 183, 63, 0.22);
}

.policy h2 {
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.policy h2::after {
  content: "";
  display: block;
  width: 220px;
  height: 1px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, #d79c2d, transparent);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(310px, 520px));
  gap: 42px 72px;
  align-items: center;
  justify-content: center;
  max-width: 1112px;
  margin: 0 auto;
  grid-template-areas:
    "missionPhoto missionCopy"
    "visionCopy visionPhoto";
}

.policy-mission-photo {
  grid-area: missionPhoto;
}

.policy-mission-copy {
  grid-area: missionCopy;
}

.policy-vision-copy {
  grid-area: visionCopy;
}

.policy-vision-photo {
  grid-area: visionPhoto;
}

.policy-photo {
  justify-self: center;
}

.policy-photo img {
  width: 310px;
  height: 310px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(244, 183, 63, 0.72);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.32);
}

.policy-copy {
  width: 100%;
  min-height: 260px;
  box-sizing: border-box;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  background: rgba(4, 18, 42, 0.58);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}

.policy-copy span {
  display: inline-block;
  margin-bottom: 10px;
  color: #f4b73f;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.policy-copy h3 {
  color: #ffffff;
  font-size: 1.3rem;
}

.policy-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

@media (max-width: 860px) {
  .policy-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "missionPhoto"
      "missionCopy"
      "visionPhoto"
      "visionCopy";
    gap: 26px;
    text-align: center;
  }

  .policy-photo img {
    width: 250px;
    height: 250px;
  }

  .policy-copy {
    max-width: 520px;
    margin: 0 auto;
  }
}

.news-ticker {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 58px;
  overflow: hidden;
  background: linear-gradient(90deg, #061d3f, #0b355f 48%, #061d3f);
  border-top: 1px solid rgba(244, 183, 63, 0.42);
  border-bottom: 1px solid rgba(244, 183, 63, 0.42);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.news-ticker-label {
  flex: 0 0 auto;
  align-self: stretch;
  display: grid;
  place-items: center;
  padding: 0 clamp(18px, 3vw, 34px);
  color: #061d3f;
  background: #f4b73f;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.news-ticker-window {
  min-width: 0;
  overflow: hidden;
  flex: 1;
}

.news-ticker-track {
  display: flex;
  width: max-content;
  gap: clamp(28px, 5vw, 58px);
  padding-left: clamp(28px, 5vw, 58px);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.84rem, 1.2vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  animation: newsTicker 34s linear infinite;
}

.news-ticker-track span {
  position: relative;
}

.news-ticker-track span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -32px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f4b73f;
  transform: translateY(-50%);
}

@keyframes newsTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .news-ticker {
    min-height: 52px;
  }

  .news-ticker-label {
    padding: 0 14px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
}

/* About section replacing process */
.about {
  background-color: rgb(154 187 235 / 98%);
  background-image:
    linear-gradient(90deg, rgb(154 187 235 / 18%), rgb(154 187 235 / 18%)),
    url("../img/fondo_atras.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply, normal;
  padding: 82px 0 96px;
}

.about::before {
  display: none;
}

.about .section-heading {
  margin-bottom: 46px;
}

.about .eyebrow {
  color: #071f3a;
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.12;
  text-transform: uppercase;
  text-shadow: 0 10px 24px rgba(255, 255, 255, 0.18);
}

.about h2 {
  display: none;
}

.about .eyebrow::after {
  content: "";
  display: block;
  width: 220px;
  height: 1px;
  margin: 22px auto 0;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, #0b5fbd, #d79c2d, transparent);
  box-shadow: none;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.about-card {
  display: grid;
  grid-template-rows: auto auto auto;
  justify-items: center;
  color: #081b2f;
  text-align: center;
}

.about-image {
  position: relative;
  width: clamp(210px, 22vw, 286px);
  aspect-ratio: 1;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid rgba(190, 198, 207, 0.95);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.85),
    0 16px 34px rgba(16, 36, 58, 0.14);
}

.about-icon {
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border: 4px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  background: #123f67;
  box-shadow: 0 12px 24px rgba(6, 29, 63, 0.22);
  overflow: hidden;
}

.about-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-card h3 {
  align-self: end;
  position: relative;
  width: 100%;
  margin: 42px 0 0;
  color: #061d3f;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: uppercase;
}

.about-card h3::after {
  content: "";
  display: block;
  width: 96px;
  height: 1px;
  margin: 9px auto 0;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, #0b5fbd, #d79c2d, transparent);
}

.about-card p {
  width: 100%;
  color: #10243a;
  margin: 20px 0 0;
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  line-height: 1.56;
  text-align: left;
}

.about-list {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 18px;
  width: 100%;
  color: #10243a;
  font-size: clamp(0.76rem, 0.95vw, 0.88rem);
  line-height: 1.45;
  text-align: left;
}

.about-list li::marker {
  color: #0b5fbd;
}

@media (max-width: 920px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-card {
    text-align: center;
  }
}

/* Services section dark premium style */
.services {
  position: relative;
  overflow: hidden;
  padding: 92px 0 96px;
  background:
    linear-gradient(180deg, rgba(2, 12, 30, 0.78), rgba(2, 12, 30, 0.88)),
    url("../img/fondo_web.png") center / cover no-repeat;
}

.services::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 20%, rgba(25, 138, 220, 0.20), transparent 34%);
  pointer-events: none;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services .section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.services .eyebrow {
  color: #f4b73f;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}

.services .eyebrow span {
  color: #f4b73f;
  font-size: 1.22rem;
  font-weight: 900;
  text-shadow: 0 8px 20px rgba(244, 183, 63, 0.22);
}

.services h2 {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 3.7vw, 3.35rem);
  font-weight: 700;
  line-height: 1.08;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
}

.services h2::after {
  content: "";
  display: block;
  width: 220px;
  height: 1px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, transparent, #d79c2d, transparent);
}

.services h2::first-letter {
  color: #ffffff;
}

.services .section-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
}

.services .section-heading p strong,
.services .section-heading p span {
  color: #f4b73f;
}

.services-grid {
  gap: 18px;
}

.services-grid .service-card:nth-child(5) {
  grid-column: 2;
}

.services-grid .service-card:nth-child(6) {
  grid-column: 3;
}

.services .service-card {
  min-height: 270px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 10px;
  background: rgba(3, 19, 43, 0.64);
  box-shadow:
    inset 0 -2px 0 rgba(0, 180, 255, 0.65),
    0 16px 34px rgba(0, 0, 0, 0.25);
}

.services .service-card::before {
  background: radial-gradient(circle at 50% 100%, rgba(0, 180, 255, 0.28), transparent 36%);
  opacity: 1;
}

.services .service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 183, 63, 0.85);
  box-shadow:
    inset 0 -2px 0 rgba(244, 183, 63, 0.9),
    0 22px 48px rgba(0, 0, 0, 0.34);
}

.services .line-icon {
  width: 94px;
  height: 94px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #f4b73f;
  border: 1px solid rgba(244, 183, 63, 0.55);
  background: rgba(2, 12, 30, 0.42);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
  font-size: 1.05rem;
}

.services .service-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 20px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

.services .service-card h3 {
  color: #ffffff;
  font-size: 1.08rem;
}

.services .service-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
}

@media (max-width: 1120px) {
  .services-grid .service-card:nth-child(5),
  .services-grid .service-card:nth-child(6) {
    grid-column: auto;
  }
}

/* Slider final: wide page hero */
.hero {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  aspect-ratio: 2.38 / 1;
  margin: 90px auto 0;
  background: #ffffff;
  border-radius: 0;
  box-shadow: none;
}

.hero-slider {
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #ffffff;
  border-radius: inherit;
}

.hero-slide {
  object-fit: cover;
  object-position: center top;
  transform: none;
}

.hero-content {
  display: none;
}

.hero-content.reveal {
  opacity: 1;
  transform: none;
}

.hero-badge,
.hero-metrics,
.hero-proof,
.hero-actions {
  display: none;
}

.hero .eyebrow {
  display: block;
  width: auto;
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  color: #b9dcff;
  background: transparent;
  box-shadow: none;
  font-size: 0.78rem;
  letter-spacing: 0.10em;
}

.hero h1 {
  width: auto;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.12;
  text-transform: none;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

.hero-text {
  display: none;
}

.hero-slide.is-active {
  transform: none;
}

@media (max-width: 1120px) {
  .hero {
    width: 100%;
    height: auto;
    aspect-ratio: 2.38 / 1;
    margin: 78px auto 0;
    border-radius: 0;
  }
}

@media (max-width: 640px) {
  .hero {
    height: 390px;
  }

  .hero-content {
    display: none;
  }
}

/* Responsive hardening */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  min-width: 320px;
}

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

.container {
  width: min(1160px, calc(100% - clamp(28px, 5vw, 64px)));
}

.navbar {
  height: clamp(72px, 7vw, 90px);
  padding-inline: clamp(14px, 4vw, 30px);
}

.brand {
  min-width: 0;
  flex: 1 1 auto;
}

.brand > span:last-child {
  min-width: 0;
}

.brand strong,
.brand small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-menu {
  flex: 0 1 auto;
  gap: clamp(12px, 2vw, 24px);
}

.hero {
  margin-top: clamp(72px, 7vw, 90px);
}

.card-grid,
.services-grid,
.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

.services-grid .service-card:nth-child(5),
.services-grid .service-card:nth-child(6) {
  grid-column: auto;
}

.about-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(34px, 5vw, 72px);
}

.policy-grid {
  grid-template-columns: repeat(2, minmax(0, 520px));
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
}

.contact-form,
.contact-card,
.map-link,
.gallery-carousel,
.policy-copy,
.service-card {
  min-width: 0;
}

.contact-card a,
.contact-card span,
.map-link small,
.form-note,
.btn {
  overflow-wrap: anywhere;
}

.contact-map iframe {
  max-width: 100%;
}

.gallery-carousel {
  min-height: clamp(300px, 46vw, 520px);
  border-radius: clamp(14px, 3vw, 28px);
}

.gallery-carousel {
  aspect-ratio: 2.38 / 1;
  min-height: 0;
}

.gallery-slide img {
  object-fit: contain;
  background: #eef5fc;
}

@media (min-width: 1121px) {
  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .services-grid .service-card:nth-child(5) {
    grid-column: 2;
  }

  .services-grid .service-card:nth-child(6) {
    grid-column: 3;
  }
}

.whatsapp-float {
  right: max(14px, env(safe-area-inset-right));
  bottom: max(14px, env(safe-area-inset-bottom));
  width: clamp(54px, 8vw, 65px);
  height: clamp(54px, 8vw, 65px);
}

@media (max-width: 1120px) {
  .policy-grid {
    gap: 34px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-menu {
    top: calc(100% + 8px);
    left: clamp(12px, 4vw, 20px);
    right: clamp(12px, 4vw, 20px);
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    background: #ffffff;
  }

  .hero {
    aspect-ratio: 2.38 / 1;
  }

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

  .section,
  .about,
  .services,
  .policy,
  .contact {
    padding-block: clamp(58px, 10vw, 82px);
  }
}

@media (max-width: 640px) {
  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    flex: 0 0 44px;
  }

  .hero {
    height: auto;
    min-height: 0;
    aspect-ratio: 2.38 / 1;
  }

  .hero-slide {
    object-position: center top;
  }

  .slider-controls {
    bottom: 14px;
    padding: 8px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  h2,
  .about .eyebrow,
  .gallery .eyebrow,
  .policy h2,
  .services h2,
  .contact-info h2 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .about-image {
    width: min(235px, 72vw);
  }

  .policy-photo img {
    width: min(230px, 72vw);
    height: min(230px, 72vw);
  }

  .policy-copy {
    min-height: 0;
    padding: 24px 18px;
  }

  .services .service-card {
    min-height: 0;
    padding: 24px 18px;
  }

  .services .line-icon {
    width: 76px;
    height: 76px;
  }

  .gallery-arrow {
    width: 40px;
    height: 40px;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }

  .contact-actions,
  .form-row,
  .form-heading,
  .contact-card,
  .map-link,
  .map-heading {
    grid-template-columns: 1fr;
  }

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

  .contact-icon,
  .map-thumb,
  .form-icon {
    width: 44px;
    height: 44px;
  }

  .contact-map iframe {
    height: 220px;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 22px, 1160px);
  }

  .navbar {
    padding-inline: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .hero {
    min-height: 0;
  }

  .contact-form {
    padding: 22px 14px;
  }
}

/* Premium news ticker */
.news-ticker {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 48px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 50%, rgba(244, 183, 63, 0.22), transparent 28%),
    linear-gradient(90deg, #020a17 0%, #061d3f 42%, #092f55 100%);
  border-top: 1px solid rgba(244, 183, 63, 0.62);
  border-bottom: 1px solid rgba(244, 183, 63, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 54px rgba(0, 0, 0, 0.24);
}

.news-ticker::before,
.news-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(54px, 10vw, 150px);
  pointer-events: none;
}

.news-ticker::before {
  left: 0;
  background: linear-gradient(90deg, #020a17, transparent);
}

.news-ticker::after {
  right: 0;
  background: linear-gradient(270deg, #092f55, transparent);
}

.news-ticker-label {
  position: relative;
  z-index: 4;
  flex: 0 0 auto;
  align-self: stretch;
  display: grid;
  place-items: center;
  padding: 0 clamp(14px, 2.8vw, 28px);
  background: linear-gradient(135deg, #f4b73f, #ffd979);
  color: #061d3f;
  box-shadow: 18px 0 36px rgba(0, 0, 0, 0.2);
}

.news-ticker-label span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: clamp(0.66rem, 0.95vw, 0.78rem);
  font-weight: 1000;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.news-ticker-label span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #061d3f;
  box-shadow: 0 0 0 5px rgba(6, 29, 63, 0.12);
}

.news-ticker-window {
  min-width: 0;
  overflow: hidden;
  flex: 1;
}

.news-ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(18px, 3vw, 28px);
  padding-left: clamp(24px, 4vw, 46px);
  white-space: nowrap;
  animation: newsTicker 38s linear infinite;
}

.news-ticker-track span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 16px;
  border: 1px solid rgba(244, 183, 63, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
  font-size: clamp(0.76rem, 0.98vw, 0.9rem);
  font-weight: 850;
}

.news-ticker-track span::after {
  content: none;
}

.news-ticker:hover .news-ticker-track {
  animation-play-state: paused;
}

@media (max-width: 640px) {
  .news-ticker {
    min-height: 46px;
  }

  .news-ticker-label {
    padding: 0 14px;
  }

  .news-ticker-label span {
    letter-spacing: 0.12em;
  }

  .news-ticker-track span {
    min-height: 28px;
    padding: 5px 12px;
  }

  .news-ticker-track {
    animation-duration: 220s;
  }
}

/* News ticker inside the fixed header */
.site-header .news-ticker {
  min-height: 42px;
  border-top: 1px solid rgba(244, 183, 63, 0.38);
  border-bottom: 1px solid rgba(244, 183, 63, 0.28);
  box-shadow: none;
}

.site-header .news-ticker-label {
  padding: 0 clamp(16px, 3vw, 28px);
}

.site-header .news-ticker-track {
  padding-block: 6px;
  padding-left: clamp(18px, 4vw, 42px);
}

.site-header .news-ticker-track span {
  min-height: 24px;
  padding: 4px 14px;
  font-size: clamp(0.72rem, 1vw, 0.88rem);
}

main {
  padding-top: calc(clamp(72px, 7vw, 90px) + 42px);
}

main .hero {
  margin-top: 0;
}

@media (max-width: 860px) {
  .site-header .news-ticker {
    min-height: 40px;
  }

  main {
    padding-top: 118px;
  }

  .site-header .nav-menu {
    top: calc(100% + 48px);
  }

  main .hero {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .site-header .news-ticker {
    min-height: 38px;
  }

  .site-header .news-ticker-label {
    padding: 0 12px;
  }

  .site-header .news-ticker-track {
    padding-block: 5px;
  }

  .site-header .news-ticker-track span {
    min-height: 22px;
    padding: 3px 11px;
  }

  main {
    padding-top: 114px;
  }

  .site-header .nav-menu {
    top: calc(100% + 44px);
  }
}

