/**
 * MAES PERÚ - Stylesheet Principal
 * Paleta corporativa: Naranja MAES (#FF8700), Azul Petróleo/Marino (#1B273D), Blanco y Neutros
 */

:root {
  --maes-orange: #FF8700;
  --maes-orange-hover: #E07200;
  --maes-orange-light: #FFF4E6;
  --maes-orange-glow: rgba(255, 135, 0, 0.25);
  
  --maes-navy: #1B273D;
  --maes-navy-dark: #121B2B;
  --maes-dark: #0F172A;
  --maes-charcoal: #1E242B;
  
  --maes-gray-bg: #F8FAFC;
  --maes-gray-border: #E2E8F0;
  --maes-text-muted: #64748B;
  --maes-text-body: #334155;
  
  --font-heading: 'Plus Jakarta Sans', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-syne: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
  --font-title: 'Plus Jakarta Sans', sans-serif;
  --font-poppins: 'Poppins', sans-serif;
  --font-body: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Paleta Arquitectónica Contemporánea MAES (Inspirada en el Azul Marino Profundo del Menú y Footer) */
  --lay-dark: #0A101D;          /* Tono Base Nocturno Ultra Profundo */
  --lay-charcoal: #0E1726;      /* Tono Azul Petróleo para Secciones Alternas */
  --lay-card-bg: #152238;       /* Tono Azul para Tarjetas y Superficies */
  --lay-surface: #1C2C47;       /* Tono Azul Elevado para Hover y Badges */
  --lay-border: rgba(255, 255, 255, 0.08);
  --lay-gold: #E8AF21;
  --lay-gold-light: #FFDC10;
  --lay-muted: #94A3B8;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-lay: 35px 0px 35px 0px;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
  --shadow-orange: 0 10px 25px rgba(255, 135, 0, 0.35);
  --shadow-dark: 0 15px 45px rgba(0, 0, 0, 0.45);
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   Base & Typography
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Smooth Scroll con Lenis & Fallback Nativo */
html {
  scroll-behavior: smooth;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  font-family: var(--font-body);
  color: var(--maes-text-body);
  background-color: #FFFFFF;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--maes-charcoal);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: var(--maes-orange);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--maes-orange-hover);
}

/* ==========================================================================
   Preloader Cinemático MAES (Corte Angular Dinámico a -6° con Estela Neón Naranja)
   ========================================================================== */
body:not(.loaded) {
  overflow: hidden !important;
}

.maes-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  pointer-events: all;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: visibility 0s ease 0.95s;
}

/* Telón Principal con Degradado Arquitectónico Profundo */
.preloader-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 40%, #1c2a44 0%, #0c1424 75%, #070c16 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  /* Curva Quintic/Expo limpia y sofisticada: arranca con presencia y se desliza con suavidad */
  transition: transform 0.82s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

/* Resplandor ambiental de fondo */
.preloader-ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 135, 0, 0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

/* Haz Láser Neón en el Borde Inferior que viaja con el telón */
.preloader-bottom-laser {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 135, 0, 0.3) 15%, 
    #FF8700 40%, 
    #FFD269 50%, 
    #FF8700 60%, 
    rgba(255, 135, 0, 0.3) 85%, 
    transparent 100%
  );
  box-shadow: 0 0 20px rgba(255, 135, 0, 0.9), 0 0 45px rgba(255, 182, 0, 0.6);
  z-index: 10;
}

/* Contenido Central del Preloader */
.preloader-content {
  position: relative;
  z-index: 5;
  transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.preloader-logo-wrap {
  position: relative;
  display: inline-block;
  width: 95px;
  height: 95px;
}

.preloader-logo {
  width: 68px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 20px rgba(255, 135, 0, 0.8));
  animation: preloader-pulse 1.8s infinite ease-in-out;
}

.preloader-ring-outer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  border-top-color: var(--maes-orange);
  border-right-color: var(--maes-orange);
  border-radius: 50%;
  animation: preloader-spin 1.4s linear infinite;
}

.preloader-ring-inner {
  position: absolute;
  top: 9px;
  left: 9px;
  right: 9px;
  bottom: 9px;
  border: 2px dashed rgba(255, 182, 0, 0.65);
  border-radius: 50%;
  animation: preloader-spin-reverse 2s linear infinite;
}

.preloader-brand {
  font-family: var(--font-heading);
  color: #FFFFFF;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 4px;
  margin-top: 18px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.preloader-tagline {
  color: var(--maes-orange);
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  font-weight: 700;
}

.preloader-counter-wrap {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #FFFFFF;
  font-size: 1.9rem;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.preloader-percent {
  color: var(--maes-orange);
  font-size: 1.15rem;
  margin-left: 2px;
}

.preloader-loader-bar {
  width: 170px;
  height: 3.5px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  overflow: hidden;
  margin: 14px auto 0 auto;
}

.preloader-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--maes-orange) 0%, #FFB600 100%);
  box-shadow: 0 0 10px rgba(255, 135, 0, 0.8);
  transition: width 0.08s linear;
}

/* ==========================================================================
   Salida Cinemática: Architectural Horizon Lift (Elevación Limpia de Telón)
   ========================================================================== */
body.loaded .preloader-counter-wrap {
  color: var(--maes-orange);
  text-shadow: 0 0 35px rgba(255, 135, 0, 1), 0 0 70px rgba(255, 182, 0, 0.8);
  transform: scale(1.08);
}

/* El contenido se desvanece de forma limpia hacia arriba */
body.loaded .preloader-content {
  opacity: 0;
  transform: translateY(-28px);
}

/* El telón completo se eleva suavemente con una aceleración inicial y frenado perfecto */
body.loaded .preloader-backdrop {
  transform: translateY(-101%);
}

body.loaded .maes-preloader {
  visibility: hidden;
  pointer-events: none;
}

@keyframes preloader-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes preloader-spin-reverse {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

@keyframes preloader-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); filter: drop-shadow(0 0 12px rgba(255,135,0,0.5)); }
  50% { transform: translate(-50%, -50%) scale(1.12); filter: drop-shadow(0 0 28px rgba(255,135,0,0.9)); }
}

/* ==========================================================================
   Cursor Interactivo (Puntos siguiendo al cursor - Estilo sunkuu.com)
   ========================================================================== */
.mouse-cursor {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.15s ease-out;
}

.cursor-inner {
  width: 8px;
  height: 8px;
  background-color: var(--maes-orange);
  box-shadow: 0 0 10px rgba(255, 135, 0, 0.8);
}

.cursor-outer {
  width: 38px;
  height: 38px;
  border: 2px solid var(--maes-orange);
  background-color: rgba(255, 135, 0, 0.08);
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.mouse-cursor.cursor-visible {
  opacity: 1;
}

.mouse-cursor.cursor-hover {
  width: 58px;
  height: 58px;
  background-color: rgba(255, 135, 0, 0.18);
  border-color: #FFB600;
}

.mouse-cursor.cursor-active {
  transform: translate(-50%, -50%) scale(0.7);
  background-color: rgba(255, 135, 0, 0.4);
}

@media (hover: none) and (pointer: coarse) {
  .mouse-cursor {
    display: none !important;
  }
}

/* ==========================================================================
   Header & Topbar
   ========================================================================== */
.topbar {
  background-color: var(--maes-navy);
  color: #CBD5E1;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar a {
  color: #E2E8F0;
}

.topbar a:hover {
  color: var(--maes-orange);
}

.topbar-divider {
  display: inline-block;
  width: 1px;
  height: 12px;
  background-color: rgba(255,255,255,0.2);
  margin: 0 12px;
  vertical-align: middle;
}

/* Main Navbar */
.navbar-main {
  background-color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  padding: 14px 0;
  transition: var(--transition);
}

.navbar-main.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.navbar-brand img {
  height: 68px;
  width: auto;
  transition: var(--transition);
}

.navbar-main.scrolled .navbar-brand img {
  height: 42px;
}

.navbar-nav .nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--maes-navy);
  padding: 8px 16px !important;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--maes-orange) !important;
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  background-color: var(--maes-orange);
  border-radius: 2px;
}

