/* ==========================================================================
   LANDING SERVICIOS - PRO ACRÍLICOS
   Archivo sugerido: assets/css/servicios.css
   Landing sin menú de navegación: logo + CTA
   Header fijo sin vibración en móvil
   Tipografías:
   - Manrope: títulos, botones y elementos destacados
   - Open Sans: párrafos, listas y textos largos
   ========================================================================== */


/* ==========================================================================
   VARIABLES
   ========================================================================== */

:root {
  --proa-green: #00d83a;
  --proa-green-dark: #063b18;
  --proa-green-soft: rgba(0, 216, 58, 0.12);
  --proa-black: #06110a;
  --proa-dark: #0b1710;
  --proa-white: #ffffff;
  --proa-muted: #647067;
  --proa-border: rgba(6, 17, 10, 0.12);
  --proa-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
  --proa-radius: 28px;
  --proa-radius-sm: 18px;
  --proa-container: 1180px;
  --landing-header-height: 84px;
}


/* ==========================================================================
   RESET BASE
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: #ffffff;
  color: var(--proa-black);
  font-family: "Open Sans", sans-serif;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}


/* ==========================================================================
   BASE LANDING TEMPLATE
   ========================================================================== */

body.landing-template {
  padding-top: var(--landing-header-height);
  background: #ffffff;
  color: var(--proa-black);
  font-family: "Open Sans", sans-serif;
}


/* ==========================================================================
   TIPOGRAFÍA GLOBAL LANDING
   Manrope = títulos, botones y elementos destacados
   Open Sans = párrafos, listas y textos largos
   ========================================================================== */

/* Títulos y elementos de impacto */
body.landing-template h1,
body.landing-template h2,
body.landing-template h3,
body.landing-template h4,
body.landing-template h5,
body.landing-template h6,
body.landing-template .btn,
body.landing-template button,
body.landing-template .eyebrow,
body.landing-template .landing-header__cta,
body.landing-template .proa-service-hero__eyebrow,
body.landing-template .proa-service-hero__badge,
body.landing-template .proa-video-eyebrow,
body.landing-template .proa-video-duration,
body.landing-template .proa-projects-gallery__badge,
body.landing-template .trust-num,
body.landing-template .map-redirect-btn {
  font-family: "Manrope", sans-serif;
}

/* Textos largos y lectura */
body.landing-template p,
body.landing-template li,
body.landing-template a,
body.landing-template span,
body.landing-template input,
body.landing-template textarea,
body.landing-template select,
body.landing-template label,
body.landing-template .faq-answer p,
body.landing-template .landing-content p,
body.landing-template .landing-info-card p,
body.landing-template .landing-process__item p,
body.landing-template .map-overlay-card p,
body.landing-template .site-footer p,
body.landing-template .site-footer a,
body.landing-template .site-footer span {
  font-family: "Open Sans", sans-serif;
}
/* ==========================================================================
   BASE LANDING
   ========================================================================== */

.landing-container {
  width: min(var(--proa-container), calc(100% - 40px));
  margin-inline: auto;
}

.landing-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

.landing-section--soft {
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 216, 58, 0.08), transparent 34%),
    linear-gradient(180deg, #f7faf8 0%, #ffffff 100%);
}

.landing-section--dark {
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 216, 58, 0.24), transparent 34%),
    linear-gradient(135deg, #06110a 0%, #0c1f12 55%, #020503 100%);
  color: #ffffff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--proa-green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2,
.landing-content h2,
.landing-cta h2 {
  margin: 0 0 18px;
  font-family: "Lexend", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.section-heading p,
.landing-content p,
.landing-cta p {
  margin: 0;
  color: var(--proa-muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.landing-section--dark .section-heading p,
.landing-section--dark p {
  color: rgba(255, 255, 255, 0.72);
}

/* ==========================================================================
   HEADER LANDING FIJO SIN VIBRACIÓN
   ========================================================================== */

.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 999;
  width: 100%;

  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(6, 17, 10, 0.08);

  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: transform;
}

.landing-header__container {
  width: min(var(--proa-container), calc(100% - 40px));
  min-height: var(--landing-header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.landing-header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.landing-header__logo img {
  width: auto;
  max-width: 190px;
  height: 56px;
  object-fit: contain;
}

.landing-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--proa-green), #078f2d);
  box-shadow: 0 14px 32px rgba(0, 216, 58, 0.26);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.landing-header__cta:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0, 216, 58, 0.36);
}

/* ==========================================================================
   BOTONES
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: 0.25s ease;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--proa-green), #078f2d);
  box-shadow: 0 18px 42px rgba(0, 216, 58, 0.26);
}

.btn-primary:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(0, 216, 58, 0.34);
}

.btn-secondary {
  color: var(--proa-black);
  background: #ffffff;
  border: 1px solid rgba(6, 17, 10, 0.12);
}

.btn-secondary:hover {
  color: var(--proa-black);
  transform: translateY(-3px);
  border-color: rgba(0, 216, 58, 0.38);
}

/* ==========================================================================
   HERO SERVICIO - DISEÑO EXACTO TIPO REFERENCIA
   ========================================================================== */

.proa-service-hero {
  position: relative;
  min-height: calc(100svh - var(--landing-header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: #0d471b;
}

.proa-service-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../../assets/img/bg-landing1-fondo-hero.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.38;
  transform: scale(1.02);
  pointer-events: none;
}

.proa-service-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(10, 73, 22, 0.98) 0%,
      rgba(10, 73, 22, 0.94) 32%,
      rgba(10, 73, 22, 0.78) 56%,
      rgba(10, 73, 22, 0.88) 100%
    );
  pointer-events: none;
}

.proa-service-hero__container {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 40px));
  min-height: 690px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 420px minmax(0, 738px);
  align-items: center;
  gap: 52px;
}

