:root {
  --color-verde: #659C50;
  --color-azul: #295781;
  --color-negro: #000000;
  --color-blanco: #FFFFFF;
  --color-azul-oscuro: #1f4363;
  --color-gris-claro: #F5F7F9;
  --color-texto: #33363B;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-pill: 50px;
  --shadow-soft: 0 20px 45px rgba(20, 40, 70, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--color-texto);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100%;
  overscroll-behavior-x: none;
}
a {
  text-decoration: none;
}
.preloader {
  position: fixed;
  inset: 0;
  background-color: var(--color-blanco);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-logo {
  width: 120px;
  height: auto;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}
.topbar {
  background-color: var(--color-azul);
  width: 100%;
  padding: 15px 0;
  border-bottom: none;
}
.topbar .container-fluid {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.topbar-email {
  color: var(--color-blanco);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  opacity: 0.92;
  transition: opacity 0.2s ease;
  margin: 0;
}
.topbar-email:hover {
  opacity: 1;
  color: var(--color-blanco);
}
.site-header {
  position: relative;
  z-index: 20;
  margin-bottom: -116px;
}
.site-header .container {
  max-width: 1440px;
}
.navbar-floating {
  background-color: var(--color-blanco);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
  padding: 14px 17px 14px 11px;
}
.navbar-inner {
  gap: clamp(6px, 1vw, 10px);
}
.navbar-brand {
  padding: 0;
  margin: 0;
  flex-shrink: 0;
}
.navbar-brand img {
  height: clamp(52px, calc(3vw + 30px), 76px);
  width: auto;
  display: block;
  padding: 6px 14px;
}
.main-menu {
  gap: clamp(2px, 0.6vw, 10px);
}
.main-menu .nav-link {
  color: var(--color-azul);
  font-family: var(--font-heading);
  font-size: clamp(0.82rem, calc(0.5vw + 0.68rem), 1.15rem);
  font-weight: 400;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 14px clamp(8px, 1.1vw, 20px);
  border-radius: 30px;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.main-menu .nav-link:hover {
  color: var(--color-azul-oscuro);
}
.main-menu .nav-link.active {
  color: var(--color-azul-oscuro);
  font-weight: 700;
}
.btn-quote {
  background-color: var(--color-azul);
  color: var(--color-blanco);
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1vw, 17px);
  padding: 8px 8px 8px clamp(18px, 1.5vw, 31px);
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, calc(0.4vw + 0.75rem), 1.12rem);
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}
.btn-quote:hover {
  background-color: var(--color-azul-oscuro);
  color: var(--color-blanco);
}
.btn-quote-circle {
  background-color: var(--color-verde);
  color: var(--color-blanco);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.hero {
  position: relative;
  background-color: var(--color-blanco);
  padding-top: 90px;
  padding-bottom: 45px;
  min-height: 500px;
  overflow: hidden;
}
.hero-image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 40%;
  z-index: 1;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 20% 100%, 0% 50%);
}
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(41, 87, 129, 0.20);
  pointer-events: none;
  z-index: 2;
}
.hero-slider,
.hero-slide {
  height: 100%;
}
.hero-slider {
  position: relative;
}
.hero-slide {
  position: relative;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}
.hero-slide:nth-child(1) img {
  object-position: 50% 45%;
}
.hero-slide:nth-child(2) img {
  object-position: 50% 40%;
}
.hero-image-fixed {
  height: 100%;
}
.hero-image-fixed img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
}
.hero .slick-list,
.hero .slick-track {
  height: 100%;
}
.hero .slick-dots {
  position: absolute;
  bottom: 26px;
  left: 80%;
  transform: translateX(-50%);
  width: auto;
  display: flex;
  gap: 6px;
  z-index: 5;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}