/* Custom Buttons */
.btn-maes-primary {
  background: linear-gradient(135deg, var(--maes-orange) 0%, #FF9E2C 100%);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  border: none;
  box-shadow: 0 4px 15px rgba(255, 135, 0, 0.3);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-maes-primary:hover {
  background: linear-gradient(135deg, var(--maes-orange-hover) 0%, var(--maes-orange) 100%);
  box-shadow: 0 6px 22px rgba(255, 135, 0, 0.45);
  transform: translateY(-2px);
}

.btn-maes-outline {
  background: transparent;
  color: #FFFFFF !important;
  border: 2px solid #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-maes-outline:hover {
  background-color: #FFFFFF;
  color: var(--maes-navy) !important;
  transform: translateY(-2px);
}

.btn-maes-dark {
  background-color: var(--maes-navy);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-maes-dark:hover {
  background-color: var(--maes-navy-dark);
  box-shadow: 0 6px 20px rgba(27, 39, 61, 0.35);
  transform: translateY(-2px);
}

/* Badges */
.badge-maes-orange {
  background: transparent;
  background-color: transparent;
  border: none;
  box-shadow: none;
  color: var(--maes-orange);
  font-family: var(--font-syne);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.badge-maes-dark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 135, 0, 0.42);
  border-radius: 50px;
  padding: 6px 18px 6px 10px;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35),
              inset 0 1px 0 rgba(255, 255, 255, 0.18),
              0 0 18px rgba(255, 135, 0, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

/* Efecto de barrido de luz metálico */
.badge-maes-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-25deg);
  transition: left 0.75s ease;
  pointer-events: none;
}

.badge-maes-dark:hover::before {
  left: 170%;
}

.badge-maes-dark:hover {
  border-color: var(--maes-orange);
  background: rgba(27, 39, 61, 0.92);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45), 0 0 28px rgba(255, 135, 0, 0.45);
  transform: translateY(-2px);
  color: #FFFFFF;
}

/* Punto de estado activo con pulso radar */
.badge-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--maes-orange);
  box-shadow: 0 0 8px var(--maes-orange);
  animation: badge-dot-pulse 1.8s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes badge-dot-pulse {
  0%, 100% {
    transform: scale(0.9);
    opacity: 0.7;
    box-shadow: 0 0 4px var(--maes-orange);
  }
  50% {
    transform: scale(1.35);
    opacity: 1;
    box-shadow: 0 0 14px rgba(255, 135, 0, 0.95), 0 0 22px rgba(255, 182, 0, 0.6);
  }
}

/* Chip circular iluminado para el icono temático del badge */
.badge-maes-dark i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 135, 0, 0.3) 0%, rgba(255, 182, 0, 0.15) 100%);
  border: 1px solid rgba(255, 135, 0, 0.5);
  color: #FFB600 !important;
  font-size: 0.82rem;
  box-shadow: 0 0 10px rgba(255, 135, 0, 0.35);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease;
}

.badge-maes-dark:hover i {
  transform: scale(1.12) rotate(6deg);
  background: linear-gradient(135deg, var(--maes-orange) 0%, #FF9E2C 100%);
  color: #FFFFFF !important;
  box-shadow: 0 0 16px rgba(255, 135, 0, 0.85);
}

/* ==========================================================================
   Hero Slider Section (Carousel Interactivo)
   ========================================================================== */
.hero-slider-section {
  position: relative;
  background-color: var(--maes-navy-dark);
  overflow: hidden;
}

.hero-slide-item {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 130px 0 100px 0;
}

.hero-slide-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(27, 39, 61, 0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.hero-title span.highlight {
  color: var(--maes-orange);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #E2E8F0;
  max-width: 650px;
  margin-bottom: 36px;
  font-weight: 400;
}

/* ==========================================================================
   Hero Slider 3D (Swiper Creative Effect con Profundidad 3D)
   ========================================================================== */
.hero-slider-section {
  position: relative;
  overflow: hidden;
  background-color: var(--maes-navy-dark);
}

.hero-swiper-3d {
  width: 100%;
  position: relative;
  perspective: 1400px;
  transform: scale(1);
  filter: blur(0px);
  transition: transform 0.95s cubic-bezier(0.16, 1, 0.3, 1), filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, filter;
}

body:not(.loaded) .hero-swiper-3d {
  transform: scale(1.05);
  filter: blur(4px);
}

.hero-swiper-3d .swiper-slide {
  overflow: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

/* Botones de Navegación Swiper 3D Glassmorphism */
.hero-swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  font-size: 1.4rem;
  z-index: 25;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.hero-swiper-prev {
  left: 35px;
}

.hero-swiper-next {
  right: 35px;
}

.hero-swiper-btn:hover {
  background: var(--maes-orange);
  border-color: var(--maes-orange);
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px var(--maes-orange-glow);
}

.hero-swiper-btn:active {
  transform: translateY(-50%) scale(0.95);
}

/* Paginación Dinámica Swiper 3D */
.hero-swiper-pagination {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 25;
}

.hero-3d-bullet {
  display: inline-block;
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-3d-bullet:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hero-3d-bullet-active {
  background: var(--maes-orange);
  width: 64px;
  box-shadow: 0 0 14px rgba(255, 135, 0, 0.85);
}

/* Compatibilidad con Carousel clásico */
.carousel-control-prev,
.carousel-control-next {
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: var(--transition);
  z-index: 10;
}

.carousel-control-prev {
  left: 25px;
}

.carousel-control-next {
  right: 25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--maes-orange);
  opacity: 1;
  box-shadow: 0 4px 15px var(--maes-orange-glow);
}

.hero-carousel-indicators {
  bottom: 20px;
  z-index: 11;
}

.hero-carousel-indicators button {
  width: 45px !important;
  height: 4px !important;
  border-radius: 2px;
  border: none !important;
  background-color: rgba(255, 255, 255, 0.4) !important;
  transition: var(--transition);
}

.hero-carousel-indicators button.active {
  background-color: var(--maes-orange) !important;
  width: 65px !important;
}

/* Stats Box */
.hero-stats-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  z-index: 2;
}

.hero-stats-box .stat-item {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stats-box .stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--maes-orange);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: #CBD5E1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* ==========================================================================
   Hero Entrance Animation Post-Preloader (Animación de Entrada de Elementos)
   ========================================================================== */
.hero-content .badge-maes-dark,
.hero-content .hero-title,
.hero-content .hero-subtitle,
.hero-content .hero-cta-group {
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}

.hero-stats-box {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.hero-swiper-btn {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.hero-swiper-pagination {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Entrada inicial de elementos en el slide activo cuando se retira el preloader */
body.loaded .hero-swiper-3d .swiper-slide-active .hero-content .badge-maes-dark {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}

body.loaded .hero-swiper-3d .swiper-slide-active .hero-content .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.5s, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

body.loaded .hero-swiper-3d .swiper-slide-active .hero-content .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.65s, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.65s;
}

body.loaded .hero-swiper-3d .swiper-slide-active .hero-content .hero-cta-group {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.8s, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.8s;
}

body.loaded .hero-stats-box {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.95s;
}

body.loaded .hero-swiper-btn {
  opacity: 1;
  transition-delay: 1.05s;
}

body.loaded .hero-swiper-pagination {
  opacity: 1;
  transition-delay: 1.05s;
}

/* Transición fluida al navegar entre diapositivas en Swiper */
body.loaded .hero-swiper-3d .swiper-slide:not(.swiper-slide-active) .hero-content .badge-maes-dark,
body.loaded .hero-swiper-3d .swiper-slide:not(.swiper-slide-active) .hero-content .hero-title,
body.loaded .hero-swiper-3d .swiper-slide:not(.swiper-slide-active) .hero-content .hero-subtitle,
body.loaded .hero-swiper-3d .swiper-slide:not(.swiper-slide-active) .hero-content .hero-cta-group {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* ==========================================================================
   Page Header Arquitectónico (Páginas Internas)
   ========================================================================== */
.page-header {
  position: relative;
  background-color: #0A101D;
  background-image: 
    radial-gradient(circle at 85% 25%, rgba(255, 135, 0, 0.09) 0%, transparent 55%),
    radial-gradient(circle at 15% 75%, rgba(232, 175, 33, 0.07) 0%, transparent 45%),
    linear-gradient(180deg, #070B14 0%, #0E1726 50%, #0A101D 100%);
  color: #FFFFFF;
  padding: 175px 0 90px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Video de Fondo en Page Header (Mismo video del Hero) */
.page-header-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.page-header-video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 Aspect Ratio */
  min-height: 100%;
  min-width: 177.77vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.page-header-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 35% 50%, 
    rgba(10, 16, 29, 0.72) 0%, 
    rgba(10, 16, 29, 0.86) 60%, 
    rgba(7, 11, 20, 0.95) 100%
  );
  z-index: 2;
}

/* Arte Arquitectónico Wireframe en el Fondo Derecho */
.page-header::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 52vw;
  max-width: 750px;
  height: 100%;
  background-image: url('../../img/bg/2.png');
  background-repeat: no-repeat;
  background-position: right 45%;
  background-size: contain;
  mix-blend-mode: screen;
  opacity: 0.17;
  pointer-events: none;
  z-index: 3;
  transition: opacity 0.5s ease;
}

/* Línea de Acento Técnico Inferior */
.page-header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 135, 0, 0.5) 25%, 
    rgba(232, 175, 33, 0.7) 65%, 
    transparent 100%
  );
  z-index: 4;
}

.page-header .container {
  position: relative;
  z-index: 5;
}

/* Badge de Cabecera en Page Header (Simple y Minimalista) */
.page-header .badge-maes-orange {
  background: transparent;
  background-color: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #FF8700;
  font-family: var(--font-syne);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-header .badge-maes-orange i {
  color: #FF8700;
}

/* Título Monumental de Página */
.page-header h1 {
  font-family: var(--font-syne);
  font-size: 3.1rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.6px;
  margin-top: 6px;
  margin-bottom: 12px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

/* Bajada de Texto / Lead */
.page-header .lead {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 620px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* Cápsula de Breadcrumb Arquitectónica con Glassmorphism */
.breadcrumb-maes {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding: 9px 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  font-size: 0.82rem;
  font-family: var(--font-syne);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.breadcrumb-maes .breadcrumb-item {
  display: inline-flex;
  align-items: center;
}

.breadcrumb-maes .breadcrumb-item + .breadcrumb-item::before {
  color: var(--lay-gold);
  content: "›";
  font-size: 1.25rem;
  line-height: 1;
  padding: 0 10px;
  opacity: 0.85;
}

.breadcrumb-maes a {
  color: #CBD5E1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-maes a:hover {
  color: #FFFFFF;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.breadcrumb-maes .active {
  color: #FF8700;
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .page-header {
    padding: 135px 0 65px 0;
  }
  .page-header::after {
    width: 80vw;
    right: -20vw;
    opacity: 0.10;
  }
  .page-header h1 {
    font-size: 2.35rem;
  }
  .page-header .lead {
    font-size: 0.98rem;
  }
  .breadcrumb-maes {
    margin-top: 14px;
    padding: 7px 18px;
    font-size: 0.78rem;
  }
}

@media (max-width: 575.98px) {
  .page-header {
    padding: 120px 0 50px 0;
  }
  .page-header h1 {
    font-size: 1.95rem;
  }
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-padding {
  padding: 90px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

.section-header {
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--maes-navy);
  margin-top: 12px;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--maes-text-muted);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================================
   Services Cards
   ========================================================================== */
.service-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--maes-gray-border);
  box-shadow: var(--shadow-sm);
  padding: 35px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: transparent;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 135, 0, 0.4);
}

.service-card:hover::before {
  background: linear-gradient(90deg, var(--maes-orange) 0%, #FF9E2C 100%);
}

.service-icon-wrapper {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-sm);
  background-color: var(--maes-orange-light);
  color: var(--maes-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 22px;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
  background-color: var(--maes-orange);
  color: #FFFFFF;
  transform: scale(1.05);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--maes-navy);
}

.service-text {
  color: var(--maes-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--maes-orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link i {
  transition: transform 0.2s ease;
}

.service-link:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   Methodology (Las 5 Fases MAES)
   ========================================================================== */
.methodology-step-card {
  background: #FFFFFF;
  border: 1px solid var(--maes-gray-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.methodology-step-card:hover {
  transform: translateY(-6px);
  border-color: var(--maes-orange);
  box-shadow: var(--shadow-md);
}

.methodology-step-card.featured {
  border-left: 6px solid var(--maes-orange);
}

.step-num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maes-orange) 0%, #FF9E2C 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 18px;
  box-shadow: 0 4px 15px var(--maes-orange-glow);
}

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--maes-navy);
  margin-bottom: 14px;
}

.step-desc {
  font-size: 0.98rem;
  color: var(--maes-text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   Projects Gallery & Filters
   ========================================================================== */
.filter-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  background-color: #FFFFFF;
  color: var(--maes-navy);
  border: 1px solid var(--maes-gray-border);
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--maes-orange);
  color: #FFFFFF;
  border-color: var(--maes-orange);
  box-shadow: var(--shadow-orange);
}

.project-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--maes-gray-border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 135, 0, 0.4);
}

.project-img-wrapper {
  position: relative;
  height: 260px;
  overflow: hidden;
  background-color: var(--maes-dark);
}

.project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.project-card:hover .project-img-wrapper img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-zoom-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--maes-orange);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transform: scale(0.8);
  transition: var(--transition);
  border: none;
}