/* Columna izquierda */

.proa-service-hero__content {
  max-width: 420px;
}

.proa-service-hero__eyebrow {
  display: block;
  margin-bottom: 14px;
  color: rgba(162, 255, 96, 0.92);
  font-family: "Lexend", sans-serif;
  font-size: 0.92rem;
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.02em;
}

.proa-service-hero h1 {
  margin: 0 0 30px;
  color: #ffffff;
  font-family: "Lexend", sans-serif;
  font-size: clamp(1.65rem, 2.25vw, 3.05rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.proa-service-hero p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Open Sans", sans-serif;
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.38;
}

.proa-service-hero__line {
  width: 100%;
  height: 2px;
  margin: 20px 0 22px;
  background: rgba(118, 255, 96, 0.75);
}

.proa-service-hero__badges {
  display: flex;
  align-items: center;
  gap: 34px;
}

.proa-service-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Lexend", sans-serif;
  font-size: 1.02rem;
  font-weight: 400;
}

.proa-service-hero__badge img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  opacity: 0.72;
}

/* Carrusel derecho - 2 tarjetas completas visibles */

.proa-service-hero__carousel-wrap {
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 738px; /* 360 + 18 + 360 */
  z-index: 20;
  overflow: visible;

  /* Corre el carrusel hacia la derecha sin mover el texto */
  transform: translateX(200px);
}

.proa-service-hero__carousel {
  display: flex;
  gap: 18px;
  width: 100%;
  max-width: 738px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 0;
  scroll-snap-type: x mandatory;
}

.proa-service-hero__carousel::-webkit-scrollbar {
  display: none;
}

.proa-service-hero__slide {
  flex: 0 0 360px;
  width: 360px;
  height: 470px;
  overflow: hidden;
  border-radius: 10px;
  background: #bfbfbf;
  scroll-snap-align: start;
}

.proa-service-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Flechas */

.proa-service-hero__arrows {
  position: absolute;
  top: 20px;
  left: -64px;
  z-index: 40;
  display: grid;
  gap: 18px;
  pointer-events: auto;
}

.proa-service-hero__arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  border: 3px solid #76ff54;
  background: rgba(10, 73, 22, 0.32);
  cursor: pointer;
  pointer-events: auto;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    background 0.25s ease;
}

.proa-service-hero__arrow:hover {
  transform: scale(1.06);
  background: rgba(118, 255, 84, 0.16);
}

.proa-service-hero__arrow:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.proa-service-hero__arrow span {
  width: 13px;
  height: 13px;
  display: block;
  border-top: 4px solid #76ff54;
  border-right: 4px solid #76ff54;
}

.proa-service-hero__arrow--next span {
  transform: rotate(45deg);
  margin-left: -3px;
}

.proa-service-hero__arrow--prev {
  opacity: 0.42;
}

.proa-service-hero__arrow--prev span {
  transform: rotate(-135deg);
  margin-right: -3px;
}

/* ==========================================================================
   HERO RESPONSIVE
   ========================================================================== */

@media (max-width: 1180px) {
  .proa-service-hero__container {
    width: min(1120px, calc(100% - 40px));
    grid-template-columns: 390px minmax(0, 638px);
    gap: 38px;
  }

  .proa-service-hero__content {
    max-width: 390px;
  }

  .proa-service-hero__carousel-wrap {
    max-width: 638px; /* 310 + 18 + 310 */
    transform: translateX(40px);
  }

  .proa-service-hero__carousel {
    max-width: 638px;
  }

  .proa-service-hero__slide {
    flex: 0 0 310px;
    width: 310px;
    height: 430px;
  }

  .proa-service-hero__arrows {
    left: -58px;
  }
}

