/* ============================================================
   OT SECURITY — ESTILOS GLOBALES (PREMIUM DESIGN)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@300;400;500;600&display=swap');

:root {
  --navy: #0A1931;
  --blue-strong: #1A3D63;
  --blue-mid: #28577a;
  --blue-light: #7394ac;
  --white: #F6FAFD;
  --text-dim: #A6B1C2;
  --card-bg: rgba(26, 61, 99, 0.3);
  --card-border: rgba(179, 207, 229, 0.12);
  --cyan: var(--blue-light);
  --blue-acc: var(--blue-mid);
  --transition: 0.4s cubic-bezier(.4, 0, .2, 1);
  --glass-blur: blur(12px);
  --section-padding: 30px 5%;
}

/* ─── RESET ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.025;
}

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

img {
  max-width: 100%;
  display: block;
}

/* ─── NAVBAR ────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  background: rgba(10, 25, 49, 0.8);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--card-border);
  transition: background var(--transition);
}

nav.scrolled {
  background: rgba(10, 25, 49, 0.95);
  border-bottom-color: rgba(179, 207, 229, 0.2);
}

.nav-logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(179, 207, 229, 0.2));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
}

.nav-links a:hover {
  color: var(--blue-light);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--blue-light);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0.8rem 1.8rem;
  border-radius: 60px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  backdrop-filter: var(--glass-blur);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.btn-primary {
  background: rgba(115, 148, 172, 0.15);
  border: 2px solid var(--blue-light);
  color: #FFFFFF;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(179, 207, 229, 0.3);
  color: #FFFFFF;
}

.btn-primary:hover,
.btn-secondary:hover {
  background: var(--blue-light);
  color: var(--navy) !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(115, 148, 172, 0.4);
}

.btn-nav {
  background: var(--blue-strong);
  color: #fff !important;
  padding: 0.7rem 1.8rem;
  border-radius: 60px;
  font-weight: 700 !important;
  border: 1px solid var(--blue-mid);
  text-transform: uppercase;
  font-size: 0.75rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all var(--transition);
}

.btn-nav:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(74, 127, 167, 0.4);
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 5% 60px;
  overflow: hidden;
  background: var(--navy);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(179, 207, 229, 0.05) 1px, transparent 0);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  z-index: 1;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140vw;
  height: 140vh;
  background: radial-gradient(circle at 20% 30%, rgba(74, 127, 167, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(26, 61, 99, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(10, 25, 49, 0) 0%, var(--navy) 70%);
  filter: blur(80px);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin-bottom: 4rem;
}

.hero-visual {
  position: absolute;
  right: 1%;
  top: 5%;
  width: 65%;
  max-width: 750px;
  z-index: 1;
  opacity: 0.5;
  filter: drop-shadow(0 0 50px rgba(74, 127, 167, 0.25));
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-visual img {
  width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.hero-family {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  opacity: 0.25;
  pointer-events: none;
}

.hero-family img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  mask-image: linear-gradient(to right, transparent 5%, rgba(0, 0, 0, 0.85) 60%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 5%, rgba(0, 0, 0, 0.85) 60%, black 100%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(10, 25, 49, 0.4);
  border: 1px solid rgba(115, 148, 172, 0.3);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 2.5rem;
  backdrop-filter: var(--glass-blur);
}

.hero h1 {
  font-size: 4.8rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 15px rgba(10, 25, 49, 0.6);
}

.hero h1 em {
  font-style: normal;
  display: block;
  color: var(--navy);
  background: none;
  -webkit-text-fill-color: initial;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: auto;
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: var(--glass-blur);
  padding: 2rem;
  border-radius: 20px;
  transition: all var(--transition);
  text-align: left;
}

.stat-card:hover {
  background: rgba(74, 127, 167, 0.15);
  border-color: var(--blue-light);
  transform: translateY(-5px);
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── CLIENTS LOGOS (TICKER) ─────────────────────────────────── */
.clients-section {
  background: var(--navy);
  padding: 60px 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(115, 148, 172, 0.1);
  border-bottom: 1px solid rgba(115, 148, 172, 0.1);
}

.clients-ticker {
  width: 100%;
  overflow-x: auto;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}



.clients-ticker::-webkit-scrollbar {
  display: none;
}

.clients-ticker.active {
  cursor: grabbing;
}


.ticker-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 90%;
  max-width: 1100px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--white);
  font-weight: 800;
  white-space: nowrap;
}


.ticker-label::before,
.ticker-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(115, 148, 172, 0.3), transparent);
}


.ticker-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  padding: 0 80px;
  user-select: none;
}





.client-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: none;
  transition: all 0.4s ease;
  user-select: none;
  pointer-events: auto;
}


.client-logo:hover,
.client-logo-txt:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.1);
  color: var(--blue-light);
}

.client-logo-txt {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFF;
  filter: grayscale(1) opacity(0.4);
  display: flex;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
}