.hero .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.55);
  border: none;
  font-size: 0;
  transition: all 0.25s ease;
}
.hero .slick-dots li button:before {
  content: none;
}
.hero .slick-dots li.slick-active button {
  background-color: var(--color-verde);
  width: 26px;
  border-radius: 6px;
}
.hero .container {
  position: relative;
  z-index: 3;
  max-width: 100%;
}
.hero-content {
  max-width: 800px;
  padding-top: 130px;
  padding-left: 130px;
}
.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.95rem;
  line-height: 1.3;
  color: var(--color-azul);
  margin-bottom: 22px;
}
.hero-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-azul);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-text strong {
  font-weight: 700;
}
.faq-hero {
  position: relative;
  background-color: var(--color-blanco);
  padding-top: 60px;
  padding-bottom: 50px;
  min-height: 420px;
  overflow: hidden;
}
.faq-hero-image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  z-index: 1;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 20% 100%, 0% 50%);
}
.faq-hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(41, 87, 129, 0.35);
  pointer-events: none;
  z-index: 2;
}
.faq-hero-image-fixed {
  height: 100%;
}
.faq-hero-image-fixed img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: 50% 25%;
  display: block;
}
.faq-hero .container {
  position: relative;
  z-index: 3;
  max-width: 100%;
}
.faq-hero-content {
  max-width: 800px;
  margin-top: 90px;
  padding-left: 130px;
}
.faq-hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1.3;
  color: var(--color-azul);
  margin-bottom: 22px;
}
.faq-hero-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-azul);
  margin-bottom: 0;
  max-width: 520px;
}
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary-cta {
  background-color: var(--color-azul);
  color: var(--color-blanco);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 6px 5px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.2s ease;
}
.btn-primary-cta:hover {
  background-color: var(--color-azul-oscuro);
  color: var(--color-blanco);
}
.btn-primary-circle {
  background-color: var(--color-verde);
  color: var(--color-blanco);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-primary-circle i {
  font-size: 0.65rem;
  color: var(--color-blanco);
}
.btn-secondary-cta {
  background-color: var(--color-blanco);
  color: var(--color-azul);
  border: 1.5px solid var(--color-azul);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.btn-secondary-cta:hover {
  background-color: var(--color-azul);
  color: var(--color-blanco);
}
.btn-secondary-cta:hover i {
  color: var(--color-blanco);
}
.btn-secondary-cta i {
  font-size: 0.7rem;
  color: var(--color-azul);
}
.why-us {
  background-color: var(--color-blanco);
  padding: 100px 0;
}
.collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(11, 1fr);
  gap: 14px;
  aspect-ratio: 0.86;
  width: 100%;
}
.collage-item {
  overflow: hidden;
}
.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.collage-item-1 {
  grid-column: 1 / 7;
  grid-row: 1 / 6;
}
.collage-item-2 {
  grid-column: 7 / 12;
  grid-row: 1 / 4;
}
.collage-item-3 {
  grid-column: 4 / 12;
  grid-row: 6 / 9;
}
.collage-item-4 {
  grid-column: 1 / 12;
  grid-row: 9 / 12;
}
.why-content {
  padding-top: 4px;
}
.why-eyebrow {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 26px;
}
.why-eyebrow-line {
  width: 2px;
  align-self: stretch;
  background-color: var(--color-azul);
  flex-shrink: 0;
  min-height: 40px;
}
.why-eyebrow p {
  font-family: var(--font-heading);
  color: var(--color-azul);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.45;
  margin: 0;
}
.why-title {
  font-family: var(--font-heading);
  color: var(--color-negro);
  font-weight: 800;
  font-size: 2.1rem;
  line-height: 1.2;
  margin-bottom: 24px;
}
.why-text {
  font-family: var(--font-body);
  color: #33363B;
  font-weight: 400;
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 640px;
  margin-bottom: 40px;
}
.why-benefits {
  display: flex;
  gap: 40px;
  margin-bottom: 44px;
}
.why-benefits-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.why-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.why-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--color-verde);
  flex-shrink: 0;
  margin-top: 6px;
}
.why-benefit p {
  font-family: var(--font-body);
  color: #33363B;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}
.why-benefit p strong {
  color: var(--color-negro);
  font-weight: 700;
}
.why-cta {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background-color: var(--color-blanco);
  border: 1.5px solid var(--color-azul);
  border-radius: 20px;
  padding: 8px 8px 8px 26px;
}
.why-cta-text {
  font-family: var(--font-body);
  color: var(--color-azul);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  white-space: nowrap;
}
.btn-whatsapp-cta {
  background-color: var(--color-azul);
  color: var(--color-blanco);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 8px 8px 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
.btn-whatsapp-cta:hover {
  background-color: var(--color-azul-oscuro);
  color: var(--color-blanco);
}
.btn-whatsapp-circle {
  background-color: var(--color-verde);
  color: var(--color-blanco);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  flex-shrink: 0;
}
.zonas {
  background-color: var(--color-blanco);
  padding: 20px 0 100px;
}
.zonas-content {
  max-width: 560px;
}
.zonas-title {
  font-family: var(--font-heading);
  color: var(--color-negro);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.22;
  margin-bottom: 24px;
}
.zonas-text {
  font-family: var(--font-body);
  color: #33363B;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 22px;
}
.zonas-text strong {
  font-weight: 700;
  color: var(--color-negro);
}
.zonas-content .btn-primary-cta {
  margin-top: 12px;
}
.zonas-map {
  display: flex;
  justify-content: center;
}
.zonas-map img {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
}
.sustentabilidad {
  background-color: var(--color-blanco);
  padding: 100px 0;
}
.sustentabilidad-content {
  max-width: 100%;
}
.sustentabilidad-title {
  font-family: var(--font-heading);
  color: var(--color-negro);
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1.32;
  margin-bottom: 40px;
}
.sustentabilidad-cards {
  display: flex;
  gap: 20px;
}
.sustentabilidad-card {
  background-color: var(--color-blanco);
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(20, 40, 70, 0.08);
  padding: 18px 22px;
  flex: 1;
}
.sustentabilidad-card h3 {
  font-family: var(--font-heading);
  color: var(--color-azul);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 14px;
}
.sustentabilidad-card p {
  font-family: var(--font-body);
  color: #33363B;
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}
.sustentabilidad-slider {
  height: 500px;
}
.sustentabilidad-slider .slick-list,
.sustentabilidad-slider .slick-track,
.sustentabilidad-slider .slick-slide {
  height: 100%;
}
.sustentabilidad-slide {
  height: 100%;
}
.sustentabilidad-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sustentabilidad-slider .slick-dots {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.sustentabilidad-slider .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}
.sustentabilidad-slider .slick-dots li button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  background-color: transparent;
  border: 1.5px solid var(--color-azul);
  font-size: 0;
  transition: all 0.25s ease;
}
.sustentabilidad-slider .slick-dots li button:before {
  content: none;
}
.sustentabilidad-slider .slick-dots li.slick-active button {
  background-color: var(--color-azul);
}
.soluciones {
  background-color: var(--color-blanco);
  padding: 100px 0;
}
.soluciones-carousel-wrap {
  --sol-photo-h: clamp(240px, 30vw, 360px);
  position: relative;
  width: 100%;
  padding-bottom: 150px;
}
.soluciones-bg {
  position: relative;
  width: 100%;
  height: var(--sol-photo-h);
  border-radius: 18px;
  overflow: hidden;
  z-index: 1;
}
.soluciones-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(41, 87, 129, 0.45);
}
.soluciones-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.soluciones-slider {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.sol-slide {
  position: absolute;
  width: 27%;
  text-align: center;
  opacity: 1;
  transition: left 0.45s ease, right 0.45s ease, top 0.45s ease,
              width 0.45s ease, opacity 0.35s ease, transform 0.45s ease;
  cursor: pointer;
}
.sol-slide.is-prev {
  left: 0;
  top: 35%;
  transform: translateY(-50%);
}
.sol-slide.is-next {
  left: 73%;
  top: 35%;
  transform: translateY(-50%);
}
.sol-slide.is-active {
  left: 50%;
  top: calc(var(--sol-photo-h) - 70px);
  width: clamp(260px, 48%, 420px);
  transform: translateX(-50%);
  text-align: left;
  cursor: default;
}
.sol-slide.is-hidden {
  left: 50%;
  top: 46%;
  width: 27%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}
.sol-card {
  padding: 0;
}
.sol-slide.is-active .sol-card {
  background-color: var(--color-blanco);
  border-radius: 18px;
  box-shadow: 0 24px 45px rgba(20, 40, 70, 0.2);
  padding: 24px 24px 26px;
}
.sol-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(20, 40, 70, 0.55);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.sol-slide.is-active .sol-icon-circle {
  background-color: var(--color-verde);
  width: 54px;
  height: 54px;
  margin: 0 0 14px;
}
.sol-icon-circle img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.35));
}
.sol-slide.is-active .sol-icon-circle img {
  width: 35px;
  height: 35px;
}
.sol-title {
  font-family: var(--font-heading);
  color: var(--color-blanco);
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.3;
  margin: 0;
}
.sol-slide.is-active .sol-title {
  color: var(--color-verde);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.sol-text {
  display: none;
}
.sol-slide.is-active .sol-text {
  display: block;
  color: #33363B;
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}
.soluciones-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.sol-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--color-verde);
  background-color: transparent;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}