@media (max-width: 980px) {
  .proa-service-hero {
    min-height: auto;
    padding: 80px 0;
  }

  .proa-service-hero__container {
    width: min(1180px, calc(100% - 40px));
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .proa-service-hero__content {
    max-width: 680px;
  }

    .proa-service-hero h1 {
    font-size: clamp(2.65rem, 8.5vw, 3.75rem);
  }

  .proa-service-hero p {
    max-width: 620px;
  }

  .proa-service-hero__carousel-wrap {
    width: 100%;
    max-width: none;
    transform: none;
  }

  .proa-service-hero__carousel {
    width: 100%;
    max-width: none;
    padding-right: 80px;
  }

  .proa-service-hero__slide {
    flex: 0 0 330px;
    width: 330px;
    height: 430px;
  }

  .proa-service-hero__arrows {
    top: -66px;
    left: auto;
    right: 0;
    display: flex;
  }
}

@media (max-width: 680px) {
  .proa-service-hero {
    padding: 58px 0 64px;
  }

  .proa-service-hero__container {
    width: min(100% - 28px, 1180px);
    gap: 38px;
  }

   .proa-service-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(2.25rem, 11.5vw, 3.15rem);
    line-height: 1;
    letter-spacing: -0.06em;
  }

  .proa-service-hero__eyebrow {
    font-size: 0.82rem;
    font-weight: 600;
  }

  .proa-service-hero p {
    font-size: 1rem;
    line-height: 1.45;
  }

  .proa-service-hero__line {
    margin: 18px 0 18px;
  }

  .proa-service-hero__badges {
    gap: 22px;
  }

  .proa-service-hero__badge {
    font-size: 0.92rem;
  }

  .proa-service-hero__badge img {
    width: 30px;
    height: 30px;
  }

  .proa-service-hero__arrows {
    position: static;
    margin-bottom: 14px;
    justify-content: flex-end;
  }

  .proa-service-hero__arrow {
    width: 40px;
    height: 40px;
    border-width: 3px;
  }

  .proa-service-hero__carousel {
    padding-right: 48px;
  }

  .proa-service-hero__slide {
    flex: 0 0 82%;
    width: 82%;
    height: 390px;
    border-radius: 10px;
  }
}

@media (max-width: 420px) {
  .proa-service-hero__slide {
    height: 340px;
  }
}

/* ==========================================================================
   DOS COLUMNAS
   ========================================================================== */

.landing-two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 56px;
  align-items: center;
}

.landing-content h2 {
  max-width: 760px;
}

.landing-content p + p {
  margin-top: 18px;
}

.landing-card {
  padding: 36px;
  border: 1px solid transparent;
  border-radius: var(--proa-radius);
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(0, 216, 58, 0.5), rgba(255, 255, 255, 0.1)) border-box;
  box-shadow: var(--proa-shadow);
}

.landing-card h3 {
  margin: 0 0 18px;
  font-family: "Lexend", sans-serif;
  font-size: 1.35rem;
}

.landing-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-card li {
  position: relative;
  padding-left: 30px;
  color: #243128;
  line-height: 1.55;
}

.landing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 900;
  border-radius: 50%;
  background: var(--proa-green);
}

/* ==========================================================================
   BENEFICIOS / CARDS
   ========================================================================== */

.landing-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.landing-info-card {
  position: relative;
  min-height: 250px;
  padding: 34px;
  border-radius: var(--proa-radius);
  background: #ffffff;
  border: 1px solid rgba(6, 17, 10, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  overflow: hidden;
}

.landing-info-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -90px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(0, 216, 58, 0.1);
}

.landing-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.1);
}

.landing-info-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: #ffffff;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--proa-green), #078f2d);
  box-shadow: 0 16px 30px rgba(0, 216, 58, 0.28);
}

.landing-info-card h3 {
  margin: 0 0 12px;
  font-family: "Lexend", sans-serif;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.landing-info-card p {
  margin: 0;
  color: var(--proa-muted);
  line-height: 1.7;
}

/* ==========================================================================
   GALERÍA / APLICACIONES
   ========================================================================== */

.landing-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.landing-gallery-card {
  overflow: hidden;
  border-radius: var(--proa-radius);
  background: #ffffff;
  border: 1px solid rgba(6, 17, 10, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.landing-gallery-card img {
  width: 100%;
  height: 280px;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.landing-gallery-card:hover img {
  transform: scale(1.05);
}

.landing-gallery-card h3 {
  margin: 24px 24px 8px;
  font-family: "Lexend", sans-serif;
  font-size: 1.25rem;
}

.landing-gallery-card p {
  margin: 0 24px 28px;
  color: var(--proa-muted);
  line-height: 1.65;
}

/* ==========================================================================
   PROCESO
   ========================================================================== */

.landing-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: proceso;
}

.landing-process__item {
  position: relative;
  padding: 34px 26px;
  border-radius: var(--proa-radius);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.landing-process__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  border-radius: 18px;
  color: #06110a;
  background: var(--proa-green);
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(0, 216, 58, 0.22);
}

.landing-process__item h3 {
  margin: 0 0 12px;
  font-family: "Lexend", sans-serif;
  font-size: 1.25rem;
}

.landing-process__item p {
  margin: 0;
  line-height: 1.7;
}

/* ==========================================================================
   COBERTURA
   ========================================================================== */

.landing-zone-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.landing-zone-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 18px;
  border-radius: 999px;
  color: var(--proa-black);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid rgba(6, 17, 10, 0.1);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
  transition: 0.25s ease;
}

.landing-zone-list a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--proa-green), #078f2d);
  transform: translateY(-3px);
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */

.landing-cta {
  position: relative;
  padding: 120px 0;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 216, 58, 0.25), transparent 35%),
    linear-gradient(135deg, #06110a 0%, #0c1f12 70%, #020503 100%);
}

.landing-cta::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 36px;
  pointer-events: none;
}

.landing-cta__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.landing-cta p {
  max-width: 680px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.74);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(6, 17, 10, 0.09);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary h3 {
  margin: 0;
  font-family: "Lexend", sans-serif;
  font-size: 1.08rem;
  line-height: 1.35;
}