.client-logo-txt i {
  font-size: 1.4rem;
}



/* ─── SECTION COMMONS ────────────────────────────────────────── */

section {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 1.5rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--blue-mid);
}

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.section-title em {
  font-style: normal;
  color: var(--blue-mid);
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 650px;
  line-height: 1.8;
}

/* ─── LIGHT THEME ───────────────────────────────────────────── */
.section-light {
  background: #FFFFFF;
  color: var(--navy);
}

.section-light .section-title {
  color: var(--navy);
}

.section-light .section-sub {
  color: #5A6B8D;
}

/* ─── SERVICIOS ─────────────────────────────────────────────── */

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 4rem;
  margin-bottom: 2rem;
}

/* Color específico para el botón "Ver todos" en fondo claro */
.services-header .btn-primary {
  background: var(--blue-mid);
  color: #FFFFFF !important;
  border: none;
  box-shadow: 0 4px 15px rgba(40, 87, 122, 0.3);
}

.services-header .btn-primary:hover {
  background: var(--blue-strong);
  transform: translateY(-2px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ─── GLASS CARDS (DETAILED BLUE MIRROR) ─────────────────────── */
.section-light .service-card {
  background: linear-gradient(135deg, rgba(26, 61, 99, 0.9), rgba(10, 25, 49, 0.95));
  border: 1px solid rgba(115, 148, 172, 0.4);
  color: #FFFFFF;
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 40px rgba(10, 25, 49, 0.15);
  transition: all var(--transition);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.service-cctv {
  background-image: linear-gradient(135deg, rgba(26, 61, 99, 0.9), rgba(10, 25, 49, 0.95)) !important;
}

.service-acceso {
  background-image: linear-gradient(135deg, rgba(26, 61, 99, 0.9), rgba(10, 25, 49, 0.95)) !important;
}

.service-alarmas {
  background-image: linear-gradient(135deg, rgba(26, 61, 99, 0.9), rgba(10, 25, 49, 0.75)) !important;
  background-position: center center !important;
}

.section-light .service-card:hover {
  background-image: linear-gradient(135deg, rgba(26, 61, 99, 0.7), rgba(10, 25, 49, 0.75)), inherit !important;
  transform: translateY(-8px);
}

.section-light .step {
  background: linear-gradient(135deg, rgba(26, 61, 99, 0.9), rgba(10, 25, 49, 0.95));
  border: 1px solid rgba(115, 148, 172, 0.4);
  color: #FFFFFF;
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 40px rgba(10, 25, 49, 0.15);
  transition: all var(--transition);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  position: relative;
  margin-left: 30px;
}

.section-light .service-card:hover,
.section-light .step:hover {
  background: linear-gradient(135deg, rgba(35, 75, 120, 0.95), rgba(15, 30, 55, 0.98));
  border-color: var(--blue-light);
  transform: translateY(-8px);
}

.service-number {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(10, 25, 49, 0.03);
  line-height: 1;
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: #FFFFFF;
  transition: all var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--blue-mid);
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.8;
}

/* ─── POR QUÉ ELEGIRNOS (GRID REPARADO) ───────────────────────── */
/* ─── POR QUÉ ELEGIRNOS (PROFESSIONAL WHITE) ─────────────────── */
.why-bg {
  background: #FFFFFF;
  padding: 50px 5%;
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}


.why-bg .section-title {
  color: var(--navy);
}

.why-bg .section-sub {
  color: #4A5568;
  font-size: 1.15rem;
  margin-bottom: 0;
}

.why-visual {
  position: relative;
}

.why-img-box {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(10, 25, 49, 0.1);
  aspect-ratio: 16/10;
  border: 6px solid #F8FAFC;
}

.why-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--blue-mid);
  border-radius: 24px;
  padding: 1.5rem 2rem;
  border: 4px solid #FFFFFF;
  box-shadow: 0 15px 35px rgba(10, 25, 49, 0.12);
  text-align: center;
  z-index: 5;
}

.why-badge-float .num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFF;
  line-height: 1;
}

.why-badge-float .lbl {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.why-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-feature {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--blue-strong), var(--navy));
  border: 1px solid rgba(115, 148, 172, 0.2);
  border-radius: 20px;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(10, 25, 49, 0.1);
}

.why-feature:hover {
  background: var(--blue-mid);
  transform: translateX(12px) translateY(-5px);
  border-color: var(--blue-light);
  box-shadow: 0 20px 40px rgba(10, 25, 49, 0.2);
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(115, 148, 172, 0.1);
  color: var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: 0.3s;
}

.why-feature:hover .why-feature-icon {
  background: #FFFFFF;
  color: var(--navy);
  transform: rotate(10deg);
}

.why-feature h4 {
  font-size: 1.15rem;
  text-transform: uppercase;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.why-feature p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}


