:root {
  --azul:#0a8fdc;
  --azul-claro:#27b4ff;
  --gris:#f7f9fb;
  --texto:#1e2a38;
  --metal:#e6edf7;
  --blanco:#ffffff;
}

/* =========================================
   GENERAL
========================================= */
* {margin:0;padding:0;box-sizing:border-box;font-family:'Poppins',sans-serif;}
body {background:var(--gris);color:var(--texto);scroll-behavior:smooth;}
.container {width:90%;max-width:1200px;margin:auto;}
a {text-decoration:none;color:inherit;}
.btn-primary {
  background: var(--azul);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  display: inline-block;
  transition: 0.3s;
}
.btn-primary:hover { background: var(--azul-claro); transform: scale(1.05); }

/* =========================================
   NAVBAR - AZUL OSCURO GLASS
========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: rgba(5, 20, 35, 0.85); /* azul muy oscuro con transparencia */
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.logo img { width: 180px; }

/* === Enlaces de navegación === */
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  color: #f0f4f8;
  letter-spacing: 0.3px;
  transition: color 0.3s, transform 0.3s;
}

/* Hover moderno con línea luminosa azul */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--azul), var(--azul-claro));
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(39,180,255,0.4);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover {
  color: var(--azul-claro);
  transform: translateY(-1px);
}

/* === Dropdowns === */
.dropdown {
  position: relative;
}
.dropdown > .dropbtn {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-weight: 500;
  color: #f2f4f7;
  transition: color 0.3s;
}
.dropdown:hover > .dropbtn {
  color: var(--azul-claro);
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: rgba(10,25,45,0.95);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  border-radius: 8px;
  overflow: hidden;
  z-index: 999;
  backdrop-filter: blur(12px);
}
.dropdown-content a {
  display: block;
  padding: 10px 16px;
  color: #f2f4f7;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s;
}
.dropdown-content a:hover {
  background: rgba(39,180,255,0.12);
  color: var(--azul-claro);
}
.dropdown:hover .dropdown-content {
  display: block;
}

/* === Botón de contacto destacado === */
.nav-contact-btn {
  background: linear-gradient(135deg, var(--azul), var(--azul-claro));
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 3px 10px rgba(39,180,255,0.35);
  transition: all 0.3s ease;
  margin-left: 20px;
}
.nav-contact-btn i {
  font-size: 1.1rem;
}
.nav-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(39,180,255,0.5);
  background: linear-gradient(135deg, var(--azul-claro), var(--azul));
}

/* === Móvil === */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #f0f4f8;
  border-radius: 5px;
}
@media(max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 60px; right: -100%;
    background: rgba(5,20,35,0.97);
    width: 100vw;
    height: calc(100vh - 60px);
    flex-direction: column;
    gap: 25px;
    padding-top: 35px;
    transition: 0.3s;
    backdrop-filter: blur(12px);
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; }
  .nav-contact-btn { display: none; }
}
/* =========================================
   HERO - HEADHUNTING ESPECIALIZADO (ALINEADO IZQUIERDA REAL)
========================================= */
.hero-headhunting {
  position: relative;
   height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: linear-gradient(135deg, #08182c 0%, #0b2238 50%, #0a8fdc 100%);
}

/* Canvas con líneas animadas */
.hero-headhunting canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Capa luminosa difusa */
.hero-headhunting-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 40%, rgba(39,180,255,0.2), transparent 65%);
  filter: blur(100px);
  z-index: 1;
}

/* Contenido del hero */
.hero-headhunting-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-left: 6%;         
  text-align: left;          
  animation: fadeInUp 1.2s ease forwards;
}

.hero-headhunting-content h1 {
  font-size: 3.2rem;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #ffffff, #a8e3ff);
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 25px rgba(39,180,255,0.25);
}

.hero-subtext {
  font-size: 1.15rem;
  color: #d4e9ff;
  line-height: 1.7;
  margin-bottom: 45px;
  max-width: 560px;
}