.faq-item summary span {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--proa-green-soft);
}

.faq-item summary span::before,
.faq-item summary span::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 14px;
  height: 2px;
  background: var(--proa-green-dark);
  transform: translate(-50%, -50%);
}

.faq-item summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item p {
  margin: 0;
  padding: 0 28px 26px;
  color: var(--proa-muted);
  line-height: 1.75;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  padding: 76px 0 0;
  color: #ffffff;
  background: #06110a;
}

.footer-container {
  width: min(var(--proa-container), calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 44px;
}

.footer-logo {
  max-width: 170px;
  height: auto;
  margin-bottom: 18px;
}

.site-footer p,
.site-footer span {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.site-footer h3 {
  margin: 0 0 18px;
  font-family: "Lexend", sans-serif;
  font-size: 1.05rem;
}

.site-footer a {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: 0.25s ease;
}

.site-footer a:hover {
  color: var(--proa-green);
}

.footer-bottom {
  margin-top: 60px;
  padding: 22px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

/* ==========================================================================
   WHATSAPP FLOTANTE
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 1.8rem;
  text-decoration: none;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.38);
  transition: 0.25s ease;
}

.whatsapp-float:hover {
  color: #ffffff;
  transform: translateY(-4px) scale(1.04);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 980px) {
  :root {
    --landing-header-height: 78px;
  }

  body.landing-template {
    padding-top: var(--landing-header-height);
  }

  .landing-section {
    padding: 82px 0;
  }

  .landing-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .landing-header__container {
    min-height: var(--landing-header-height);
  }

  .landing-header__logo img {
    max-width: 165px;
    height: 50px;
  }

  .landing-hero {
    min-height: auto;
    padding: 80px 0;
  }

  .landing-hero__grid,
  .landing-two-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .landing-hero__media img {
    min-height: 420px;
  }

  .landing-card-grid,
  .landing-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .landing-process {
    grid-template-columns: 1fr 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --landing-header-height: 72px;
  }

  body.landing-template {
    padding-top: var(--landing-header-height);
  }

  .landing-container,
  .landing-header__container,
  .footer-container {
    width: min(100% - 28px, var(--proa-container));
  }

  .landing-header {
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(6, 17, 10, 0.08);
  }

  .landing-header__container {
    min-height: var(--landing-header-height);
  }

  .landing-header__logo img {
    max-width: 136px;
    height: 42px;
  }

  .landing-header__cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.78rem;
  }

  .landing-hero {
    min-height: auto;
    padding: 64px 0;
  }

  .landing-hero h1 {
    font-size: clamp(2.35rem, 14vw, 3.25rem);
  }

  .landing-hero p {
    font-size: 1rem;
  }

  .landing-hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .landing-hero__media img {
    min-height: 340px;
    border-radius: 24px;
  }

  .landing-hero__media::before {
    inset: 18px -10px -10px 18px;
    border-radius: 24px;
  }

  .landing-card-grid,
  .landing-gallery-grid,
  .landing-process,
  .landing-zone-list,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .landing-info-card,
  .landing-card,
  .landing-process__item {
    padding: 26px;
  }

  .landing-gallery-card img {
    height: 230px;
  }

  .landing-cta {
    padding: 86px 0;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }
}
/* ==========================================================================
   GALERÍA PROYECTOS REALIZADOS - ESTILO REFERENCIA
   ========================================================================== */

.proa-projects-gallery {
  position: relative;
  min-height: 760px;
  padding: 56px 0 70px;
  overflow: hidden;
  background: #1d3523;
  color: #ffffff;
}

.proa-projects-gallery__container {
  width: min(1320px, calc(100% - 40px));
  margin-inline: auto;
  padding-left: 82px;
}

.proa-projects-gallery__header {
  margin-bottom: 48px;
}

.proa-projects-gallery__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 18px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #168c19;
  font-family: "Lexend", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  background: #ffffff;
}

.proa-projects-gallery__header h2 {
  max-width: 980px;
  margin: 0;
  color: rgba(221, 242, 222, 0.76);
  font-family: "Lexend", sans-serif;
  font-size: 1.36rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.035em;
}

.proa-projects-gallery__viewport {
  position: relative;
  width: 100%;
  max-width: 1186px; /* 280px x 4 + 22px x 3 */
  overflow: hidden;
}

.proa-projects-gallery__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 280px;
  gap: 22px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0;
  scroll-snap-type: x mandatory;
}

.proa-projects-gallery__track::-webkit-scrollbar {
  display: none;
}

.proa-projects-gallery__item {
  width: 280px;
  height: 505px;
  scroll-snap-align: start;
  opacity: 0;
  transform: translateY(34px);
  animation: proaProjectsIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.proa-projects-gallery__item:nth-child(1) {
  animation-delay: 0.06s;
}

.proa-projects-gallery__item:nth-child(2) {
  animation-delay: 0.16s;
}

.proa-projects-gallery__item:nth-child(3) {
  animation-delay: 0.26s;
}

.proa-projects-gallery__item:nth-child(4) {
  animation-delay: 0.36s;
}

.proa-projects-gallery__item:nth-child(5) {
  animation-delay: 0.46s;
}

.proa-projects-gallery__item:nth-child(6) {
  animation-delay: 0.56s;
}

@keyframes proaProjectsIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.proa-projects-gallery__trigger {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  background: #102615;
}

.proa-projects-gallery__trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(9, 18, 10, 0.43);
  transition: opacity 0.36s ease;
  pointer-events: none;
}

.proa-projects-gallery__trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.74) saturate(0.9);
  transform: scale(1);
  transition:
    filter 0.38s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.proa-projects-gallery__trigger:hover::after {
  opacity: 0;
}