.sol-dot.is-active {
  background-color: var(--color-verde);
  width: 22px;
  border-radius: 6px;
}
.soluciones-content {
  padding-top: 4px;
  max-width: 560px;
}
.soluciones-title {
  font-family: var(--font-heading);
  color: var(--color-negro);
  font-weight: 800;
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  line-height: 1.3;
  margin: 0;
  max-width: 100%;
}
.stats {
  background-color: var(--color-blanco);
  padding: 100px 0;
}
.stats-title {
  font-family: var(--font-heading);
  color: var(--color-negro);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.3;
  text-align: left;
  margin-bottom: 56px;
  max-width: 900px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat-card {
  background-color: var(--color-blanco);
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(20, 40, 70, 0.09);
  padding: 32px 28px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.stat-card:hover {
  box-shadow: 0 20px 42px rgba(20, 40, 70, 0.13);
  transform: translateY(-3px);
}
.stat-value {
  font-family: var(--font-heading);
  color: var(--color-azul);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 14px;
}
.stat-prefix {
  color: var(--color-azul);
}
.stat-value sup {
  font-size: 0.55em;
  top: -0.7em;
}
.stat-text {
  font-family: var(--font-body);
  color: #33363B;
  font-weight: 400;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}
.flota {
  background-color: var(--color-blanco);
  padding: 100px 0 0;
  overflow: hidden;
}
.flota-title {
  font-family: var(--font-heading);
  color: var(--color-negro);
  font-weight: 800;
  font-size: 1.9rem;
  line-height: 1.28;
  margin-bottom: 20px;
}
.flota-text {
  font-family: var(--font-body);
  color: #33363B;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 750px;
  margin-bottom: 30px;
}
.flota-text strong {
  font-weight: 700;
  color: var(--color-negro);
}
.flota-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 14px;
  padding-top: 6px;
}
.flota-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--color-blanco);
  border: 1.5px solid var(--color-azul);
  border-radius: var(--radius-pill);
  color: var(--color-azul);
  font-family: var(--font-body);
  font-size: 0.69rem;
  font-weight: 500;
  padding: 9px 16px;
}
.flota-visual {
  margin-top: 130px;
  height: 380px;
  overflow: hidden;
}
.flota-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: opacity 0.3s ease;
}
.photo-carousel {
  background-color: var(--color-blanco);
  padding: 60px 0 30px;
  width: 100%;
  overflow: hidden;
}
.photo-carousel-wrap {
  position: relative;
  width: 100%;
  height: clamp(200px, calc(42vw / 1.75), 480px);
  cursor: grab;
  touch-action: pan-y;
}
.photo-carousel-wrap.is-dragging {
  cursor: grabbing;
}
.photo-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.photo-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42vw;
  aspect-ratio: 1.75 / 1;
  height: auto;
  max-height: 480px;
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.9s ease;
  will-change: transform, opacity;
}
.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
}
.photo-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.photo-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid var(--color-azul);
  background-color: transparent;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.25s ease;
}
.photo-dot.is-active {
  background-color: var(--color-azul);
}
.brands {
  background-color: var(--color-blanco);
  padding: 60px 0 100px;
}
.brands-text {
  font-family: var(--font-body);
  color: #33363B;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 780px;
  margin-bottom: 44px;
}
.brands-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.brands-arrow {
  background-color: var(--color-verde);
  color: var(--color-blanco);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.brands-arrow:hover {
  background-color: #578a45;
}
.brands-slider {
  flex: 1;
  min-width: 0;
}
.brands-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 100px;
}
.brands-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.brands-slider .slick-track {
  display: flex;
  align-items: center;
}
.quote-form {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.quote-form-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.quote-form-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.quote-form-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 24, 0.55);
}
.quote-form .container {
  position: relative;
  z-index: 2;
}
.quote-input {
  background-color: var(--color-blanco);
  border: none;
  border-radius: var(--radius-pill);
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-negro);
  box-shadow: none;
}
.quote-input::placeholder {
  color: #7a828c;
}
.quote-input:focus {
  box-shadow: 0 0 0 3px rgba(41, 87, 129, 0.25);
}
.quote-textarea {
  border-radius: 20px;
  resize: none;
  min-height: 130px;
}
.quote-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-azul);
  color: var(--color-blanco);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 22px;
  border: none;
  transition: background-color 0.2s ease;
}
.quote-submit:hover {
  background-color: var(--color-azul-oscuro);
  color: var(--color-blanco);
}
.quote-submit i {
  font-size: 0.7rem;
}
.quote-form-mensaje {
  display: inline-block;
  margin-left: 14px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-blanco);
}
.quote-form-title {
  font-family: var(--font-heading);
  color: var(--color-blanco);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.28;
  margin-bottom: 20px;
}
.quote-form-text {
  font-family: var(--font-body);
  color: var(--color-blanco);
  font-weight: 500;
  font-size: 0.92rem;
  line-height: 1.65;
  opacity: 0.92;
  margin: 0;
}
.site-footer {
  background-color: var(--color-blanco);
  padding: 50px 0;
  border-top: 1px solid #EAEDF0;
}
.footer-logo {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}
.footer-tagline {
  font-family: var(--font-body);
  color: #6b7280;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}
.footer-nav {
  list-style: none;
  margin: 0;
  padding: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-family: var(--font-heading);
  color: #6b7280;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}
.footer-nav a.active,
.footer-nav a:hover {
  color: var(--color-azul);
}
.footer-address {
  font-family: var(--font-body);
  color: var(--color-azul);
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0 0 10px;
}
.footer-address-label {
  font-family: var(--font-heading);
  color: var(--color-azul);
  font-weight: 700;
  font-size: 0.78rem;
  margin: 0 0 6px;
}
.footer-map {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
}
.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.page-banner {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
}
.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.servicios .page-banner img {
  object-position: 50% 25%;
}
.nosotros .page-banner img {
  object-position: 50% 33%;
}
.page-banner-contacto img {
  object-position: 50% 80%;
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(41, 87, 129, 0.35);
  pointer-events: none;
}
.servicios {
  background-color: var(--color-blanco);
  padding: 80px 0 100px;
}
.servicios-title {
  font-family: var(--font-heading);
  color: var(--color-azul);
  font-weight: 800;
  font-size: 1.9rem;
  line-height: 1.28;
  margin-bottom: 20px;
}
.servicios-intro-text {
  font-family: var(--font-body);
  color: var(--color-azul);
  font-weight: 400;
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 480px;
  opacity: 0.85;
  margin: 0;
}
.servicios-slider {
  width: 100%;
}
.servicios-slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
.servicios-slider .slick-dots {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.servicios-slider .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}
.servicios-slider .slick-dots li button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  background-color: transparent;
  border: 1.5px solid var(--color-azul);
  font-size: 0;
  transition: all 0.25s ease;
}
.servicios-slider .slick-dots li button:before {
  content: none;
}
.servicios-slider .slick-dots li.slick-active button {
  background-color: var(--color-azul);
}
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 70px;
}
.servicio-card {
  background-color: var(--color-blanco);
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(20, 40, 70, 0.09);
  padding: 30px 30px 30px 26px;
  display: flex;
  gap: 18px;
}
.servicio-card-line {
  width: 2px;
  align-self: stretch;
  background-color: var(--color-azul);
  flex-shrink: 0;
  min-height: 40px;
  margin: 4px 0;
}
.servicio-card-title {
  font-family: var(--font-heading);
  color: var(--color-azul);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.3;
  margin: 0 0 2px;
}
.servicio-card-subtitle {
  font-family: var(--font-heading);
  color: var(--color-azul);
  font-weight: 600;
  font-style: italic;
  font-size: 0.98rem;
  margin: 0 0 14px;
}
.servicio-card-text {
  font-family: var(--font-body);
  color: var(--color-negro);
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}
.trayectoria {
  background-color: var(--color-blanco);
  padding: 110px 0 100px;
}
.trayectoria-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.trayectoria-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.trayectoria-content {
  padding: 20px 0;
}
.trayectoria-eyebrow {
  font-family: var(--font-heading);
  color: var(--color-azul);
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 18px;
}
.trayectoria-title {
  font-family: var(--font-heading);
  color: var(--color-negro);
  font-weight: 800;
  font-size: 1.9rem;
  line-height: 1.28;
  margin: 0 0 24px;
}
.trayectoria-text {
  font-family: var(--font-body);
  color: #33363B;
  font-weight: 400;
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 100%;
  margin: 0 0 20px;
}
.trayectoria-highlight {
  font-family: var(--font-body);
  color: var(--color-negro);
  font-weight: 500;
  font-style: italic;
  font-size: 0.94rem;
  line-height: 1.65;
  max-width: 100%;
  margin: 10px 0 0;
}
.tecnologia {
  background-color: var(--color-blanco);
  padding: 40px 0 110px;
}
.tecnologia-eyebrow {
  font-family: var(--font-heading);
  color: var(--color-azul);
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 20px;
}
.tecnologia-text {
  font-family: var(--font-body);
  color: #33363B;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 0 18px;
}
.tecnologia-lead {
  font-family: var(--font-body);
  color: var(--color-negro);
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 0 24px;
}
.tecnologia-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.tecnologia-card {
  background-color: var(--color-blanco);
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(20, 40, 70, 0.08);
  padding: 24px 22px;
}
.tecnologia-card-title {
  font-family: var(--font-heading);
  color: var(--color-azul);
  font-weight: 600;
  font-size: 0.94rem;
  margin: 0 0 10px;
}
.tecnologia-card-text {
  font-family: var(--font-body);
  color: #33363B;
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}
.tecnologia-image-wrap {
  padding-top: 0;
  height: 100%;
}
.tecnologia-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.tecnologia-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.logistica-photo {
  width: 100%;
  padding: 30px 0;
}
.logistica-photo .container {
  height: 520px;
  border-radius: 4px;
  overflow: hidden;
}
.logistica-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.logistica-sustentable {
  background-color: var(--color-blanco);
  padding: 10px 0 100px;
}
.logistica-sustentable-title {
  font-family: var(--font-heading);
  color: var(--color-azul);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 0 20px;
}
.logistica-sustentable-text {
  font-family: var(--font-body);
  color: #33363B;
  font-weight: 400;
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 900px;
  margin: 0;
}
.logistica-sustentable-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.logistica-sustentable-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.logistica-sustentable-content {
  padding: 20px 0;
}
.gestion {
  background-color: var(--color-blanco);
  padding: 90px 0 100px;
}
.gestion-eyebrow {
  font-family: var(--font-heading);
  color: var(--color-azul);
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 18px;
}
.gestion-title {
  font-family: var(--font-heading);
  color: var(--color-negro);
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1.28;
  margin: 0 0 20px;
}
.gestion-text {
  font-family: var(--font-body);
  color: #33363B;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 0 28px;
}
.gestion-image {
  width: 100%;
  height: 380px;
}
.gestion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gestion-lead {
  font-family: var(--font-body);
  color: var(--color-negro);
  font-weight: 600;
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 900px;
  margin: 70px 0 40px;
}
.gestion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gestion-card {
  background-color: var(--color-blanco);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(20, 40, 70, 0.08);
  padding: 28px 26px;
}
.gestion-card-title {
  font-family: var(--font-heading);
  color: var(--color-azul);
  font-weight: 700;
  font-size: 0.96rem;
  line-height: 1.3;
  margin: 0 0 14px;
}
.gestion-card-text {
  font-family: var(--font-body);
  color: #33363B;
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.65;
  margin: 0;
}
.infraestructura {
  background-color: var(--color-blanco);
  padding: 30px 0 110px;
}
.infraestructura-title {
  font-family: var(--font-heading);
  color: var(--color-negro);
  font-weight: 800;
  font-size: 1.55rem;
  line-height: 1.3;
  margin: 0 0 18px;
}
.infraestructura-text {
  font-family: var(--font-body);
  color: #33363B;
  font-weight: 400;
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 780px;
  margin: 0 0 40px;
}
.infraestructura-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.infraestructura-card {
  background-color: var(--color-blanco);
  border: 1px solid var(--color-azul);
  border-radius: 12px;
  padding: 22px 20px;
}
.infraestructura-card-title {
  font-family: var(--font-heading);
  color: var(--color-azul);
  font-weight: 700;
  font-style: italic;
  font-size: 0.88rem;
  line-height: 1.35;
  margin: 0 0 14px;
}
.infraestructura-card-text {
  font-family: var(--font-body);
  color: var(--color-negro);
  font-weight: 400;
  font-size: 0.78rem;
  line-height: 1.6;
  margin: 0;
}
.centros-estrategicos {
  background-color: var(--color-blanco);
  padding: 30px 0 110px;
}
.centros-title {
  font-family: var(--font-heading);
  color: var(--color-negro);
  font-weight: 800;
  font-size: 1.55rem;
  line-height: 1.3;
  margin: 0 0 18px;
}
.centros-text {
  font-family: var(--font-body);
  color: #6b7280;
  font-weight: 400;
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 0 36px;
}
.centros-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.centro-map {
  width: 100%;
  height: 260px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}