.project-card:hover .project-zoom-btn {
  transform: scale(1);
}

.project-badge-cat {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(27, 39, 61, 0.85);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.project-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--maes-navy);
  margin-bottom: 8px;
}

.project-client {
  font-size: 0.85rem;
  color: var(--maes-orange);
  font-weight: 600;
  margin-bottom: 12px;
}

.project-desc {
  font-size: 0.9rem;
  color: var(--maes-text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
  flex-grow: 1;
}

.project-footer {
  border-top: 1px solid var(--maes-gray-border);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--maes-text-muted);
}

/* ==========================================================================
   Pillars of Value (Por qué elegirnos)
   ========================================================================== */
.pillar-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--maes-gray-border);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--maes-orange);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background-color: var(--maes-orange-light);
  color: var(--maes-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  transition: var(--transition);
}

.pillar-card:hover .pillar-icon {
  background-color: var(--maes-orange);
  color: #FFFFFF;
}

.pillar-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--maes-navy);
  margin-bottom: 10px;
}

.pillar-text {
  font-size: 0.9rem;
  color: var(--maes-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Clients Carousel / Logo Grid
   ========================================================================== */
.client-logo-box {
  background: #FFFFFF;
  border: 1px solid var(--maes-gray-border);
  border-radius: var(--radius-sm);
  height: 100px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.client-logo-box img {
  max-height: 55px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.client-logo-box:hover {
  border-color: var(--maes-orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.client-logo-box:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ==========================================================================
   Home Clients Showcase Mejorado (Grilla Interactiva, Filtros y Confianza)
   ========================================================================== */
.home-clients-section {
  background-color: #F8FAFC;
  position: relative;
}

.client-filter-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 35px;
}

.client-filter-btn {
  background-color: #FFFFFF;
  color: var(--maes-navy);
  border: 1px solid var(--maes-gray-border);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.client-filter-btn:hover,
.client-filter-btn.active {
  background-color: var(--maes-orange);
  color: #FFFFFF;
  border-color: var(--maes-orange);
  box-shadow: 0 4px 15px var(--maes-orange-glow);
}

.home-client-card {
  background: #FFFFFF;
  border: 1px solid var(--maes-gray-border);
  border-radius: var(--radius-md);
  padding: 22px 18px 18px 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-client-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3.5px;
  background: linear-gradient(90deg, var(--maes-orange) 0%, #FFB600 100%);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.home-client-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 135, 0, 0.4);
}

.home-client-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.home-client-highlight {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--maes-orange);
  background-color: var(--maes-orange-light);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
  text-transform: uppercase;
  max-width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-client-logo-wrap {
  height: 72px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.home-client-logo-wrap img {
  max-height: 54px;
  max-width: 82%;
  object-fit: contain;
  filter: grayscale(15%);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.home-client-card:hover .home-client-logo-wrap img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.home-client-info {
  margin-top: 12px;
  width: 100%;
  border-top: 1px solid #F1F5F9;
  padding-top: 10px;
}

.home-client-name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--maes-navy);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-client-category {
  font-size: 0.78rem;
  color: var(--maes-text-muted);
  font-weight: 500;
  display: block;
}

/* Trust Banner Below Clients */
.home-clients-trust-bar {
  background: #FFFFFF;
  border: 1px solid var(--maes-gray-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.trust-item-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--maes-orange-light);
  color: var(--maes-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.trust-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--maes-navy);
  margin-bottom: 2px;
}

.trust-item-desc {
  font-size: 0.82rem;
  color: var(--maes-text-muted);
  margin-bottom: 0;
  line-height: 1.4;
}

/* ==========================================================================
   Quotation / Contact CTA Section
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--maes-navy) 0%, #0B111E 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner::before {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 135, 0, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1.1rem;
  color: #CBD5E1;
  max-width: 580px;
}

/* Contact Form */
.contact-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--maes-gray-border);
  box-shadow: var(--shadow-md);
  padding: 40px;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--maes-navy);
  margin-bottom: 6px;
}

.form-control, .form-select {
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--maes-charcoal);
  transition: var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--maes-orange);
  box-shadow: 0 0 0 4px var(--maes-orange-glow);
  outline: none;
}

/* Info Box */
.info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--maes-orange-light);
  color: var(--maes-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.info-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--maes-navy);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.info-val {
  font-size: 0.95rem;
  color: var(--maes-text-muted);
  line-height: 1.5;
}

.info-val a {
  color: var(--maes-charcoal);
}

.info-val a:hover {
  color: var(--maes-orange);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-main {
  background-color: var(--maes-navy-dark);
  color: #94A3B8;
  padding: 80px 0 30px 0;
  border-top: 3px solid var(--lay-gold);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: var(--lay-gold);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--maes-orange);
  transform: translateX(4px);
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: var(--transition);
}

.footer-social-link:hover {
  background-color: var(--maes-orange);
  color: #FFFFFF;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
  padding-top: 25px;
  font-size: 0.85rem;
}

/* ==========================================================================
   Widget Flotante Interactivo de WhatsApp Mejorado
   ========================================================================== */
.whatsapp-widget-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.floating-whatsapp-btn {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25D366 0%, #1EBE5B 100%);
  color: #FFFFFF;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  outline: none;
  animation: pulse-whatsapp 2.5s infinite;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: #EF4444;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
}

.whatsapp-popup-card {
  width: 320px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
  border: 1px solid var(--maes-gray-border);
  margin-bottom: 16px;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
}

.whatsapp-popup-card.show {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.whatsapp-popup-header {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
  color: #FFFFFF;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.whatsapp-avatar-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFFFFF;
  padding: 4px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-avatar-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.whatsapp-online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 11px;
  height: 11px;
  background-color: #25D366;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
}

.whatsapp-agent-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
}

.whatsapp-agent-status {
  font-size: 0.75rem;
  opacity: 0.85;
}

.whatsapp-close-btn {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 1.4rem;
  line-height: 1;
  opacity: 0.8;
  cursor: pointer;
  padding: 0;
}

.whatsapp-close-btn:hover {
  opacity: 1;
}

.whatsapp-popup-body {
  padding: 16px;
  background: #ECE5DD;
  background-image: radial-gradient(rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 16px 16px;
}

.whatsapp-chat-bubble {
  background: #FFFFFF;
  padding: 12px 14px;
  border-radius: 10px 10px 10px 0;
  font-size: 0.88rem;
  color: #111827;
  line-height: 1.45;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  position: relative;
}

.whatsapp-chat-time {
  display: block;
  text-align: right;
  font-size: 0.7rem;
  color: #6B7280;
  margin-top: 4px;
}

.whatsapp-popup-footer {
  padding: 12px 16px;
  background: #FFFFFF;
  border-top: 1px solid var(--maes-gray-border);
}

.whatsapp-send-btn {
  background: #25D366;
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.whatsapp-send-btn:hover {
  background: #1EBE5B;
  transform: translateY(-2px);
}

@keyframes pulse-whatsapp {
  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); }
}

/* ==========================================================================
   Responsive Utilities
   ========================================================================== */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-slide-item {
    min-height: 70vh;
    padding: 100px 0 70px 0;
  }
  .hero-stats-box .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .hero-stats-box .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .cta-banner {
    padding: 40px 25px;
  }
  .cta-title {
    font-size: 1.7rem;
  }
  .carousel-control-prev,
  .carousel-control-next,
  .hero-swiper-btn {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .topbar {
    display: none;
  }
  .whatsapp-widget-container {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-popup-card {
    width: 290px;
  }
  .floating-whatsapp-btn {
    width: 54px;
    height: 54px;
    font-size: 1.8rem;
  }
}
/* ==========================================================================
   ESTRUCTURA Y COMPONENTES ESTILO GRUPO LAY (ARQUITECTURA CONTEMPORÁNEA)
   ========================================================================== */

/* Fondo Dark Global para Secciones Arquitectónicas */
.bg-lay-dark {
  background-color: var(--lay-dark) !important;
  color: #FFFFFF;
}

.bg-lay-charcoal {
  background-color: var(--lay-charcoal) !important;
  color: #FFFFFF;
}

.bg-lay-card {
  background-color: var(--lay-card-bg) !important;
  color: #FFFFFF;
}

/* Badge Estilo Grupo Lay */
.badge-lay {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--lay-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--lay-gold);
  color: var(--lay-gold);
  font-family: var(--font-syne);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 4px;
}

/* Título de Sección Arquitectónico Syne */
.section-title-lay {
  font-family: var(--font-syne);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.section-title-lay .gold-word {
  color: var(--lay-gold);
}

.section-title-lay.text-dark-contrast {
  color: var(--lay-dark);
}

/* ==========================================================================
   Sección 3: Los 4 Pilares Metodológicos (Fondo Naranja Vibrante #fe8600)
   ========================================================================== */
.lay-pillars-section {
  background-color: #fe8600;
  padding: 150px 0;
  position: relative;
  border-bottom: 0px solid rgba(0, 0, 0, 0.08);
}

.lay-pillars-badge {
  display: inline-block;
  font-family: var(--font-syne);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #0A101D;
  background: rgba(255, 215, 0, 0.67);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.lay-pillars-heading {
  font-family: var(--font-syne);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #0A101D;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.lay-pillars-subheading {
  font-size: 1.05rem;
  color: #172133;
  max-width: 680px;
  margin: 0 auto;
  font-weight: 500;
  line-height: 1.6;
}

.lay-pillar-col {
  padding: 35px 28px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(10, 16, 29, 0.14);
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 360px;
  min-height: 360px;
  cursor: pointer;
  overflow: hidden;
}

.lay-pillar-col:hover {
  background: #0A101D;
  border-color: #0A101D;
  transform: translateY(-8px);
  box-shadow: 0 20px 42px rgba(10, 16, 29, 0.32);
}

.lay-pillar-col:hover .lay-pillar-title {
  color: #FFFFFF;
}

.lay-pillar-icon {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: rgba(10, 16, 29, 0.12);
  color: #0A101D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  margin-bottom: 20px;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.lay-pillar-col:hover .lay-pillar-icon {
  background: #fe8600;
  color: #0A101D;
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 10px 25px rgba(254, 134, 0, 0.4);
}

.lay-pillar-title {
  font-family: var(--font-syne);
  font-size: 1.65rem;
  font-weight: 800;
  color: #0A101D;
  line-height: 1.25;
  margin-bottom: 0;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  width: 100%;
}

/* Contenedor colapsable con CSS Grid para animación fluida de altura */
.lay-pillar-desc-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              margin-top 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 0;
  width: 100%;
}

.lay-pillar-desc {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.93rem;
  font-weight: 450;
  line-height: 1.65;
  margin-bottom: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Estado Hover: Se despliega la descripción centrada con fade y slide-up */
.lay-pillar-col:hover .lay-pillar-desc-wrap {
  grid-template-rows: 1fr;
  margin-top: 16px;
}

.lay-pillar-col:hover .lay-pillar-desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

/* ==========================================================================
   Sección 4: Manifiesto Asimétrico (Sobre Nosotros Estilo Grupo Lay - Fondo Blanco)
   ========================================================================== */
.lay-about-section {
  background-color: #FFFFFF;
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}

.lay-about-section .badge-lay {
  background-color: rgba(10, 16, 29, 0.06);
  border: 1px solid rgba(10, 16, 29, 0.1);
  border-left: 3px solid var(--lay-gold);
  color: #0A101D;
  font-weight: 800;
}

.lay-about-section .section-title-lay {
  color: #0A101D;
}

.lay-about-section .section-title-lay .gold-word {
  color: var(--lay-gold);
}

.lay-about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lay);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(10, 16, 29, 0.14);
  border: 1px solid rgba(10, 16, 29, 0.08);
}

.lay-about-image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lay);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lay-about-image-wrapper:hover img {
  transform: scale(1.03);
}

.lay-badge-float {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(10, 16, 29, 0.94);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 4px solid var(--lay-gold);
  border-radius: 12px;
  padding: 16px 22px;
  color: #FFFFFF;
  box-shadow: 0 15px 35px rgba(10, 16, 29, 0.35);
}

.lay-badge-float .number {
  font-family: var(--font-syne);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--lay-gold);
  line-height: 1;
}