.proa-projects-gallery__trigger:hover img {
  filter: brightness(1.08) saturate(1.06);
  transform: scale(1.04);
}

.proa-projects-gallery__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #ffffff;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.proa-projects-gallery__icon svg {
  width: 42px;
  height: 42px;
}

.proa-projects-gallery__trigger:hover .proa-projects-gallery__icon {
  transform: translate(-50%, -50%) scale(1.12);
}

/* Flecha lateral izquierda exacta */

.proa-projects-gallery__side-arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 74px;
  height: 104px;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  cursor: pointer;
  pointer-events: auto;
  background: #078f0b;
  transition: background 0.25s ease;
}

.proa-projects-gallery__side-arrow:hover {
  background: #09a810;
}

.proa-projects-gallery__side-arrow span {
  width: 34px;
  height: 34px;
  border-left: 5px solid #ffffff;
  border-bottom: 5px solid #ffffff;
  transform: rotate(45deg);
  margin-left: 12px;
}

/* ==========================================================================
   MODAL PROYECTOS
   ========================================================================== */

.proa-projects-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.proa-projects-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.proa-projects-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 11, 5, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.proa-projects-modal__dialog {
  position: relative;
  z-index: 2;
  max-width: min(1120px, 92vw);
  max-height: 88vh;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  transition:
    opacity 0.36s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.36s cubic-bezier(0.16, 1, 0.3, 1);
}

.proa-projects-modal.is-open .proa-projects-modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.proa-projects-modal__dialog img {
  width: auto;
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.55);
}

.proa-projects-modal__close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 5;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.proa-projects-modal__close span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #102615;
}

.proa-projects-modal__close span:first-child {
  transform: rotate(45deg);
}

.proa-projects-modal__close span:last-child {
  transform: rotate(-45deg);
}

/* ==========================================================================
   RESPONSIVE GALERÍA PROYECTOS
   ========================================================================== */

@media (max-width: 1180px) {
  .proa-projects-gallery__container {
    width: min(100% - 40px, 1180px);
    padding-left: 64px;
  }

  .proa-projects-gallery__viewport {
    max-width: 1057px; /* 250px x 4 + 19px x 3 */
  }

  .proa-projects-gallery__track {
    grid-auto-columns: 250px;
    gap: 19px;
  }

  .proa-projects-gallery__item {
    width: 250px;
    height: 470px;
  }
}

@media (max-width: 980px) {
  .proa-projects-gallery {
    min-height: auto;
    padding: 64px 0 96px;
  }

  .proa-projects-gallery__container {
    width: min(100% - 40px, 1180px);
    padding-left: 0;
  }

  .proa-projects-gallery__viewport {
    max-width: none;
    overflow: hidden;
  }

  .proa-projects-gallery__side-arrow {
    display: grid;
    position: absolute;
    top: auto;
    left: auto;
    right: 22px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    z-index: 90;
    border-radius: 50%;
    background: #078f0b;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  }

  .proa-projects-gallery__side-arrow span {
    width: 22px;
    height: 22px;
    border-left: 4px solid #ffffff;
    border-bottom: 4px solid #ffffff;
    transform: rotate(-135deg);
    margin-left: -4px;
  }

  .proa-projects-gallery__track {
    grid-auto-columns: 260px;
    gap: 18px;
  }

  .proa-projects-gallery__item {
    width: 260px;
    height: 450px;
  }
}

@media (max-width: 680px) {
  .proa-projects-gallery {
    padding: 54px 0 90px;
  }

  .proa-projects-gallery__container {
    width: min(100% - 28px, 1180px);
  }

  .proa-projects-gallery__header {
    margin-bottom: 34px;
  }

  .proa-projects-gallery__badge {
    font-size: 0.82rem;
  }

  .proa-projects-gallery__header h2 {
    font-size: 1.08rem;
  }

  .proa-projects-gallery__track {
    grid-auto-columns: 78%;
    gap: 16px;
  }

  .proa-projects-gallery__item {
    width: 100%;
    height: 420px;
  }

  /* Botón carrusel móvil */
  .proa-projects-gallery__side-arrow {
    display: grid;
    position: absolute;
    top: auto;
    left: auto;
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    z-index: 90;
    border-radius: 50%;
    background: #078f0b;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  }

  .proa-projects-gallery__side-arrow span {
    width: 20px;
    height: 20px;
    border-left: 4px solid #ffffff;
    border-bottom: 4px solid #ffffff;
    transform: rotate(-135deg);
    margin-left: -4px;
  }

  .proa-projects-modal {
    padding: 18px;
  }

  .proa-projects-modal__dialog img {
    border-radius: 8px;
  }

  .proa-projects-modal__close {
    top: -12px;
    right: -12px;
    width: 42px;
    height: 42px;
  }
}

/* ==========================================================================
   VIDEO / EXPERIENCIA VISUAL - LANDING SERVICIOS
   ========================================================================== */

.proa-video-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 80%, rgba(20, 217, 47, 0.08) 0%, transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f6faf0 100%);
}