/* Botón */
.hero-headhunting .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-weight: 600;
  background: linear-gradient(90deg, var(--azul), var(--azul-claro));
  color: white;
  border-radius: 40px;
  box-shadow: 0 0 25px rgba(39,180,255,0.35);
  transition: all 0.4s ease;
}
.hero-headhunting .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(39,180,255,0.55);
}

/* Animación */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === Responsive === */
@media(max-width: 992px){
  .hero-headhunting {
    height: 100vh;
    padding: 140px 0 100px;
    padding-top: 80px;
  }
  .hero-headhunting-content {
    margin-left: 5%;
    margin-right: 5%;
    text-align: left; /* 🔹 mantiene alineado en móviles */
  }
  .hero-headhunting-content h1 {
    font-size: 2.4rem;
  }
  .hero-subtext {
    font-size: 1rem;
    margin: 0 0 40px;
  }
}
/* =========================================
   FONDO CON IMAGEN PARA HERO
========================================= */
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../../media/fondo2.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.22;
  filter: brightness(0.6) contrast(1.2) blur(1px);
  pointer-events: none;
}

/* =========================================
   QUÉ ES - HEADHUNTING ESPECIALIZADO
========================================= */
.hh-quees {
  background: #ffffff;
  padding: 120px 20px;
}

.hh-quees-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr; /* texto un poco más ancho */
  align-items: center;
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ----- Texto ----- */
.hh-quees-texto h2 {
  font-size: 2.3rem;
  color: #0b2238;
  margin-bottom: 25px;
  position: relative;
}
.hh-quees-texto h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, var(--azul), var(--azul-claro));
  border-radius: 3px;
}

.hh-quees-lead {
  color: #45566d;
  font-size: 1.07rem;
  line-height: 1.8;
  margin: 40px 0 22px;
  max-width: 620px;
}

/* Badge/resaltado corto */
.hh-quees-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f7fbff, #eef6ff);
  border: 1px solid rgba(39,180,255,0.18);
  color: #0b2238;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(39,180,255,0.08);
  margin-bottom: 22px;
  font-weight: 500;
}
.hh-quees-badge i { color: var(--azul); }

/* Lista de puntos clave */
.hh-quees-lista {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0 0 32px;
  color: #45566d;
}
.hh-quees-lista li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
  font-size: 0.98rem;
}
.hh-quees-lista i {
  background: linear-gradient(135deg, var(--azul), var(--azul-claro));
  color: #fff;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 0 12px rgba(39,180,255,0.25);
  flex-shrink: 0;
}

/* ----- Imagen ----- */
.hh-quees-imagen {
  height: 380px;
  border-radius: 20px;
  background: url('../../media/servicios/soporte1.webp') center/cover no-repeat;
  border: 1px solid rgba(39,180,255,0.12);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}

/* =========================================
   QUÉ ES - HEADHUNTING ESPECIALIZADO (MÓVIL)
========================================= */
@media (max-width: 992px) {
  .hh-quees-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: left; /* mantener alineación izquierda */
  }
  .hh-quees-texto h2::after {
    left: 0; transform: none;
  }
  .hh-quees-imagen {
    height: 260px;
  }
  .hh-quees-lead {
    margin-right: 0;
    margin-left: 0;
  }
}

/* =========================================
   NUESTRO PROCESO DE BÚSQUEDA
========================================= */
.hh-proceso {
  background: var(--gris);
  padding: 120px 20px;
  text-align: center;
  position: relative;
}

.hh-proceso h2 {
  font-size: 2.3rem;
  color: #0b2238;
  margin-bottom: 20px;
  position: relative;
}
.hh-proceso h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, var(--azul), var(--azul-claro));
  border-radius: 3px;
}

.hh-proceso-intro {
  color: #4b5e72;
  max-width: 800px;
  margin: 40px auto 80px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* === Timeline === */
.hh-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  flex-wrap: wrap;
}