/* ==========================================================================
   Sección 5: Confían en nuestra ejecución técnica (Marquee & Showcase de Alianzas)
   ========================================================================== */
.lay-brands-section {
  background-color: var(--lay-charcoal);
  padding: 110px 0 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lay-brands-header {
  margin-bottom: 50px;
}

.lay-brands-title {
  font-family: var(--font-syne);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 12px;
}

.lay-brands-subtitle {
  color: #94A3B8;
  font-size: 1rem;
  max-width: 580px;
  line-height: 1.6;
}

/* Tira de Marcas Continua / Marquee */
.lay-marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 15px 0;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.lay-marquee-track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: lay-marquee-scroll 32s linear infinite;
}

.lay-marquee-container:hover .lay-marquee-track {
  animation-play-state: paused;
}

@keyframes lay-marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.lay-brand-card {
  width: 210px;
  height: 105px;
  background: rgba(21, 34, 56, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.lay-brand-card:hover {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--lay-gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.lay-brand-card .lay-brand-img {
  max-height: 52px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%) brightness(200%);
  opacity: 0.55;
  transition: all 0.35s ease;
}

.lay-brand-card:hover .lay-brand-img {
  filter: grayscale(0%) brightness(100%);
  opacity: 1;
  transform: scale(1.06);
}

/* Barra de Respaldo Técnico Inferior */
.lay-brands-metrics {
  margin-top: 55px;
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.lay-metric-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #E2E8F0;
  font-size: 0.9rem;
  font-weight: 500;
}

.lay-metric-pill i {
  color: var(--lay-gold);
  font-size: 1.25rem;
}

/* ==========================================================================
   Sección 6: Showcase de Proyectos en Gran Formato (Portafolio Lay - Fondo Blanco)
   ========================================================================== */
.lay-portfolio-section {
  background-color: #FFFFFF;
  padding: 150px 0;
  position: relative;
}

.lay-portfolio-section .badge-lay {
  background-color: rgba(10, 16, 29, 0.06);
  border: 1px solid rgba(10, 16, 29, 0.1);
  border-left: 3px solid var(--lay-gold);
  color: #0A101D;
  font-weight: 800;
}

.lay-portfolio-section .section-title-lay {
  color: #0A101D;
}

.lay-portfolio-section .section-title-lay .gold-word {
  color: var(--lay-gold);
}

.lay-btn-portfolio-all {
  font-family: var(--font-syne);
  font-weight: 700;
  border: 1px solid rgba(10, 16, 29, 0.3) !important;
  color: #0A101D !important;
  border-radius: 8px;
  background-color: transparent;
  transition: all 0.3s ease;
}

.lay-btn-portfolio-all:hover,
.lay-btn-portfolio-all:focus,
.lay-portfolio-section .btn-outline-dark:hover {
  color: #FFFFFF !important;
  background-color: #0A101D !important;
  border-color: #0A101D !important;
}

.lay-btn-portfolio-all:hover i,
.lay-btn-portfolio-all:focus i,
.lay-portfolio-section .btn-outline-dark:hover i {
  color: #FFFFFF !important;
}

.lay-project-card {
  position: relative;
  height: 520px;
  border-radius: 0;
  overflow: hidden;
  border: none;
  box-shadow: 0 14px 36px rgba(10, 16, 29, 0.1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  background-color: #0A101D;
}

.lay-project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(10, 16, 29, 0.28);
}

/* Imagen de Fondo Completa */
.lay-project-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.5s ease;
  z-index: 1;
}

.lay-project-card:hover .lay-project-bg-img {
  transform: scale(1.08);
}

/* Capa de Gradiente Cinematográfico */
.lay-project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 16, 29, 0.15) 0%,
    rgba(10, 16, 29, 0.45) 45%,
    rgba(10, 16, 29, 0.94) 85%,
    #0A101D 100%
  );
  transition: opacity 0.4s ease, background 0.4s ease;
  z-index: 2;
}