.proa-video-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.proa-video-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.proa-video-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #076e49;
  font-family: "Lexend", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.proa-video-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #14d92f;
}

.proa-video-heading h2 {
  margin: 0 0 18px;
  color: #030704;
  font-family: "Lexend", sans-serif;
  font-size: clamp(1.65rem, 2.25vw, 3.05rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.proa-video-heading p {
  max-width: 690px;
  margin: 0 auto;
  color: #4b5563;
  font-family: "Open Sans", sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.65;
}

.proa-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 24px;
  background: #06120a;
  border: 1px solid rgba(7, 110, 73, 0.14);
  box-shadow: 0 36px 90px rgba(3, 7, 4, 0.18);
}

.proa-video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #06120a;
}

.proa-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background:
    linear-gradient(
      180deg,
      rgba(3, 7, 4, 0.15) 0%,
      rgba(3, 7, 4, 0.68) 100%
    );
  transition:
    opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.proa-video-wrapper.video-active .proa-video-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.proa-play-trigger {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.proa-play-trigger svg {
  width: 30px;
  height: 30px;
  transform: translateX(3px);
}

.proa-play-trigger:hover {
  color: #030704;
  background: #14d92f;
  transform: scale(1.08);
  box-shadow: 0 0 42px rgba(20, 217, 47, 0.42);
}

.proa-video-duration {
  color: rgba(255, 255, 255, 0.88);
  font-family: "Lexend", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* ==========================================================================
   VIDEO RESPONSIVE
   ========================================================================== */

@media (max-width: 980px) {
  .proa-video-section {
    padding: 86px 0;
  }

  .proa-video-heading {
    margin-bottom: 42px;
  }

  .proa-video-wrapper {
    border-radius: 20px;
  }

  .proa-play-trigger {
    width: 76px;
    height: 76px;
  }
}

@media (max-width: 680px) {
  .proa-video-section {
    padding: 70px 0;
  }

  .proa-video-container {
    width: min(100% - 28px, 1180px);
  }

  .proa-video-heading {
    text-align: left;
    margin-bottom: 34px;
  }

  .proa-video-heading h2 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }

  .proa-video-heading p {
    font-size: 0.96rem;
  }

  .proa-video-wrapper {
    aspect-ratio: 16 / 10;
    border-radius: 18px;
  }

  .proa-play-trigger {
    width: 64px;
    height: 64px;
  }

  .proa-play-trigger svg {
    width: 24px;
    height: 24px;
  }

  .proa-video-duration {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }
}

/* ==========================================================================
   MÉTRICAS DE CONFIANZA - LANDING SERVICIOS
   ========================================================================== */

.trust-loop-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(20, 217, 47, 0.12), transparent 34%),
    linear-gradient(135deg, #030704 0%, #06120a 36%, #025211 68%, #030704 100%);
  background-size: 320% 320%;
  animation: proaTrustAmbientLoop 16s ease infinite;
  color: #ffffff;
}

@keyframes proaTrustAmbientLoop {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.trust-loop-section::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 217, 47, 0.24), transparent 68%);
  filter: blur(70px);
  pointer-events: none;
}

.trust-loop-section::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: -160px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 110, 73, 0.38), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.trust-loop-section .section-container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.trust-loop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.trust-loop-item {
  position: relative;
  min-height: 275px;
  display: flex;
  flex-direction: column;
  padding: 38px 28px 34px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform-style: preserve-3d;
  perspective: 1000px;
  transition:
    transform 0.55s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.55s cubic-bezier(0.25, 1, 0.5, 1);
}

.trust-loop-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(20, 217, 47, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.trust-loop-item:hover {
  transform: translateY(-8px) rotateX(3deg) rotateY(-2deg);
  border-color: rgba(20, 217, 47, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018));
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.48),
    0 0 38px rgba(7, 110, 73, 0.16);
}

.trust-loop-item:hover::before {
  opacity: 1;
}

.trust-icon-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
  transform: translateZ(22px);
}

.trust-3d-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  color: #14d92f;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.012));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    inset 0 2px 5px rgba(255, 255, 255, 0.08),
    0 12px 24px rgba(0, 0, 0, 0.36);
  transform: translateZ(12px);
  transition:
    transform 0.48s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.trust-3d-icon svg {
  width: 28px;
  height: 28px;
  color: currentColor;
  filter: drop-shadow(0 5px 9px rgba(0, 0, 0, 0.42));
}

.trust-loop-item:hover .trust-3d-icon {
  transform: translateZ(42px) scale(1.1) rotate(10deg);
  border-color: rgba(20, 217, 47, 0.42);
  box-shadow:
    inset 0 2px 5px rgba(255, 255, 255, 0.18),
    0 16px 28px rgba(7, 110, 73, 0.28);
}