.centro-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.centro-item-title {
  font-family: var(--font-heading);
  color: var(--color-azul);
  font-weight: 700;
  font-style: italic;
  font-size: 1rem;
  margin: 0 0 10px;
}
.centro-item-text {
  font-family: var(--font-body);
  color: var(--color-negro);
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}
.confia {
  background-color: var(--color-blanco);
  padding: 20px 0 110px;
}
.confia-title {
  font-family: var(--font-heading);
  color: var(--color-azul);
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1.28;
  margin: 0 0 18px;
}
.confia-text {
  font-family: var(--font-body);
  color: #33363B;
  font-weight: 400;
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0 0 28px;
}
.confia-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.confia-buttons .btn {
  font-size: 0.78rem;
}
.confia-buttons .btn-green-cta {
  font-size: 0.9rem;
}
.btn-green-cta {
  background-color: var(--color-verde);
  color: var(--color-blanco);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 6px 5px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.2s ease;
}
.btn-green-cta:hover {
  background-color: #527f40;
  color: var(--color-blanco);
}
.btn-green-circle {
  background-color: var(--color-blanco);
  color: var(--color-verde);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-green-circle i {
  font-size: 0.65rem;
  color: var(--color-verde);
}
.confia-image {
  width: 100%;
  height: 380px;
}
.confia-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.faq {
  background-color: var(--color-blanco);
  padding: 60px 0 110px;
}
.faq-accordion {
  width: 100%;
}
.faq-item {
  border: 1px solid var(--color-azul);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 14px;
  background-color: var(--color-blanco);
  transition: border-radius 0.35s ease;
}
.faq-item.is-open {
  border-radius: 18px;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 26px;
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  color: var(--color-azul);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.88rem;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}
.faq-question span {
  padding-right: 20px;
}
.faq-chevron {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  border: none;
}
.faq-answer-inner {
  padding: 0 26px 24px;
  font-family: var(--font-body);
  color: var(--color-negro);
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.65;
}
.faq-answer-inner p {
  margin: 0;
}
.page-banner-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.page-banner-contacto .page-banner-content {
  background: rgba(0, 0, 0, 0.35);
  padding-top: 140px;
}
.page-banner-title {
  font-family: var(--font-heading);
  color: var(--color-blanco);
  font-weight: 800;
  font-size: 1.9rem;
  line-height: 1.28;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  margin: 0 0 18px;
}
.page-banner-text {
  font-family: var(--font-body);
  color: var(--color-blanco);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 680px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
  margin: 0;
}
.contacto-formulario {
  background-color: var(--color-blanco);
  padding: 90px 0 120px;
}
.contacto-form {
  width: 100%;
}
.form-fila {
  margin-bottom: 14px;
}
.contacto-input {
  width: 100%;
  background-color: var(--color-blanco);
  border: 1px solid var(--color-azul);
  border-radius: 999px;
  padding: 16px 22px;
  font-family: var(--font-body);
  color: var(--color-azul);
  font-size: 0.9rem;
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contacto-input::placeholder {
  color: rgba(41, 87, 129, 0.55);
  font-style: italic;
  font-weight: 400;
}
.contacto-input:focus {
  border-color: var(--color-azul);
  box-shadow: 0 0 0 3px rgba(41, 87, 129, 0.12);
}
.contacto-textarea {
  min-height: 120px;
  border-radius: 22px;
  resize: vertical;
}
.form-fila-telefono {
  display: flex;
  gap: 12px;
}
.contacto-codigo {
  width: 72px;
  flex-shrink: 0;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
}
.contacto-telefono {
  flex: 1;
}
.btn-enviar {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background-color: var(--color-azul);
  color: var(--color-blanco);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 10px 12px 10px 22px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  margin-top: 6px;
  transition: background-color 0.2s ease;
}
.btn-enviar:hover {
  background-color: var(--color-negro);
}
.btn-enviar-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-verde);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blanco);
  font-size: 0.7rem;
}
.contacto-error {
  color: #dc3545;
  font-size: 0.75rem;
  padding-left: 22px;
  margin-top: 4px;
  min-height: 0;
}
.contacto-mensaje {
  margin-top: 18px;
  padding-left: 22px;
  font-size: 0.85rem;
  color: var(--color-azul);
  font-weight: 500;
}
.contacto-imagen {
  width: 100%;
  height: 260px !important;
}
.contacto-imagen img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.error-404 {
  background-color: var(--color-blanco);
  padding: 160px 0 140px;
}
.error-404-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.error-404-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background-color: rgba(41, 87, 129, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin-slow 6s linear infinite;
}
.error-404-icon i {
  font-size: 2.1rem;
  color: var(--color-azul);
}
@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.error-404-code {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(72px, 14vw, 140px);
  line-height: 1;
  color: var(--color-azul);
  margin: 0 0 8px;
}
.error-404-title {
  font-family: var(--font-heading);
  color: var(--color-negro);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.3;
  margin: 0 0 16px;
}
.error-404-text {
  font-family: var(--font-body);
  color: #33363B;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 32px;
}
.error-404-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.error-404-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--color-gris-claro);
}
.error-404-links a {
  font-family: var(--font-body);
  color: var(--color-azul);
  font-weight: 500;
  font-size: 0.85rem;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.error-404-links a:hover {
  opacity: 1;
  text-decoration: underline;
}
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #fff;
}
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