/* ─── PROCESO (FINETUNED) ───────────────────────── */
#proceso {
  background: linear-gradient(rgba(10, 25, 49, 0.65), rgba(26, 61, 99, 0.65)), url('../assets/images/proceso.webp') no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
  padding: 40px 5% 70px 5%;
  /* 👈 menos espacio arriba */
}

#proceso .section-title,
#proceso .section-sub,
#proceso .section-label {
  color: var(--white) !important;

}

#proceso .section-label::before {
  background: var(--blue-light);
}


.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  margin: 1rem 0;
  padding-left: -20px;
  max-width: 700px;
  z-index: 2;
}


.process-steps::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 2px;
  border-left: 2px dashed rgba(74, 127, 167, 0.3);
  z-index: 0;
}

.section-light .step {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  width: 100%;
  border-radius: 18px;
  padding: 1rem 1.8rem;
  background: linear-gradient(135deg, rgba(26, 61, 99, 0.96), rgba(10, 25, 49, 0.99));
  border: 1px solid rgba(115, 148, 172, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  backdrop-filter: blur(10px);
}


.step:hover {
  transform: translateX(10px);
  border-color: var(--blue-light);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.step:hover .step-num {
  transform: scale(1.1);
  background: var(--blue-light);
  color: var(--navy);
  box-shadow: 0 0 25px rgba(74, 127, 167, 0.6);
}

.step-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.step-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--blue-light);
  border: 1px solid rgba(179, 207, 229, 0.2);
  flex-shrink: 0;
  transition: 0.3s;
}

.step:hover .step-icon {
  background: var(--blue-light);
  color: var(--navy);
  transform: rotate(5deg);
}

.step h4 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  color: #FFFFFF !important;
}

.step p {
  font-size: 0.9rem;
  opacity: 0.8 !important;
  color: #FFFFFF !important;
  margin: 0;
}


/* ─── CONTACTO (GRID REPARADO) ───────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  background: linear-gradient(135deg, rgba(26, 61, 99, 0.95), rgba(10, 25, 49, 0.98));
  border: 1px solid rgba(115, 148, 172, 0.4);
  padding: 0.8rem 1.2rem;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.contact-item:hover {
  transform: translateX(5px);
  border-color: var(--blue-light);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item span {
  font-size: 0.75rem;
  opacity: 0.7;
  color: #FFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item strong {
  font-size: 0.95rem;
  color: #FFF;
  display: block;
  margin-top: 2px;
}

.contact-form {
  background: linear-gradient(135deg, rgba(26, 61, 99, 0.95), rgba(10, 25, 49, 0.98));
  border: 1px solid rgba(115, 148, 172, 0.4);
  padding: 3rem;
  border-radius: 24px;
  backdrop-filter: blur(30px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.contact-form h2 {
  color: #FFF;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-light);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237394ac' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  padding-right: 3rem;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-light);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(115, 148, 172, 0.2);
}

.form-group select option {
  background-color: #0d1b2a;
  color: #FFFFFF;
}

/* ─── CTA BANNER (REPARADO Y CENTRADO) ───────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--blue-strong), var(--navy));
  text-align: center;
  border-top: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 5%;
}

.cta-section h2 {
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  max-width: 600px;
}

.cta-section p {
  font-size: 1.2rem;
  color: var(--text-dim);
  margin-bottom: 3.5rem;
  max-width: 600px;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

/* Redefiniendo botones específicos del CTA para asegurar visibilidad y estilo de marca */
.cta-section .btn-primary,
.cta-section .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--blue-light);
  color: #FFFFFF !important;
  padding: 1.2rem 2.8rem;
  border-radius: 60px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cta-section .btn-primary:hover,
.cta-section .btn-secondary:hover {
  background: var(--blue-light);
  color: var(--navy) !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(115, 148, 172, 0.4);
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: linear-gradient(180deg, var(--navy), #06101c);
  padding: 30px 8% 20px;
  border-top: 1px solid rgba(115, 148, 172, 0.15);
  position: relative;
  overflow: hidden;
}


footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
  opacity: 0.5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr;
  gap: 2.5rem;
  padding-bottom: 1.5rem;
}


.footer-logo-wrap img {
  height: 50px;
  width: auto;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 10px rgba(179, 207, 229, 0.1));
}


.footer-brand p {
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  max-width: 300px;
  font-size: 0.8rem;
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 0.7rem;
}

.social-links a {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #4b6b8d;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--blue-mid);
  color: #FFFFFF;
  border-color: var(--blue-light);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(74, 127, 167, 0.3);
}

.footer-col h5 {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--cyan);
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.12em;
}


.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  color: var(--text-dim);
  font-size: 0.8rem;
  transition: 0.3s;
}

.footer-col ul a:hover {
  color: var(--blue-light);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 1rem;

  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: #3b5b7d;
}

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── WHATSAPP ───────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 999;
  width: 64px;
  height: 64px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.2rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}