.trust-num {
  display: block;
  font-family: "Lexend", sans-serif;
  font-size: clamp(1.9rem, 2.8vw, 2.45rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.055em;
  background: linear-gradient(135deg, #ffffff 35%, #14d92f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateZ(18px);
  white-space: nowrap;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.trust-loop-item:hover .trust-num {
  transform: translateZ(48px) scale(1.04);
}

.trust-loop-item h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  color: #ffffff;
  font-family: "Lexend", sans-serif;
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  transform: translateZ(12px);
}

.trust-loop-item p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(230, 237, 232, 0.72);
  font-family: "Open Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.58;
  transform: translateZ(6px);
}

/* ==========================================================================
   MÉTRICAS DE CONFIANZA RESPONSIVE
   ========================================================================== */

@media (max-width: 1180px) {
  .trust-loop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .trust-loop-item {
    min-height: 245px;
  }
}

@media (max-width: 680px) {
  .trust-loop-section {
    padding: 76px 0;
  }

  .trust-loop-section .section-container {
    width: min(100% - 28px, 1180px);
  }

  .trust-loop-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .trust-loop-item {
    min-height: auto;
    padding: 32px 24px 30px;
    border-radius: 22px;
  }

  .trust-icon-wrapper {
    margin-bottom: 22px;
  }

  .trust-3d-icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
  }

  .trust-3d-icon svg {
    width: 26px;
    height: 26px;
  }

  .trust-num {
    font-size: 2rem;
  }

  .trust-loop-item h3 {
    font-size: 1rem;
  }

  .trust-loop-item p {
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   CTA PERSONALIZADO - AJUSTE MÓVIL
   ========================================================================== */

@media (max-width: 680px) {
  .proa-custom-cta,
  .landing-cta,
  .cta-section {
    padding-inline: 14px;
  }

  .proa-custom-cta__box,
  .landing-cta__box,
  .cta-card,
  .cta-content {
    width: 100%;
    padding: 58px 20px 46px;
    border-radius: 30px;
  }

  .proa-custom-cta__box h2,
  .landing-cta__box h2,
  .cta-card h2,
  .cta-content h2 {
    font-size: clamp(1.95rem, 9vw, 2.35rem);
    line-height: 1.05;
    letter-spacing: -0.055em;
    margin-bottom: 22px;
  }

  .proa-custom-cta__box p,
  .landing-cta__box p,
  .cta-card p,
  .cta-content p {
    max-width: 290px;
    margin-inline: auto;
    font-size: 1rem;
    line-height: 1.65;
  }

  .proa-custom-cta__box .btn,
  .landing-cta__box .btn,
  .cta-card .btn,
  .cta-content .btn,
  .proa-custom-cta__box a,
  .landing-cta__box a,
  .cta-card a,
  .cta-content a {
    width: min(100%, 300px);
    min-height: 52px;
    margin-inline: auto;
    padding-inline: 18px;
    font-size: 0.95rem;
    border-radius: 999px;
  }
}

@media (max-width: 420px) {
  .proa-custom-cta,
  .landing-cta,
  .cta-section {
    padding-inline: 14px;
  }

  .proa-custom-cta__box,
  .landing-cta__box,
  .cta-card,
  .cta-content {
    padding: 54px 18px 42px;
    border-radius: 28px;
  }

  .proa-custom-cta__box .btn,
  .landing-cta__box .btn,
  .cta-card .btn,
  .cta-content .btn,
  .proa-custom-cta__box a,
  .landing-cta__box a,
  .cta-card a,
  .cta-content a {
    width: 100%;
    max-width: 292px;
  }
}

/* ==========================================================================
   FAQS - LANDING SERVICIOS
   ========================================================================== */

.faq-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 16%, rgba(20, 217, 47, 0.08), transparent 34%),
    linear-gradient(180deg, #f6faf0 0%, #ffffff 100%);
}

.faq-section .section-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.faq-section .section-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.faq-section .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #076e49;
  font-family: "Lexend", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.faq-section .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #14d92f;
}

.faq-section .section-heading h2 {
  margin: 0;
  color: #030704;
  font-family: "Lexend", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(7, 110, 73, 0.09);
  box-shadow: 0 14px 40px rgba(3, 7, 4, 0.035);
  transition:
    transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(7, 110, 73, 0.24);
  box-shadow: 0 18px 48px rgba(3, 7, 4, 0.055);
}

.faq-item[open] {
  border-color: rgba(7, 110, 73, 0.55);
  box-shadow: 0 22px 56px rgba(7, 110, 73, 0.075);
}

.faq-trigger {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 30px;
  cursor: pointer;
  user-select: none;
}

.faq-trigger::-webkit-details-marker {
  display: none;
}