.hh-timeline::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 3px;
  background: linear-gradient(90deg, rgba(39,180,255,0.4), rgba(10,143,220,0.3));
  border-radius: 5px;
  z-index: 1;
}

/* === Pasos === */
.hh-step {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  padding: 50px 25px 35px;
  flex: 1;
  min-width: 230px;
  border: 1px solid rgba(39,180,255,0.15);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
}
.hh-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(39,180,255,0.15);
}

.hh-icon {
  background: linear-gradient(135deg, var(--azul), var(--azul-claro));
  color: #fff;
  font-size: 1.6rem;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 0 20px rgba(39,180,255,0.25);
}

.hh-step h3 {
  color: #0b2238;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.hh-step p {
  color: #45566d;
  font-size: 0.97rem;
  line-height: 1.6;
}

/* === Responsive === */
@media(max-width: 992px){
  .hh-timeline {
    flex-direction: column;
    align-items: center;
  }
  .hh-timeline::before {
    display: none;
  }
  .hh-step {
    width: 90%;
    max-width: 500px;
  }
}

/* =========================================
   ÁREAS DE ESPECIALIZACIÓN
========================================= */
.hh-areas {
  background: linear-gradient(180deg, #fafdff 0%, #f2f8ff 100%);
  padding: 120px 20px;
  text-align: center;
  position: relative;
}

.hh-areas h2 {
  font-size: 2.3rem;
  color: #0b2238;
  margin-bottom: 20px;
  position: relative;
}
.hh-areas h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, var(--azul), var(--azul-claro));
  border-radius: 3px;
}

.hh-areas-intro {
  color: #4b5e72;
  max-width: 750px;
  margin: 40px auto 80px;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* === Grid === */
.hh-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* === Tarjetas === */
.hh-area {
  background: #fff;
  border-radius: 18px;
  padding: 50px 30px;
  border: 1px solid rgba(39,180,255,0.12);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
}
.hh-area:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(39,180,255,0.15);
}

.hh-area i {
  font-size: 2rem;
  color: var(--azul);
  margin-bottom: 18px;
}
.hh-area h3 {
  font-size: 1.1rem;
  color: #0b2238;
  margin-bottom: 10px;
  font-weight: 600;
}
.hh-area p {
  color: #45566d;
  font-size: 0.97rem;
  line-height: 1.6;
}

/* === Responsive === */
@media(max-width: 992px){
  .hh-areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 600px){
  .hh-areas-grid {
    grid-template-columns: 1fr;
  }
  .hh-area {
    padding: 40px 25px;
  }
}

/* =========================================
   VENTAJAS DE NUESTRO HEADHUNTING
========================================= */
.hh-ventajas {
  background: #fff;
  padding: 130px 20px;
}

.hh-ventajas-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Texto ===== */
.hh-ventajas-texto h2 {
  font-size: 2.3rem;
  color: #0b2238;
  margin-bottom: 25px;
  position: relative;
}
.hh-ventajas-texto h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, var(--azul), var(--azul-claro));
  border-radius: 3px;
}

.hh-ventajas-intro {
  color: #45566d;
  font-size: 1.07rem;
  line-height: 1.8;
  margin: 40px 0 35px;
  max-width: 620px;
}