.lay-project-card:hover .lay-project-overlay {
  background: linear-gradient(
    180deg,
    rgba(10, 16, 29, 0.25) 0%,
    rgba(10, 16, 29, 0.75) 40%,
    rgba(10, 16, 29, 0.96) 80%,
    #0A101D 100%
  );
}

/* Barra Superior Flotante */
.lay-project-top {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
  pointer-events: none;
}

.lay-project-top > * {
  pointer-events: auto;
}

.lay-project-badge {
  display: inline-block;
  background: rgba(10, 16, 29, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--lay-gold);
  font-family: var(--font-syne);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 0;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.lay-project-zoom-btn {
  width: 36px;
  height: 36px;
  background: rgba(10, 16, 29, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  opacity: 0.85;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lay-project-card:hover .lay-project-zoom-btn {
  opacity: 1;
}

.lay-project-zoom-btn:hover {
  background: var(--lay-gold);
  color: #0A101D;
  transform: scale(1.1);
}

/* Contenido Inferior de la Tarjeta */
.lay-project-content {
  position: relative;
  z-index: 3;
  padding: 26px;
  width: 100%;
}

.lay-project-client {
  color: var(--lay-gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 6px;
  display: inline-block;
}

.lay-project-title {
  font-family: var(--font-syne);
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease;
}

.lay-project-card:hover .lay-project-title {
  color: #FFFFFF;
}

/* Contenedor colapsable con CSS Grid para animación fluida de altura */
.lay-project-desc-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              margin-top 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 0;
  width: 100%;
}

.lay-project-desc-inner {
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.lay-project-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.lay-project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.lay-project-year {
  color: var(--lay-gold);
  font-weight: 800;
}

/* Estado Hover: Despliegue de la descripción y metadatos */
.lay-project-card:hover .lay-project-desc-wrap {
  grid-template-rows: 1fr;
  margin-top: 14px;
}

.lay-project-card:hover .lay-project-desc-inner {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.06s;
}

@media (max-width: 991.98px) {
  .lay-project-card {
    height: 460px;
  }
}

@media (max-width: 575.98px) {
  .lay-project-card {
    height: 400px;
  }
  .lay-project-content {
    padding: 20px;
  }
}

/* ==========================================================================
   Sección 7: Servicios Editoriales en Fondo Azul Petróleo
   ========================================================================== */
.lay-services-section {
  background-color: var(--lay-charcoal);
  padding: 150px 0;
  position: relative;
}

.lay-service-item {
  background: var(--lay-card-bg);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.lay-service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--lay-gold);
  transition: width 0.35s ease;
}

.lay-service-item:hover {
  background: #192A44;
  transform: translateY(-6px);
  border-color: rgba(232, 175, 33, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

.lay-service-item:hover::before {
  width: 100%;
}

.lay-service-num {
  font-family: var(--font-syne);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.lay-service-item:hover .lay-service-num {
  color: var(--lay-gold);
}

.lay-service-title {
  font-family: var(--font-syne);
  font-size: 1.28rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.lay-service-desc {
  color: #A0A0A0;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.lay-service-link {
  color: var(--lay-gold);
  font-family: var(--font-syne);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lay-service-link:hover {
  color: #FFFFFF;
  gap: 10px;
}

/* ==========================================================================
   Sección: Nuestros Servicios en Portada y Catálogo (Fondo Azul Marino #0E1726)
   ========================================================================== */
.lay-home-services-section {
  background-color: #0E1726;
  padding: 130px 0 140px 0;
  position: relative;
  overflow: hidden;
}

.lay-page-services-section {
  background-color: #0E1726;
  padding: 85px 0 115px 0;
  position: relative;
  overflow: hidden;
}

.lay-home-services-subtag {
  display: block;
  font-family: var(--font-syne);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--maes-orange);
}

.lay-home-services-heading {
  font-family: var(--font-syne);
  font-size: 2.3rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.lay-home-services-heading .gold-word {
  color: var(--lay-gold);
}

.lay-home-services-section .btn-minimal-link {
  color: #FFFFFF;
  border-bottom: 2px solid var(--lay-gold);
}

.lay-home-services-section .btn-minimal-link:hover {
  color: var(--maes-orange);
  border-bottom-color: var(--maes-orange);
}

/* Botón Amarillo "Ver todos" */
.lay-srv-btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #FFC700;
  color: #0A101D;
  font-family: var(--font-syne);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 11px 24px;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255, 199, 0, 0.25);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lay-srv-btn-yellow:hover {
  background-color: #FFFFFF;
  color: #0A101D;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

.lay-srv-btn-yellow i {
  font-size: 0.92rem;
  transition: transform 0.3s ease;
}

.lay-srv-btn-yellow:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   Carrusel de Servicios de Ancho Completo (Full-Width Swiper)
   ========================================================================== */
.lay-srv-nav-btns {
  display: flex;
  gap: 8px;
}

.lay-srv-prev-btn,
.lay-srv-next-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lay-srv-prev-btn:hover,
.lay-srv-next-btn:hover {
  background: #FF8700;
  border-color: #FF8700;
  color: #0A101D;
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(255, 135, 0, 0.35);
}

.lay-services-fullwidth-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0 15px 0;
}

.lay-services-swiper {
  width: 100%;
  padding: 20px 24px 45px 24px !important;
  overflow: visible !important;
}

.lay-services-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.lay-srv-swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
}

.lay-srv-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.25);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.35s ease;
  cursor: pointer;
}

.lay-srv-swiper-pagination .swiper-pagination-bullet-active {
  width: 32px;
  border-radius: 10px;
  background: #FF8700;
  box-shadow: 0 2px 8px rgba(255, 135, 0, 0.5);
}

/* ==========================================================================
   Tarjetas de Servicio: Imagen Completa, Título Blanco Grande y Hover Revelador
   ========================================================================== */
.lay-srv-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 480px;
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  border: none;
  background-color: #0A101D;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.lay-srv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.65);
}

/* Imagen de Fondo Completa que Ocupa Toda el Área */
.lay-srv-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.5s ease;
}

.lay-srv-card:hover .lay-srv-bg-img {
  transform: scale(1.1);
  filter: brightness(0.85);
}

/* Capa de Gradiente Cinematográfico para Contraste */
.lay-srv-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 16, 29, 0.12) 0%,
    rgba(10, 16, 29, 0.45) 45%,
    rgba(10, 16, 29, 0.92) 85%,
    #0A101D 100%
  );
  transition: background 0.45s ease;
  z-index: 2;
}