.faq-trigger h3 {
  margin: 0;
  color: #030704;
  font-family: "Lexend", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.38;
  letter-spacing: -0.025em;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-trigger h3,
.faq-item[open] .faq-trigger h3 {
  color: #076e49;
}

.faq-icon-marker {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(7, 110, 73, 0.065);
  transition:
    background-color 0.35s ease,
    transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-icon-marker::before,
.faq-icon-marker::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: #076e49;
  transition:
    transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
    background-color 0.35s ease;
}

.faq-icon-marker::before {
  width: 15px;
  height: 2px;
}

.faq-icon-marker::after {
  width: 2px;
  height: 15px;
}

.faq-item[open] .faq-icon-marker {
  background: #076e49;
  transform: rotate(180deg);
}

.faq-item[open] .faq-icon-marker::before {
  background: #ffffff;
}

.faq-item[open] .faq-icon-marker::after {
  background: #ffffff;
  transform: rotate(90deg) scale(0);
}

.faq-answer {
  padding: 0 30px 26px;
  animation: proaFaqReveal 0.38s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.faq-answer p {
  margin: 0;
  color: #4b5563;
  font-family: "Open Sans", sans-serif;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.68;
}

@keyframes proaFaqReveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   FAQS RESPONSIVE
   ========================================================================== */

@media (max-width: 980px) {
  .faq-section {
    padding: 88px 0;
  }

  .faq-section .section-heading {
    margin-bottom: 42px;
  }
}

@media (max-width: 680px) {
  .faq-section {
    padding: 72px 0;
  }

  .faq-section .section-container {
    width: min(100% - 28px, 1180px);
  }

  .faq-section .section-heading {
    text-align: left;
    margin-bottom: 34px;
  }

  .faq-section .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .faq-section .section-heading h2 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
    line-height: 1.16;
  }

  .faq-list {
    gap: 14px;
  }

  .faq-trigger {
    padding: 21px 20px;
    gap: 16px;
  }

  .faq-trigger h3 {
    font-size: 0.98rem;
    line-height: 1.36;
  }

  .faq-icon-marker {
    width: 34px;
    height: 34px;
  }

  .faq-answer {
    padding: 0 20px 22px;
  }

  .faq-answer p {
    font-size: 0.92rem;
    line-height: 1.62;
  }
}

/* ==========================================================================
   UBICACIÓN / MAPA FULL WIDTH - LANDING SERVICIOS
   ========================================================================== */

.map-full-width-section {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: #f6faf0;
}

.map-real-viewport {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background: #dfe9e2;
}

#leaflet-map-container {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

/* Tarjeta flotante */

.map-overlay-card {
  position: absolute;
  top: 42px;
  left: 42px;
  z-index: 20;
  width: min(360px, calc(100% - 84px));
  padding: 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(7, 110, 73, 0.14);
  box-shadow: 0 24px 54px rgba(3, 7, 4, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.map-overlay-card .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #076e49;
  font-family: "Lexend", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.map-overlay-card .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #14d92f;
}

.map-overlay-card h2 {
  margin: 0 0 12px;
  color: #030704;
  font-family: "Lexend", sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.map-overlay-card p {
  margin: 0 0 24px;
  color: #4b5563;
  font-family: "Open Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
}

.map-redirect-btn {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 14px;
  color: #ffffff;
  font-family: "Lexend", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  background: #076e49;
  box-shadow: 0 14px 28px rgba(7, 110, 73, 0.22);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.map-redirect-btn:hover {
  color: #ffffff;
  background: #055236;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(7, 110, 73, 0.3);
}

/* Marcador personalizado Leaflet */

.leaflet-professional-marker {
  background: none !important;
  border: none !important;
}

.leaflet-marker-logo-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.leaflet-marker-logo-wrapper svg,
.leaflet-marker-logo-wrapper img {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 8px 16px rgba(255, 51, 51, 0.5));
  transition:
    transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    filter 0.3s ease;
}

.leaflet-marker-logo-wrapper:hover svg,
.leaflet-marker-logo-wrapper:hover img {
  transform: scale(1.15);
  filter: drop-shadow(0 12px 24px rgba(255, 51, 51, 0.7));
}

.leaflet-marker-pulse-giant {
  position: absolute;
  bottom: -4px;
  left: 50%;
  z-index: 1;
  width: 50px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 51, 51, 0.15);
  border: 1px solid #ff3333;
  transform: translate(-50%, 50%);
  animation: proaMapPing 2.5s cubic-bezier(0.25, 0, 0, 1) infinite;
}

@keyframes proaMapPing {
  0% {
    transform: translate(-50%, 50%) scale(0.2);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 50%) scale(2.2);
    opacity: 0;
  }
}

/* ==========================================================================
   UBICACIÓN RESPONSIVE
   ========================================================================== */

@media (max-width: 980px) {
  .map-real-viewport {
    height: 560px;
  }

  .map-overlay-card {
    top: 28px;
    left: 28px;
    width: min(350px, calc(100% - 56px));
  }
}

@media (max-width: 680px) {
  .map-real-viewport {
    height: auto;
    min-height: 640px;
    display: flex;
    flex-direction: column;
  }

  .map-overlay-card {
    position: relative;
    top: auto;
    left: auto;
    order: 1;
    width: 100%;
    padding: 30px 24px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
    background: #ffffff;
  }

  #leaflet-map-container {
    order: 2;
    height: 430px;
    min-height: 430px;
  }

  .map-overlay-card h2 {
    font-size: 1.45rem;
  }

  .map-overlay-card p {
    font-size: 0.92rem;
  }

  .map-redirect-btn {
    min-height: 50px;
    border-radius: 13px;
  }
}