/* ===== Lista ===== */
.hh-ventajas-lista {
  list-style: none;
  display: grid;
  gap: 16px;
  color: #45566d;
}
.hh-ventajas-lista li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.7;
}
.hh-ventajas-lista i {
  color: var(--azul);
  font-size: 1.2rem;
  background: rgba(39,180,255,0.1);
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== Imagen ===== */
.hh-ventajas-img {
  height: 420px;
  border-radius: 18px;
  background: 
    linear-gradient(rgba(10,143,220,0.25), rgba(8,24,44,0.7)),
    url('../../media/servicios/soporte2.webp') center/cover no-repeat;
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  border: 1px solid rgba(39,180,255,0.15);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .hh-ventajas-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hh-ventajas-img {
    height: 280px;
  }
}

/* =========================================
   CTA FINAL - HEADHUNTING
========================================= */
.hh-cta {
  background: linear-gradient(135deg, #08182c 0%, #0b2238 60%, #0a8fdc 100%);
  color: white;
  padding: 140px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Luz difusa de fondo */
.hh-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(39,180,255,0.25), transparent 70%);
  filter: blur(120px);
  z-index: 1;
}

.hh-cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hh-cta h2 {
  font-size: 2.4rem;
  background: linear-gradient(90deg, #ffffff, #b3e5ff);
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 25px rgba(39,180,255,0.25);
  margin-bottom: 25px;
}

.hh-cta p {
  color: #dbe9f7;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto 50px;
}

/* === Botones === */
.hh-cta-actions {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* Botón principal */
.hh-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--azul), var(--azul-claro));
  color: white;
  padding: 15px 34px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.4s ease;
  box-shadow: 0 0 25px rgba(39,180,255,0.3);
}
.hh-cta .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(39,180,255,0.6);
}

/* Botón LinkedIn */
.hh-cta .btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0077b5;
  color: white;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.4s ease;
  box-shadow: 0 0 25px rgba(0,119,181,0.35);
}
.hh-cta .btn-linkedin:hover {
  background: #0091da;
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(0,119,181,0.5);
}

/* === Responsive === */
@media(max-width: 768px) {
  .hh-cta {
    padding: 100px 20px;
  }
  .hh-cta h2 {
    font-size: 2rem;
  }
  .hh-cta p {
    font-size: 1rem;
  }
}



/* =========================================
   FOOTER 
========================================= */
.footer {
  position: relative;
  background: linear-gradient(135deg, #06101c, #0b2238 60%, #08182c);
  color: white;
  padding: 100px 20px 40px;
  overflow: hidden;
}

/* Fondo estático tipo textura */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 20%, rgba(39,180,255,0.08), transparent 70%);
  opacity: 0.4;
  z-index: 0;
}

/* Contenido principal */
.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
  filter: brightness(1.1);
}

.footer-desc {
  color: #d5e7f9;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
}

/* CONTACTO */
.footer-contact h3,
.footer-social h3 {
  color: var(--azul-claro);
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.footer-contact p {
  font-size: 0.95rem;
  color: #e3f1ff;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-contact a {
  color: #b7dbf8;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact a:hover {
  color: var(--azul-claro);
}

/* REDES SOCIALES */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--azul-claro);
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background: var(--azul-claro);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(39,180,255,0.4);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}
.footer-bottom p {
  font-size: 0.9rem;
  color: #a7c6e4;
}
.footer-bottom a {
  color: var(--azul-claro);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom a:hover {
  color: white;
}

/* === Responsive === */
@media(max-width: 992px){
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .footer-desc {
    margin: 0 auto;
  }
  .social-icons {
    justify-content: center;
  }
}

/* =========================================
   ANIMACIÓN GLOBAL HERO (fade + slide up)
========================================= */
.reveal-hero {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal-hero.visible {
  opacity: 1;
  transform: translateY(0);
}

.division-badge {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 18px;
    color: white;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

/* =========================================
   COLOREADO - BOTÓN WHATSAPP
========================================= */
.nav-contact-btn {
  background: linear-gradient(135deg, #25D366, #1EBE5A) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  border-radius: 30px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.35) !important;
  transition: all 0.3s ease !important;
}

.nav-contact-btn i {
  font-size: 1.1rem !important;
  color: #fff !important;
}

/* Hover verde más oscuro */
.nav-contact-btn:hover {
  background: linear-gradient(135deg, #1EBE5A, #128C4A) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 16px rgba(37, 211, 102, 0.48) !important;
}