.lay-srv-card:hover .lay-srv-overlay {
  background: linear-gradient(
    180deg,
    rgba(10, 16, 29, 0.25) 0%,
    rgba(10, 16, 29, 0.72) 40%,
    rgba(10, 16, 29, 0.96) 80%,
    #0A101D 100%
  );
}

/* Contenido Inferior de la Tarjeta */
.lay-srv-content {
  position: relative;
  z-index: 3;
  padding: 30px 26px;
  width: 100%;
}

/* Título de Servicio: Blanco, Grande y Elegante */
.lay-srv-title {
  font-family: var(--font-syne);
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
  transition: color 0.3s ease;
}

.lay-srv-card:hover .lay-srv-title {
  color: #FFFFFF;
}

/* Envoltura Desplegable con CSS Grid para Animación Muy Dinámica */
.lay-srv-hover-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              margin-top 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 0;
  width: 100%;
}

.lay-srv-card:hover .lay-srv-hover-wrap {
  grid-template-rows: 1fr;
  margin-top: 14px;
}

.lay-srv-hover-inner {
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.lay-srv-card:hover .lay-srv-hover-inner {
  opacity: 1;
  transform: translateY(0);
}

/* Descripción del Servicio */
.lay-srv-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.62;
  margin-bottom: 18px;
  font-weight: 400;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* Botón "Más Información" */
.lay-srv-btn-wrap {
  display: flex;
  align-items: center;
}

.lay-srv-btn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #FF8700;
  color: #0A101D;
  font-family: var(--font-syne);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 11px 24px;
  border-radius: 40px;
  box-shadow: 0 6px 18px rgba(255, 135, 0, 0.35);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lay-srv-btn-more i {
  font-size: 0.9rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lay-srv-card:hover .lay-srv-btn-more {
  background-color: #FFFFFF;
  color: #0A101D;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.28);
}

.lay-srv-card:hover .lay-srv-btn-more i {
  transform: translateX(5px);
}

@media (max-width: 991.98px) {
  .lay-home-services-section {
    padding: 95px 0 100px 0;
  }
  .lay-home-services-heading {
    font-size: 1.95rem;
  }
  .lay-srv-card {
    height: 440px;
  }
  .lay-srv-content {
    padding: 24px 20px;
  }
  .lay-srv-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 575.98px) {
  .lay-srv-card {
    height: 420px;
  }
  .lay-srv-title {
    font-size: 1.22rem;
  }
}

/* ==========================================================================
   Sección: Nuestra Metodología Minimalista (Home)
   ========================================================================== */
.lay-method-col-sticky {
  position: relative;
}

@media (min-width: 992px) {
  .lay-method-col-sticky {
    align-self: stretch;
  }

  .lay-method-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    z-index: 10;
  }
}

.lay-method-lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.8;
}

.lay-method-metrics {
  display: flex;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lay-method-metric-item {
  display: flex;
  flex-direction: column;
}

.lay-method-metric-item .metric-val {
  font-family: var(--font-syne);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--lay-gold);
  line-height: 1.1;
}

.lay-method-metric-item .metric-lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  margin-top: 4px;
}

.btn-minimal-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
  font-family: var(--font-syne);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--lay-gold);
  transition: all 0.3s ease;
}

.btn-minimal-link:hover {
  color: var(--lay-gold);
  gap: 18px;
}

/* Lista de Pasos con Hairlines Minimalistas */
.lay-method-steps {
  display: flex;
  flex-direction: column;
}

.lay-step-item {
  display: flex;
  gap: 32px;
  padding: 36px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.lay-step-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lay-step-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--lay-gold);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lay-step-item:hover {
  background: rgba(255, 255, 255, 0.025);
  padding-left: 36px;
}

.lay-step-item:hover::before {
  width: 3px;
}

.lay-step-col-num {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 55px;
}

.lay-step-digit {
  font-family: var(--font-syne);
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.35s ease;
}

.lay-step-item:hover .lay-step-digit {
  color: var(--lay-gold);
}

.lay-step-col-content {
  flex-grow: 1;
}

.lay-step-category {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--lay-gold);
  margin-bottom: 8px;
}

.lay-step-heading {
  font-family: var(--font-syne);
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  line-height: 1.35;
}

.lay-step-paragraph {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .lay-step-item {
    flex-direction: column;
    gap: 14px;
    padding: 28px 16px;
  }
  .lay-step-col-num {
    align-items: flex-start;
  }
  .lay-step-digit {
    font-size: 2rem;
  }
  .lay-method-metrics {
    flex-wrap: wrap;
    gap: 18px;
  }
}


/* ==========================================================================
   Sección 8: Rigor Normativo & Homologación de Malls
   ========================================================================== */
.lay-trust-section {
  background-color: var(--lay-dark);
  padding: 150px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lay-trust-card {
  background: rgba(21, 34, 56, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.lay-trust-card:hover {
  background: rgba(26, 42, 68, 0.85);
  border-color: rgba(232, 175, 33, 0.3);
  transform: translateY(-4px);
}

.lay-trust-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(232, 175, 33, 0.12);
  color: var(--lay-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.lay-trust-title {
  font-family: var(--font-syne);
  font-size: 1.18rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.lay-trust-desc {
  color: #94A3B8;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ==========================================================================
   Sección: Blog y Criterio Técnico (Minimalista - Fondo Blanco)
   ========================================================================== */
.lay-blog-section {
  background-color: #FFFFFF;
  padding: 150px 0 110px 0;
  position: relative;
}

.lay-blog-subtag {
  display: block;
  font-family: var(--font-syne);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--maes-orange);
}

.lay-blog-heading {
  font-family: var(--font-syne);
  font-size: 2.3rem;
  font-weight: 800;
  color: #0A101D;
  line-height: 1.2;
}

.lay-blog-heading .gold-word {
  color: var(--maes-orange);
}

.lay-blog-section .btn-minimal-link {
  color: #0A101D;
  border-bottom: 2px solid var(--lay-gold);
}

.lay-blog-section .btn-minimal-link:hover {
  color: var(--maes-orange);
  border-bottom-color: var(--maes-orange);
}

.lay-article-minimal {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.lay-article-thumb-wrap {
  position: relative;
  display: block;
  height: 330px;
  overflow: hidden;
  background-color: #F1F5F9;
  margin-bottom: 24px;
}

.lay-article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.5s ease;
}

.lay-article-thumb-wrap:hover .lay-article-img {
  transform: scale(1.05);
}

.lay-article-cat {
  position: absolute;
  top: 18px;
  left: 18px;
  background-color: rgba(10, 16, 29, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-family: var(--font-syne);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 0;
}

.lay-article-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.lay-article-meta {
  font-size: 0.8rem;
  color: #64748B;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lay-article-bullet {
  color: var(--maes-orange);
}

.lay-article-title {
  font-family: var(--font-syne);
  font-size: 1.38rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 14px;
}

.lay-article-title a {
  color: #0A101D;
  text-decoration: none;
  transition: color 0.3s ease;
}

.lay-article-title a:hover {
  color: var(--maes-orange);
}

.lay-article-excerpt {
  color: #475569;
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.lay-article-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0A101D;
  font-family: var(--font-syne);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
  margin-top: auto;
}

.lay-article-link:hover {
  color: var(--maes-orange);
  gap: 14px;
}

@media (max-width: 991.98px) {
  .lay-blog-section {
    padding: 100px 0 70px 0;
  }
  .lay-blog-heading {
    font-size: 1.95rem;
  }
  .lay-article-thumb-wrap {
    height: 260px;
  }
}

/* ==========================================================================
   Sección: CTA de Cierre "Comienza Hoy" con Fondo Naranja #FF8700
   ========================================================================== */
.lay-cta-yellow-section,
.lay-cta-orange-section {
  background-color: #FF8700;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

/* Imagen a la Izquierda del CTA */
.lay-cta-image-wrapper {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(10, 16, 29, 0.25);
  border: 4px solid rgba(255, 255, 255, 0.35);
  background-color: #0A101D;
  aspect-ratio: 4 / 3;
}

.lay-cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.lay-cta-image-wrapper:hover .lay-cta-img {
  transform: scale(1.05);
}

.lay-cta-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background-color: rgba(10, 16, 29, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF;
  font-family: var(--font-syne);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.lay-cta-img-badge i {
  color: #FF8700;
  font-size: 0.95rem;
}

.lay-cta-badge {
  display: inline-flex;
  align-items: center;
  background-color: #0A101D;
  color: #FF8700;
  font-family: var(--font-syne);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 18px;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(10, 16, 29, 0.15);
}

.lay-cta-title {
  font-family: var(--font-syne);
  font-size: 2.6rem;
  font-weight: 800;
  color: #0A101D;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.lay-cta-highlight {
  color: #0A101D;
  text-decoration: underline;
  text-decoration-color: rgba(10, 16, 29, 0.45);
  text-underline-offset: 6px;
}

.lay-cta-desc {
  color: #0A101D;
  opacity: 0.92;
  font-size: 1.12rem;
  line-height: 1.75;
  font-weight: 500;
  max-width: 640px;
}

.lay-cta-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.lay-cta-perk-item {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0A101D;
  opacity: 0.9;
}

.lay-cta-perk-item i {
  font-size: 1.1rem;
}

/* Botón Principal CTA: Cápsula Oscura de Alto Impacto con Disco de Flecha */
.lay-cta-btn-primary {
  background-color: #0A101D;
  color: #FFFFFF;
  font-family: var(--font-syne);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 10px 12px 10px 28px;
  border: 2px solid #0A101D;
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(10, 16, 29, 0.22);
}

.lay-cta-btn-primary i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FF8700;
  color: #0A101D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.35s ease,
              color 0.35s ease;
}

.lay-cta-btn-primary:hover {
  background-color: #152238;
  border-color: #152238;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(10, 16, 29, 0.32);
}

.lay-cta-btn-primary:hover i {
  transform: translateX(4px);
  background-color: #FFFFFF;
  color: #0A101D;
}

/* Botón Secundario CTA: Cápsula Blanca Pura con Disco WhatsApp */
.lay-cta-btn-secondary {
  background-color: #FFFFFF;
  color: #0A101D;
  font-family: var(--font-syne);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 10px 28px 10px 12px;
  border: 2px solid #FFFFFF;
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(10, 16, 29, 0.12);
}

.lay-cta-btn-secondary i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #25D366;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s ease;
}

.lay-cta-btn-secondary:hover {
  background-color: #0A101D;
  border-color: #0A101D;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(10, 16, 29, 0.25);
}

.lay-cta-btn-secondary:hover i {
  transform: scale(1.08) rotate(8deg);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
}

@media (max-width: 991.98px) {
  .lay-cta-yellow-section,
  .lay-cta-orange-section {
    padding: 85px 0;
  }
  .lay-cta-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 575.98px) {
  .lay-cta-yellow-section,
  .lay-cta-orange-section {
    padding: 65px 0;
  }
  .lay-cta-title {
    font-size: 1.75rem;
  }
  .lay-cta-desc {
    font-size: 1rem;
  }
  .lay-cta-btn-primary,
  .lay-cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}


/* Responsive para Estructura Lay */
@media (max-width: 991.98px) {
  .lay-pillars-section,
  .lay-about-section,
  .lay-portfolio-section,
  .lay-services-section,
  .lay-trust-section {
    padding: 90px 0;
  }
  .section-title-lay {
    font-size: 2.1rem;
  }
  .lay-pillar-col {
    padding: 24px 20px;
  }
  .lay-about-image-wrapper img {
    height: 380px;
  }
}

@media (max-width: 575.98px) {
  .lay-pillars-section,
  .lay-about-section,
  .lay-portfolio-section,
  .lay-services-section,
  .lay-trust-section {
    padding: 75px 0;
  }
}

/* ==========================================================================
   SHAPE DIVIDERS ARQUITECTÓNICOS (TRANSICIONES ORGÁNICAS Y GEOMÉTRICAS)
   ========================================================================== */
.lay-shape-divider {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
  z-index: 5;
}

.lay-shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.lay-shape-divider.shape-top {
  top: -1px;
}

.lay-shape-divider.shape-bottom {
  bottom: -1px;
}

.lay-shape-divider.shape-flip-h svg {
  transform: scaleX(-1);
}

.shape-fill-white {
  fill: #FFFFFF;
}

.shape-fill-orange {
  fill: #fe8600;
}

.shape-fill-charcoal {
  fill: #0E1726;
}

.shape-fill-dark {
  fill: #0A101D;
}

@media (min-width: 768px) {
  .lay-shape-divider svg {
    height: 65px;
  }
}

@media (min-width: 992px) {
  .lay-shape-divider svg {
    height: 80px;
  }
}

@media (min-width: 1400px) {
  .lay-shape-divider svg {
    height: 95px;
  }
}
.navbar-architectural-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              padding 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              backdrop-filter 0.4s ease,
              box-shadow 0.4s ease;
  background-color: transparent;
}

.navbar-architectural-wrap.scrolled {
  background-color: rgba(10, 16, 29, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.main-logo-img,
.menu-header-logo {
  height: 68px;
  width: auto;
  transition: height 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s ease;
}

.navbar-architectural-wrap.scrolled .main-logo-img {
  height: 52px;
}

/* Botón Hamburguesa Arquitectónico de Gran Formato */
.burger-menu-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  width: 62px;
  height: 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 7px;
  cursor: pointer;
  padding: 14px 12px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.burger-menu-btn:hover {
  background: rgba(232, 175, 33, 0.16);
  border-color: var(--lay-gold);
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(232, 175, 33, 0.3);
}

.burger-line {
  height: 3px;
  background-color: #FFFFFF;
  border-radius: 3px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.burger-line.line-1 {
  width: 36px;
}

.burger-line.line-2 {
  width: 26px;
  background-color: var(--lay-gold);
}

.burger-line.line-3 {
  width: 32px;
}

.burger-menu-btn:hover .burger-line {
  width: 36px;
  background-color: var(--lay-gold);
}

/* ==========================================================================
   Overlay de Menú: Cortina Cinemática Arquitectónica (Entrada y Salida)
   ========================================================================== */
.fullscreen-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000000;
  visibility: hidden;
  opacity: 0;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); /* Cortina cerrada desde arriba */
  transition: clip-path 0.65s cubic-bezier(0.77, 0, 0.175, 1), 
              opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0s linear 0.65s;
}

/* Entrada Cinemática: El telón arquitectónico baja suavemente */
.fullscreen-menu-overlay.active {
  visibility: visible;
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 0.75s cubic-bezier(0.77, 0, 0.175, 1), 
              opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0s linear 0s;
}

/* Salida Cinemática: El telón se recoge suavemente hacia abajo con desvanecimiento */
.fullscreen-menu-overlay.menu-closing {
  visibility: visible !important;
  opacity: 0 !important;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%) !important;
  transition: clip-path 0.55s cubic-bezier(0.77, 0, 0.175, 1) 0.05s, 
              opacity 0.45s ease !important;
}

.fullscreen-menu-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, #1c2738 0%, #0d121c 65%, #070a0f 100%);
  transform: scale(1.08);
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.fullscreen-menu-overlay.active .fullscreen-menu-backdrop {
  transform: scale(1);
}

/* Ilustración Arquitectónica en Fondo Derecho (/img/2 / img/bg/2.png) */
.fullscreen-menu-bg-art {
  position: absolute;
  top: 0;
  right: 0;
  width: 55vw;
  height: 100%;
  background-image: url('../../img/bg/2.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0;
  transform: scale(1.08) translateX(40px);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.85s ease;
}

.fullscreen-menu-overlay.active .fullscreen-menu-bg-art {
  opacity: 0.42;
  transform: scale(1) translateX(0);
}

.fullscreen-menu-overlay.menu-closing .fullscreen-menu-bg-art {
  opacity: 0 !important;
  transform: scale(1.04) translateX(25px) !important;
  transition: transform 0.45s ease, opacity 0.4s ease !important;
}

@media (max-width: 991.98px) {
  .fullscreen-menu-bg-art {
    width: 90vw;
    right: -15vw;
    background-position: center right;
  }
  .fullscreen-menu-overlay.active .fullscreen-menu-bg-art {
    opacity: 0.22;
  }
}

.fullscreen-menu-container {
  position: relative;
  z-index: 2;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.fullscreen-menu-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 40px;
}

.menu-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-close-btn:hover {
  background: var(--lay-gold);
  border-color: var(--lay-gold);
  color: #121212;
  transform: rotate(90deg) scale(1.08);
}

/* ==========================================================================
   Animaciones de Entrada y Salida para Elementos Internos Centrados
   ========================================================================== */

/* Cabecera del Menú: Logo y Botón de Cierre */
.fullscreen-menu-header .menu-header-logo,
.fullscreen-menu-header .menu-close-btn {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.fullscreen-menu-overlay.active .fullscreen-menu-header .menu-header-logo {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.10s;
}

.fullscreen-menu-overlay.active .fullscreen-menu-header .menu-close-btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.18s;
}

/* Badge superior centrado */
.fullscreen-menu-overlay .badge-lay {
  opacity: 0;
  transform: translateY(-16px) scale(0.95);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.fullscreen-menu-overlay.active .badge-lay {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.18s;
}

/* Lista de Navegación Centrada */
.fullscreen-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.fullscreen-nav-list li {
  margin-bottom: 0;
  overflow: hidden;
  display: flex;
  width: 100%;
}

.fullscreen-nav-list .nav-item-link {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), color 0.18s ease;
  line-height: 1.25;
}

/* Número del Ítem centrado */
.fullscreen-nav-list .nav-item-link .item-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--lay-gold);
  opacity: 0;
  transform: translateY(35px) scale(0.85);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, color 0.18s ease;
  will-change: transform, opacity, color;
}

.fullscreen-menu-overlay.active .fullscreen-nav-list .nav-item-link .item-num {
  opacity: 0.9;
  transform: translateY(0) scale(1);
}

/* Letras individuales en Cascada 3D */
.fullscreen-nav-list .item-text {
  display: inline-block;
}

.fullscreen-nav-list .char-span {
  display: inline-block;
  opacity: 0;
  transform: translateY(45px) rotate(5deg) scale(0.9);
  transition-property: transform, opacity, color;
  transition-duration: 0.6s, 0.5s, 0.18s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1), cubic-bezier(0.16, 1, 0.3, 1), ease;
  will-change: transform, opacity, color;
}

.fullscreen-menu-overlay.active .fullscreen-nav-list .char-span {
  opacity: 1;
  transform: translateY(0) rotate(0deg) scale(1);
}

/* Hover interactivo sobre los enlaces: suave pero rápido (180ms) y desplazamiento sutil a la derecha */
.fullscreen-nav-list .nav-item-link:hover {
  color: #FFFFFF;
  transform: translateX(14px);
}

.fullscreen-nav-list .nav-item-link:hover .item-num {
  opacity: 1;
  color: #FFB600;
  transition: color 0.18s ease !important;
  transition-delay: 0s !important;
}

.fullscreen-nav-list .nav-item-link:hover .char-span {
  color: var(--lay-gold) !important;
  transition: color 0.18s ease !important;
  transition-delay: 0s !important;
}

.fullscreen-nav-list .nav-item-link.active .char-span {
  color: #FFFFFF;
}

.fullscreen-nav-list .nav-item-link.active .item-num {
  opacity: 1;
  color: var(--lay-gold);
}

/* Columna Derecha Centrada: Sedes, Canales y WhatsApp */
.fullscreen-menu-overlay .menu-info-block {
  text-align: center;
  max-width: 440px;
  margin: 0 auto;
}

.fullscreen-menu-overlay .menu-info-item {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.menu-info-divider {
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 175, 33, 0.45), transparent);
  margin: 22px auto;
}

.fullscreen-menu-overlay.active .menu-info-item:nth-of-type(1) {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.45s;
}

.fullscreen-menu-overlay.active .menu-info-item:nth-of-type(2) {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.65s;
}

.fullscreen-menu-overlay.active .menu-info-item:nth-of-type(3) {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.85s;
}

/* Animación de Salida Cinemática de los Elementos Internos (.menu-closing) */
.fullscreen-menu-overlay.menu-closing .char-span {
  transform: translateY(-35px) rotate(-4deg) scale(0.92) !important;
  opacity: 0 !important;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease !important;
}

.fullscreen-menu-overlay.menu-closing .item-num {
  transform: translateY(-25px) scale(0.85) !important;
  opacity: 0 !important;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease !important;
}

.fullscreen-menu-overlay.menu-closing .menu-info-item {
  transform: translateY(-30px) scale(0.94) !important;
  opacity: 0 !important;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease !important;
}

.fullscreen-menu-overlay.menu-closing .badge-lay,
.fullscreen-menu-overlay.menu-closing .menu-header-logo,
.fullscreen-menu-overlay.menu-closing .menu-close-btn {
  transform: translateY(-20px) !important;
  opacity: 0 !important;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease !important;
}

/* Al estar cerrado y sin clases activas, resetear */
.fullscreen-menu-overlay:not(.active):not(.menu-closing) .char-span,
.fullscreen-menu-overlay:not(.active):not(.menu-closing) .item-num,
.fullscreen-menu-overlay:not(.active):not(.menu-closing) .menu-info-item,
.fullscreen-menu-overlay:not(.active):not(.menu-closing) .badge-lay,
.fullscreen-menu-overlay:not(.active):not(.menu-closing) .menu-header-logo,
.fullscreen-menu-overlay:not(.active):not(.menu-closing) .menu-close-btn {
  transition-delay: 0s !important;
  transition-duration: 0.15s !important;
}

/* Adaptabilidad Responsiva para Menú de Pantalla Completa */
@media (max-width: 991.98px) {
  .main-logo-img,
  .menu-header-logo {
    height: 56px;
  }
  .burger-menu-btn {
    width: 52px;
    height: 52px;
    padding: 11px 9px;
  }
  .burger-line.line-1 { width: 30px; }
  .burger-line.line-2 { width: 22px; }
  .burger-line.line-3 { width: 26px; }
  .menu-close-btn {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
  .fullscreen-nav-list .nav-item-link {
    font-size: 1.85rem;
    gap: 14px;
  }
  .fullscreen-menu-body {
    padding: 15px 0 35px;
  }
}

@media (max-width: 575.98px) {
  .main-logo-img,
  .menu-header-logo {
    height: 48px;
  }
  .fullscreen-nav-list .nav-item-link {
    font-size: 1.55rem;
    gap: 12px;
  }
  .fullscreen-nav-list .nav-item-link .item-num {
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   HERO VIDEO DE FONDO PERMANENTE & SLIDER DE TEXTO
   ========================================================================== */
.hero-video-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #0b0f17;
  overflow: hidden;
}

.hero-video-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 Aspect Ratio */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 Aspect Ratio */
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 35% 50%, rgba(11, 15, 23, 0.78) 0%, rgba(11, 15, 23, 0.88) 60%, rgba(11, 15, 23, 0.95) 100%);
  z-index: 2;
}

.hero-content-container {
  position: relative;
  z-index: 10;
}

/* Tipografía y Estilo del Slider de Texto */
.hero-text-slide {
  padding-right: 15px;
}

.hero-title-syne {
  font-family: var(--font-syne);
  font-weight: 800;
  font-size: 3.8rem;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  margin-bottom: 22px;
}

.gold-gradient {
  color: var(--lay-gold);
  background: linear-gradient(135deg, #FFD666 0%, #E8AF21 60%, #FF9E2C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc-clean {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #D1D5DB;
  max-width: 620px;
  margin-bottom: 32px;
  font-weight: 300;
}

.btn-hero-action {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--lay-gold) 0%, #FFA827 100%);
  color: #11141D !important;
  font-family: var(--font-syne);
  font-weight: 800;
  font-size: 1rem;
  padding: 15px 34px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(232, 175, 33, 0.35);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero-action:hover {
  color: #11141D !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(232, 175, 33, 0.55);
}

/* Paginación del Slider de Texto */
.hero-text-pagination {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}

.hero-text-pagination .swiper-pagination-bullet {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  opacity: 1;
  transition: all 0.35s ease;
}

.hero-text-pagination .swiper-pagination-bullet-active {
  background: var(--lay-gold);
  width: 55px;
}

/* Indicación Centrada para Desplazar con Flecha */
.hero-scroll-indicator {
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
  cursor: pointer;
}

.hero-scroll-indicator:hover {
  color: var(--lay-gold);
}

.scroll-text {
  font-family: var(--font-syne);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.scroll-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.hero-scroll-indicator:hover .scroll-icon-wrap {
  border-color: var(--lay-gold);
  background: rgba(232, 175, 33, 0.15);
}

.scroll-arrow {
  font-size: 1rem;
  animation: hero-arrow-bounce 2s infinite ease-in-out;
}

@keyframes hero-arrow-bounce {
  0%, 100% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(4px);
  }
}

/* Ajustes Responsive */
@media (max-width: 991.98px) {
  .hero-title-syne {
    font-size: 2.8rem;
  }
  .fullscreen-nav-list .nav-item-link {
    font-size: 1.8rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title-syne {
    font-size: 2.2rem;
  }
  .hero-desc-clean {
    font-size: 1.05rem;
  }
  .fullscreen-nav-list .nav-item-link {
    font-size: 1.5rem;
  }
}

.hero-content-container .swiper {
  overflow: initial !important;
}