/* =====================
   Syslity Landing Page - Estilos Modernos y Asombrosos
   ===================== */
:root {
  --primary: #1a1a1a;
  --primary-light: #23272f;
  --secondary: #00b4d8;
  --secondary-dark: #0077b6;
  --accent: #48cae4;
  --white: #fff;
  --black: #000;
  --gray: #f5f6fa;
  --shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
  --radius: 1.2rem;
  --transition: 0.35s cubic-bezier(.77,0,.18,1);
  --font-main: 'Quicksand', 'Montserrat', Arial, sans-serif;

  --gray-100: #f5f6fa;
  --gray-200: #e0e3e8;
  --gray-300: #c2c7cf;
  --gray-400: #a0a4ab;
  --gray-500: #6c6f75;
  --gray-600: #44474a;
  --shadow-glow: 0 4px 24px 0 rgba(0,180,216,0.10);
  --gradient-1: linear-gradient(135deg, var(--secondary), var(--accent));
  --gradient-2: linear-gradient(135deg, var(--primary), var(--secondary-dark));
  --gradient-text: linear-gradient(45deg, var(--secondary), var(--accent));
}
html {
  scroll-behavior: smooth;
  font-size: 17px;
  scroll-padding-top: 80px;
}
body {
  font-family: var(--font-main);
  background: linear-gradient(135deg, #f5f6fa 0%, #e0f7fa 100%);
  color: var(--primary);
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

* {
  font-family: 'Feather Bold';
  transition: 0.3s ease;
}

/* Loader Animado */
#loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: linear-gradient(135deg, #111 0%, #00b4d8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s;
}
#loader.hide {
  opacity: 0;
  pointer-events: none;
}
.loader-logo-container {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.loader-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  box-shadow: 0 0 40px 10px var(--accent), 0 0 0 8px #fff2;
  z-index: 2;
  animation: logoPulse 2.2s infinite alternate;
}
@keyframes logoPulse {
  0% { box-shadow: 0 0 40px 10px var(--accent), 0 0 0 8px #fff2; }
  100% { box-shadow: 0 0 80px 20px var(--secondary), 0 0 0 16px #fff3; }
}
.loader-particles {
  position: absolute;
  top: 0; left: 0;
  width: 180px; height: 180px;
  pointer-events: none;
  z-index: 1;
}
.loader-glow {
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 80%);
  filter: blur(32px);
  opacity: 0.5;
  z-index: 0;
  animation: glowAnim 2.5s infinite alternate;
}
@keyframes glowAnim {
  0% { opacity: 0.5; }
  100% { opacity: 0.9; }
}
.loader-spinner {
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 6px solid var(--accent);
  border-top: 6px solid transparent;
  animation: spin 1.2s linear infinite;
  z-index: 3;
}
@keyframes spin {
  100% { transform: rotate(360deg); }
}
.loader-text {
  color: var(--white);
  font-size: 1.3rem;
  letter-spacing: 1.5px;
  margin-top: 1.2rem;
  text-shadow: 0 2px 12px #0008;
  font-weight: 600;
}

/* Navbar Moderno */
.navbar {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #1e2023;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px 0 #00b4d81a;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: var(--primary-light);
  box-shadow: 0 4px 24px 0 #00b4d84a;
}
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 2rem;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 2px 12px 0 #00b4d84a;
}
.logo-text {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #00b4d81a;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
}
.nav-link {
  color: var(--gray-100);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transition: width 0.3s;
  border-radius: 2px;
  margin-top: 2px;
}
.nav-link:hover, .nav-link:focus {
  color: var(--secondary);
}
.nav-link:hover::after, .nav-link:focus::after {
  width: 100%;
}


.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}
.mobile-menu-btn span {
  display: block;
  width: 28px;
  height: 5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu-overlay {
  /* display: none;
  position: fixed;
  inset: 0;
  background: #0007;
  z-index: 109;
  opacity: 0;
  transition: opacity 0.3s; */

  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 109;
  opacity: 0;
  pointer-events: none;transition: opacity 0.5s cubic-bezier(.77,0,.18,1), backdrop-filter 0.5s cubic-bezier(.77,0,.18,1);
}
.mobile-menu-overlay.active {
  /* display: block;
  opacity: 1; */

  opacity: 1;
  pointer-events: auto;
  backdrop-filter: blur(2px);
}
.mobile-menu {
  /* display: none;
  flex-direction: column;
  position: fixed;
  top: 0; right: 0;
  width: 80vw;
  max-width: 340px;
  height: 100vh;
  background: rgb(26 26 26);
  box-shadow: -4px 0 32px 0 #00b4d84a;
  z-index: 120;
  padding: 2.5rem 2rem 1.5rem 2rem;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--transition); */

  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; right: 0;
  width: 80vw;
  max-width: 340px;
  height: 100vh;
  background: rgba(26,26,26,0.98);
  box-shadow: -4px 0 32px 0 #00b4d84a;
  z-index: 120;
  padding: 2.5rem 2rem 1.5rem 2rem;
  gap: 2rem;
  transform: translateX(100%) scale(0.96) rotateY(30deg);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.55s cubic-bezier(.77,0,.18,1),
    opacity 0.35s cubic-bezier(.77,0,.18,1);
  will-change: transform, opacity;
  backdrop-filter: blur(8px);
}
.mobile-menu.active {
  /* display: flex;
  transform: translateX(0); */
  display: flex;
  transform: translateX(0) scale(1) rotateY(0deg);
  opacity: 1;
  pointer-events: auto;
  animation: menuBounceIn 0.55s cubic-bezier(.77,0,.18,1);
}
.mobile-nav-link {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1.2rem;
  transition: color 0.2s;
}
.mobile-nav-link:hover {
  color: var(--secondary);
}
.theme-toggle-mobile {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 1.5rem;
  cursor: pointer;
  margin-top: 2rem;
}






.mobile-menu .mobile-nav-link {
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 0.5s cubic-bezier(.77,0,.18,1),
    transform 0.5s cubic-bezier(.77,0,.18,1);
}
.mobile-menu.active .mobile-nav-link {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu.active .mobile-nav-link:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav-link:nth-child(2) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-nav-link:nth-child(3) { transition-delay: 0.35s; }
.mobile-menu.active .mobile-nav-link:nth-child(4) { transition-delay: 0.45s; }
.mobile-menu.active .mobile-nav-link:nth-child(5) { transition-delay: 0.55s; }

.mobile-menu-btn {
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
}
.mobile-menu-btn.active {
  transform: rotate(90deg) scale(1.1);
}
.mobile-menu-btn span {
  transition: all 0.5s cubic-bezier(.77,0,.18,1);
}
.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-13px) rotate(-45deg);
}









/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-light) 100%);
  overflow: hidden;
}
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  animation: heroShapeAnim 8s infinite alternate;
}
.hero-shape.shape-1 {
  width: 420px; height: 420px;
  background: var(--secondary);
  top: -120px; left: -120px;
  animation-delay: 0s;
}
.hero-shape.shape-2 {
  width: 320px; height: 320px;
  background: var(--accent);
  bottom: -80px; right: -80px;
  animation-delay: 2s;
}
.hero-shape.shape-3 {
  width: 180px; height: 180px;
  background: #fff;
  top: 40%; left: 60%;
  opacity: 0.12;
  animation-delay: 4s;
}

.hero-shape.shape-1-donar {
  width: 200px; height: 420px;
  background: var(--secondary);
  top: 220px; left: -120px;
  animation-delay: 0s;
}
.hero-shape.shape-2-donar {
  width: 200px; height: 320px;
  background: var(--accent);
  bottom: 200px; right: -80px;
  animation-delay: 2s;
}
.hero-shape.shape-3-donar {
  width: 50%;
  height: 300px;
  background: #3cc6e2;
  top: 70%;
  left: 25%;
  opacity: 0.12;
  animation-delay: 4s;
}

.hero-shape.shape-4-donar {
  width: 50%;
  height: 300px;
  background: #3cc6e2;
  top: -36%;
  left: 25%;
  opacity: 0.12;
  animation-delay: 4s;
}




@keyframes heroShapeAnim {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.15) translateY(-30px); }
}
.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem 2rem;
  width: 100%;
  gap: 2.5rem;
}
.hero-content {
  flex: 1 1 420px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgb(255 255 255 / 9%);
  padding: 0.5rem 1.2rem;
  width: 60%;
  border-radius: 2rem;
  font-size: 1.1rem;
  color: var(--secondary);
  font-weight: bolder;
  box-shadow: 0 2px 12px 0 #00b4d81a;
  letter-spacing: 1px;
  backdrop-filter: blur(4px);
  margin-bottom: 0.5rem;
}
.hero-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin: 0;
  letter-spacing: 1px;
}
.title-line {
  display: block;
  opacity: 0;
  transition: opacity 0.7s;
}
.title-line.highlight {
  color: var(--secondary);
  text-shadow: 0 2px 12px #00b4d84a;
}
.hero-subtitle {
  font-size: 1.35rem;
  color: var(--gray-100);
  margin-bottom: 0;
  font-weight: bolder;
}
.hero-buttons {
  display: flex;
  gap: 1.2rem;
}
.animated-button {
  padding: 0.8rem 2.2rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  color: var(--white);
  box-shadow: 0 2px 16px 0 #00b4d81a;
  transition: transform 0.18s, box-shadow 0.18s, background 0.3s;
  position: relative;
  overflow: hidden;
}
.animated-button.btn-secondary {
  background: var(--white);
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.animated-button:hover, .animated-button:focus {
  transform: scale(1.07) translateY(-2px);
  box-shadow: 0 6px 32px 0 #00b4d84a;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
}
.animated-button.btn-secondary:hover, .animated-button.btn-secondary:focus {
  background: var(--secondary);
  color: var(--white);
}
.hero-image {
  flex: 1 1 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.image-container {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img {
  width: 100%;
  border-radius: 20%;
  box-shadow: 0 0 40px 10px var(--accent), 0 0 0 8px #fff2;
  z-index: -2;
  background: #fff;
}
.image-overlay {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 80%);
  filter: blur(32px);
  opacity: 0.18;
  z-index: 1;
}
.floating-card {
  position: absolute;
  min-width: 140px;
  min-height: 20px;
  background: #ffffff26;
  box-shadow: 0 8px 32px 0 #00b4d81a;
  border-radius: 1.2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1rem;
  animation: floatCard 3.5s infinite alternate;
  transition: transform 0.3s, box-shadow 0.3s;
  will-change: transform;
  border: 1.5px solid var(--accent);
}
.floating-card .card-icon {
  font-size: 2rem;
  color: var(--secondary);
}
.floating-card .card-title {
  font-weight: 900;
  color: black;
  font-size: 1.1rem;
}
.floating-card .card-subtitle {
  font-size: 0.95rem;
  color: #222b;
}
.floating-card.card-1 {
  top: 0; left: -70px;
  animation-delay: 0s;
}
.floating-card.card-2 {
  bottom: -15px; right: 180px;
  animation-delay: 1.2s;
}
.floating-card.card-3 {
  top: 25%; left: 70%;
  animation-delay: 2.1s;
}
@keyframes floatCard {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-18px) scale(1.07); }
}

/* Sección de Servicios */
.features {
  background: var(--primary);
  padding: 5rem 2rem 4rem 2rem;
  position: relative;
  z-index: 2;
}
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
  margin-top: 2rem;
}
.section-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  color: var(--white);
  font-weight: 700;
  border-radius: 2rem;
  padding: 0.4rem 1.2rem;
  font-size: 1rem;
  margin-bottom: 0.7rem;
  letter-spacing: 1px;
  box-shadow: 0 2px 12px 0 #00b4d81a;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  margin: 0.2rem 0 0.7rem 0;
}

#reclutamiento {
  height: auto;
}


.section-subtitle {
  color: var(--gray-300);
  font-size: 1.1rem;
  font-weight: bolder;
  margin-bottom: 0.5rem;
}
.features-grid {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.feature-card {
  background: var(--primary-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem 1.7rem 1.7rem 1.7rem;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: transform 0.35s var(--transition), box-shadow 0.35s var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--accent);
}
.feature-card:hover {
  transform: translateY(-12px) scale(1.04) rotateZ(-1.5deg);
  box-shadow: 0 12px 48px 0 #00b4d84a;
  border-color: var(--secondary);
}
.feature-icon-wrapper {
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 50%;
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px 0 #00b4d81a;
  margin-bottom: 0.7rem;
}
.feature-icon {
  color: var(--white);
  font-size: 2rem;
}
.feature-content h3 {
  font-size: 1.35rem;
  text-align: center;
  font-weight: bold;
  color: var(--secondary-dark);
  margin: 0.2rem 0 0.5rem 0;
}
.feature-content p {
  color: var(--gray-200);
  font-size: 1.25rem;
  font-weight: bolder;
  text-align: center;
}

/* Sección Técnicos */
.tecnicos {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 5rem 2rem 4rem 2rem;
  position: relative;
  z-index: 2;
}
.tecnicos-grid {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  flex-wrap: wrap;
}


.tecnico-card {
  transform-style: preserve-3d;
  perspective: 1000px;

  background: #23272f;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem 1.7rem;
  min-width: 260px;
  max-width: 340px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--secondary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  margin-top: 2rem;
}


.tecnico-card:hover {
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 12px 48px 0 #00b4d84a;
  border-color: var(--accent);
}
.tecnico-avatar {
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 50%;
  width: 97px; height: 97px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px 0 #00b4d81a;
  margin-bottom: 0;
  color: var(--white);
  font-size: 2rem;
}
.tecnico-info h3 {
  font-size: 1.3rem;
  text-align: center;
  font-weight: 900;
  color: var(--gray-200);
  margin: 0.2rem 0 0.5rem 0;
}
.tecnico-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.8rem;
  font-size: 1.3rem;
  color: var(--secondary);
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.tecnico-rating i {
  color: var(--secondary);
  font-size: 1.1rem;
  opacity: 0.85;
  animation: starPop 0.7s cubic-bezier(.77,0,.18,1) both;
}
@keyframes starPop {
  0% { transform: scale(0.2); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.tecnico-skills {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 1.5rem 0;
  padding: 0;
  list-style: none;
}
.tecnico-skills li {
  background: var(--accent);
  color: var(--white);
  border-radius: 1rem;
  padding: 0.3rem 1rem;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 2px 8px 0 #00b4d81a;
  animation: skillPop 0.8s cubic-bezier(.77,0,.18,1) both;
}
@keyframes skillPop {
  0% { transform: scale(0.2); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.tecnico-contacto {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: #0cc042;
  color: var(--white);
  border-radius: 2rem;
  padding: 0.5rem 1.5rem;
  font-weight: 900;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px 0 #00b4d81a;
  transition: background 0.2s, color 0.2s;
}
.tecnico-contacto:hover {
  background: var(--accent);
  color: var(--white);
}





.tecnicos-slider {
  padding-top: 2rem;
  padding-bottom: 4rem;
  width: 100%;
  height: 80vh;
}



.swiper-wrapper {
  display: flex;
  
}

.swiper-slide {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}


.tecnico-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
  transition: filter 0.3s ease;
  border-radius: 20px;
}

.tecnico-card:hover img {
  filter: brightness(50%);
}

.tecnico-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
  color: white;
  transition: opacity 0.3s ease;
}

.tecnico-info-overlay h3 {
  margin: 0 0 0.3rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.tecnico-info-overlay .rating {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.skills {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.skills li {
  background: var(--accent);
  padding: 0.3rem 0.7rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.tecnico-info-overlay a, .button-tecnicos {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: #0cc042;
  color: white;
  text-decoration: none;
  border-radius: 2rem;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.tecnico-info-overlay a:hover {
  background: var(--accent);
}

/* Modal de info de tecnicos */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(6px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal.show {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: #1a1a1a;
  color: white;
  border-radius: 1rem;
  padding: 2rem;
  margin: 0 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  position: relative;
  animation: modalFadeIn 0.5s ease forwards;
  text-align: center;
}

.modal-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.modal-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.modal-fotos img {
  width: 40%;
  border-radius: 2rem;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.3rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--accent);
  transition: transform 0.2s;
}

.modal-close:hover {
  transform: scale(1.2);
}

@keyframes modalFadeIn {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.hidden {
  display: none;
}








/* Compra/Venta */
.compra-venta {
  background: var(--primary-light);
  padding: 5rem 2rem 4rem 2rem;
  position: relative;
  z-index: 2;
}
.compra-venta-grid {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.producto-card {
  background: #23272f;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem 1.7rem 1.7rem 1.7rem;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 300px;
  display: flex;
  font-weight: 900;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  transition: transform 0.35s var(--transition), box-shadow 0.35s var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--secondary);
}
.producto-card:hover {
  transform: translateY(-12px) scale(1.04) rotateZ(-1.5deg);
  box-shadow: 0 12px 48px 0 #00b4d84a;
  border-color: var(--accent);
}


.producto-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  gap: 0.7rem;
  font-weight: bolder;
}

.producto-img {
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 50%;
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px 0 #00b4d81a;
  margin-bottom: 0.7rem;
  color: var(--white);
  font-size: 2rem;
}
.producto-info h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  margin: 0.2rem 0 0.5rem 0;
}
.producto-precio {
  color: var(--secondary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.producto-contacto {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--white);
  border-radius: 2rem;
  padding: 0.5rem 1.5rem;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.05rem;
  box-shadow: 0 2px 12px 0 #00b4d81a;
  transition: background 0.2s, color 0.2s;
}
.producto-contacto:hover {
  background: var(--secondary);
  color: var(--white);
}

/* Reclutamiento */
.reclutamiento {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 8rem 2rem 8rem 2rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
  height: auto;
}

.reclutamiento-textos {
  display: flex;
  flex-direction: column;
  align-items: center;
}



.reclutamiento-bg-anim {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, #fff2 0 2px, transparent 2px 40px);
  opacity: 0.12;
  z-index: 0;
  animation: bgAnim 8s linear infinite alternate;
}
@keyframes bgAnim {
  0% { background-position: 0 0; }
  100% { background-position: 80px 80px; }
}
.reclutamiento-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
  flex-wrap: wrap;
}
.reclutamiento-logo-float {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reclutamiento-logo-img {
  width: 220px;
  border-radius: 50%;
  box-shadow: 0 0 40px 10px var(--accent), 0 0 0 8px #fff2;
  z-index: -2;
  background: #fff;
}
.reclutamiento-card-float {
  position: absolute;
  min-width: 110px;
  min-height: 45px;
  background: rgb(255 255 255 / 30%);
  box-shadow: 0 8px 32px 0 #00b4d81a;
  border-radius: 1.2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  padding: 0 1.1rem;
  animation: floatCard 3.5s infinite alternate;
  transition: transform 0.3s, box-shadow 0.3s;
  will-change: transform;
  border: 1.5px solid var(--accent);
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.1rem;
  
}

.reclutamiento-card-float span {
  font-weight: 900;
  color: black;
}

.reclutamiento-card-float.card-f1 {
  top: 0px; left: -80px;
  animation-delay: 0s;
}
.reclutamiento-card-float.card-f2 {
  bottom: -40px; right: 60px;
  animation-delay: 1.2s;
}
.reclutamiento-card-float.card-f3 {
  top: 33%; left: 75%;
  animation-delay: 2.1s;
}
.reclutamiento-titulo {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
.reclutamiento-subtitulo {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
}
.syslity-gradient {
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
}
.btn-whatsapp-join {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #25d366;
  color: #fff;
  border-radius: 2rem;
  padding: 0.7rem 2rem;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px 0 #25d3662a;
  transition: background 0.2s, color 0.2s;
}
.btn-whatsapp-join:hover {
  background: #128c7e;
  color: #fff;
}


.hero-metal-title {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(120deg, #ffffff, #b2fefa, #00ffe0);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 5s linear infinite;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 1rem;

  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.hero-metal-title::after {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  transform: scaleY(-1);
  opacity: 0.2;
  background: inherit;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: blur(3px);
}


.hero-metal-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
  animation: scanlight 3s infinite;
  border-radius: 20px;
}


@keyframes scanlight {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}


.hero-metal-title span {
  background: linear-gradient(120deg, #39ff14, #00ffe0, #00b4d8);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineTextAlt 6s linear infinite;
  display: inline-block;
}

@keyframes shineText {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes shineTextAlt {
  0% {
    background-position: 100% center;
  }
  100% {
    background-position: -100% center;
  }
}

.top-spotlights {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  pointer-events: none;
  z-index: 1;
}

.spotlight {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 80%);
  filter: blur(50px);
  transform: rotate(45deg);
  animation: moveLights 6s ease-in-out infinite alternate;
}

.spotlight.left {
  left: 10%;
}

.spotlight.right {
  right: 10%;
}

@keyframes moveLights {
  0% {
    transform: translateY(0) rotate(45deg);
  }
  100% {
    transform: translateY(30px) rotate(45deg);
  }
}


#tsparticles {


  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}


.reclutamiento::before {
  content: "";
  position: absolute;
  inset: 0;
  
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  z-index: 1;
}



.btn-glow {
  background: linear-gradient(90deg, #25d366, #00ff95);
  color: white;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 0 15px #25d36688;
  transition: all 0.3s ease-in-out !important;
  cursor: pointer;
  text-decoration: none;
}

.btn-glow:hover {
  box-shadow: 0 0 25px #00ff95, 0 0 35px #25d366;
  transform: scale(1.05);
  transition: all 0.3s ease !important;
}






/* Variables globales necesarias */
:root {
  --transition-speed: 0.8s ease-out;
  --glow-color: rgba(0,180,216,0.2);
  --gradient-1: linear-gradient(135deg, var(--secondary), var(--accent));
  --gradient-text: linear-gradient(45deg, var(--secondary), var(--accent));
}

/* Sección Misión */
.mision {
  background: linear-gradient(120deg, var(--primary), var(--primary-light));
  position: relative;
  overflow: hidden;
  perspective: 1000px;
  padding: 4rem 2rem 3rem;
}



/* Contenedor con profundidad */
.mision-container {
  position: relative;
  transform-style: preserve-3d;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Decoraciones 3D y parallax */
.mision-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mision-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
  filter: blur(120px);
  animation: pulseGlow 6s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
  from { opacity: 0.3; transform: translateX(-50%) scale(1); }
  to { opacity: 0.7; transform: translateX(-50%) scale(1.3); }
}

.mision-shape {
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  background: var(--gradient-1);
  opacity: 0.08;
  border-radius: 25%;
  transform-style: preserve-3d;
  animation: rotateShape 25s linear infinite;
}

@keyframes rotateShape {
  to { transform: rotateY(360deg) rotateX(360deg); }
}

/* Partículas de fondo en movimiento */
.mision-particles {
  position: absolute;
  inset: 0;
  background-image: url('https://cdn.pixabay.com/photo/2017/01/06/19/15/glow-1957403_1280.png');
  background-size: cover;
  opacity: 0.04;
  animation: moveParticles 50s linear infinite;
}

@keyframes moveParticles {
  to { background-position: 100% 100%; }
}

/* Contenido con slide-in y efecto flotante */
.mision-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  transform: translateZ(40px);
  opacity: 0;
  transform: translateY(60px);
  transition: opacity var(--transition-speed), transform var(--transition-speed);
}

.mision-content.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Efecto flotante leve */
.mision-content.animated-float {
  animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
  0%,100% { transform: translateY(0) translateZ(40px); }
  50% { transform: translateY(-10px) translateZ(40px); }
}

/* Título y texto con estilo */
.mision-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform var(--transition-speed);
}

.mision-text {
  font-size: 1.4rem;
  color: var(--gray-200);
  line-height: 1.6;
  letter-spacing: 1px;
  text-shadow: 0 0 8px var(--glow-color);
  transition: transform var(--transition-speed);
}

/* Micro-interacción al hover */
.mision-content:hover .mision-title,
.mision-content:hover .mision-text {
  transform: translateY(-3px);
}

/* Slide-in por scroll */
@media (prefers-reduced-motion: no-preference) {
  .mision-content {
    will-change: transform, opacity;
  }
}



/* Responsive */
@media (max-width: 768px) {
  .mision-shape { display: none; }
  .mision-glow { width: 250px; height: 250px; }
  .mision-content { padding: 0 1.5rem; }
  .mision-title { font-size: 2.4rem; }
  .mision-text { font-size: 1.1rem; }
}



/* Contacto y Newsletter */
.contact {
  background: var(--primary);
  padding: 5rem 2rem 4rem 2rem;
  position: relative;
  z-index: 2;
}
.contact-container {
  display: flex;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}
.contact-content {
  flex: 1 1 340px;
  min-width: 600px;
}
.contact-info {
  margin-top: 2.2rem;
  color: var(--white);
  font-size: 1.1rem;
  padding: 20px;
  gap: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-form-wrapper {
  flex: 1 1 340px;
  min-width: 300px;
  background: rgba(0,180,216,0.07);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px 0 #00b4d81a;
  padding: 2.2rem 1.7rem 1.7rem 1.7rem;
  margin-top: 1.2rem;
  transition: box-shadow 0.3s;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-group {
  position: relative;
  margin-bottom: 1.2rem;
}
.form-label {
  position: absolute;
  top: 1.1rem; left: 2.6rem;
  color: #888;
  font-size: 1rem;
  pointer-events: none;
  transition: 0.2s;
  background: #fff;
  padding: 0 0.3rem;
  border-radius: 0.5rem;
}
.form-input {
  width: auto;
  padding: 1.1rem 1.2rem 1.1rem 2.7rem;
  border-radius: 1.2rem;
  border: 1.5px solid #ddd;
  font-size: 1.05rem;
  background: #fff;
  color: var(--primary);
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus {
  border-color: var(--secondary);
  box-shadow: 0 2px 12px 0 #00b4d81a;
}
.input-icon {
  position: absolute;
  top: 1.1rem; left: 1.2rem;
  color: #bbb;
  font-size: 1.2rem;
  transition: color 0.2s;
}
.form-group.focused .form-label,
.form-input:focus + .form-label,
.form-input.valid + .form-label {
  top: -0.7rem;
  left: 1.1rem;
  font-size: 0.92rem;
  color: var(--secondary);
  background: #fff;
  padding: 0 0.5rem;
}
.form-group.focused .input-icon,
.form-input:focus ~ .input-icon,
.form-input.valid ~ .input-icon {
  color: var(--secondary);
}
.contact-form button[type="submit"] {
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  color: var(--white);
  border: none;
  border-radius: 2rem;
  padding: 0.8rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 #00b4d81a;
  transition: background 0.2s, transform 0.18s;
}
.contact-form button[type="submit"]:hover {
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  transform: scale(1.07);
}
.contact-form button.success {
  background: #25d366;
  color: #fff;
}

/* Newsletter */
.footer-newsletter {
  margin-top: 2.2rem;
  background: rgba(0,180,216,0.07);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px 0 #00b4d81a;
  padding: 2.2rem 1.7rem 1.7rem 1.7rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}
.newsletter-form {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.2rem;
}
.newsletter-form input {
  flex: 1 1 180px;
  padding: 0.8rem 1.2rem;
  border-radius: 1.2rem;
  border: 1.5px solid #ddd;
  font-size: 1.05rem;
  background: #fff;
  color: var(--primary);
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
}
.newsletter-form input:focus {
  border-color: var(--secondary);
  box-shadow: 0 2px 12px 0 #00b4d81a;
}
.newsletter-form button {
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  color: var(--white);
  border: none;
  border-radius: 2rem;
  padding: 0.8rem 1.7rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 #00b4d81a;
  transition: background 0.2s, transform 0.18s;
}
.newsletter-form button:hover {
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  transform: scale(1.07);
}

/* Footer Moderno */
.footer {
  background: #111;
  color: #fff;
  padding: 3rem 2rem 1.2rem 2rem;
  position: relative;
  z-index: 2;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-main {
  flex: 1 1 140px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.footer-description {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  text-align: center;
}
.footer-social {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.footer-social a {
  color: var(--accent);
  font-size: 1.5rem;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: var(--secondary);
}
.footer-newsletter h4 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.footer-bottom {
  border-top: 1.5px solid #fff2;
  margin-top: 2.2rem;
  padding-top: 1.2rem;
  text-align: center;
  color: #fff;
  font-size: 1rem;
}
.footer-info p {
  margin: 0;
}

/* Scroll Top Button */
.scroll-top {
  position: fixed;
  bottom: 2.2rem;
  right: 2.2rem;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  color: #fff;
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 2px 12px 0 #00b4d81a;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.2s;
  z-index: 200;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}


.footer-logo-img {
  width: 120px;
  border-radius: 50px;
}


/* Efectos 3D y animaciones en cards y logo */
.logo-3d {
  transition: transform 0.7s cubic-bezier(.77,0,.18,1), box-shadow 0.5s;
  will-change: transform, box-shadow;
}
.logo-3d:hover, .logo-3d.active {
  transform: rotateY(18deg) rotateX(12deg) scale(1.08);
  box-shadow: 0 16px 64px 0 #00b4d8cc, 0 0 0 16px #fff3;
}
.card-3d {
  transition: transform 0.7s cubic-bezier(.77,0,.18,1), box-shadow 0.5s;
  will-change: transform, box-shadow;
}
.card-3d:hover, .card-3d.active {
  transform: rotateY(-12deg) rotateX(8deg) scale(1.06);
  box-shadow: 0 12px 48px 0 #48cae4cc, 0 0 0 8px #00b4d84a;
}

/* Iconos animados y microinteracciones */
.animated-icon {
  transition: color 0.3s, transform 0.4s cubic-bezier(.77,0,.18,1), filter 0.3s;
  will-change: transform, color, filter;
}
.animated-icon:hover, .animated-icon.active {
  color: var(--secondary);
  transform: scale(1.18) rotateZ(-8deg);
  filter: drop-shadow(0 0 8px var(--accent));
}

/* Botones animados */
.animated-btn {
  transition: background 0.3s, color 0.3s, transform 0.18s, box-shadow 0.3s;
  will-change: transform, box-shadow;
}
.animated-btn:hover, .animated-btn:focus {
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  color: var(--white);
  transform: scale(1.08) translateY(-2px) rotateZ(-2deg);
  box-shadow: 0 8px 32px 0 #00b4d84a;
}

/* Glassmorphism efecto */
.glassmorph {
  
  box-shadow: 0 8px 32px 0 #00b4d81a;
  backdrop-filter: blur(16px);
  
}

/* Contacto animaciones extra */
.info-card {
  animation: fadeInUp 1.1s cubic-bezier(.77,0,.18,1) both;
  transition: box-shadow 0.3s, background 0.3s;
}
.info-card:hover {
  background: rgba(0,180,216,0.13);
  box-shadow: 0 4px 24px 0 #00b4d84a;
}
.input-icon.animated-icon {
  transition: color 0.3s, transform 0.4s cubic-bezier(.77,0,.18,1);
}
.input-icon.animated-icon:focus-within, .input-icon.animated-icon.active {
  color: var(--secondary);
  transform: scale(1.18);
}

/* Reclutamiento cards animadas */
.reclutamiento-card-float.card-3d {
  cursor: pointer;
}
.reclutamiento-card-float.card-3d:hover {
  background: rgba(0,180,216,0.13);
  box-shadow: 0 8px 32px 0 #48cae4cc, 0 0 0 8px #00b4d84a;
  transform: scale(1.08) rotateY(-8deg) rotateX(6deg);
}
.reclutamiento-card-float .animated-icon {
  animation: iconPulse 1.5s infinite alternate;
}
@keyframes iconPulse {
  0% { filter: drop-shadow(0 0 0px var(--accent)); }
  100% { filter: drop-shadow(0 0 12px var(--secondary)); }
}

/* Footer social iconos animados */
.footer-social .animated-icon {
  transition: color 0.3s, transform 0.4s cubic-bezier(.77,0,.18,1), filter 0.3s;
}
.footer-social .animated-icon:hover {
  color: var(--secondary);
  transform: scale(1.18) rotateZ(-8deg);
  filter: drop-shadow(0 0 8px var(--accent));
}

/* Animaciones de aparición */
/* .feature-card.animate, .tecnico-card.animate, .producto-card.animate, .contact-form-wrapper.animate {
  animation: fadeInUp 1.1s cubic-bezier(.77,0,.18,1) both;
} */


@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}



/* Para todo el scrollbar de la página */
::-webkit-scrollbar {
  width: 26px; /* Ancho del scrollbar vertical */
  height: 10px; /* Alto del scrollbar horizontal */
}

/* El fondo del scrollbar */
::-webkit-scrollbar-track {
  background: #1e2023; /* Color de fondo del track (pista) */
  border-radius: 10px; /* Bordes redondeados del track */
}

/* El "pulgar" o la barra que se mueve */
::-webkit-scrollbar-thumb {
  background: #3cc6e2; /* Color de la barra (thumb) */
  border-radius: 10px; /* Bordes redondeados de la barra */
}

/* Al pasar el mouse sobre la barra */
::-webkit-scrollbar-thumb:hover {
  background: #2992a7; /* Color de la barra al pasar el mouse */
  transition: 0.3s ease;
  width: 25px;
}

/* Para un elemento específico con scroll (ej. un div con overflow) */
/* Si tienes un div específico con scroll, puedes aplicarlo así: */
.mi-elemento-con-scroll::-webkit-scrollbar {
  width: 8px; /* Ancho más pequeño para este elemento */
}

.mi-elemento-con-scroll::-webkit-scrollbar-track {
  background: #e0e0e0;
}

.mi-elemento-con-scroll::-webkit-scrollbar-thumb {
  background: #6c757d;
}

.mi-elemento-con-scroll::-webkit-scrollbar-thumb:hover {
  background: #495057;
}


#donar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.donar-titulo {
  
  font-size: 3.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f7f7f7, #d4d4d4, #eeeeee, #b0b0b0);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 6s ease-in-out infinite;
  text-shadow: 0 2px 12px rgb(255 255 255 / 33%), 0 1px 2px rgb(255 255 255 / 23%);
  letter-spacing: 0.4px;
  line-height: 1.2;
}

@keyframes shimmerText {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}



#donar-subs {
  font-size: 25px;
  padding: 0;
  letter-spacing: 1px;
}

.donar-sub-1 {
  font-size: 1.6rem;
}

.donar-equipo {
  padding: 4rem 2rem 15rem 2rem;
}


/* Transición y animación del botón */
.btn-donar {
  background-color: #25d366;
  color: white;
  font-weight: bold;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  border-radius: 50px;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-donar:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Transición de títulos y párrafo */
.reclutamiento-titulo,
.reclutamiento-subtitulo {
  transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .reclutamiento-subtitulo {
    font-size: 1rem;
  }

  #donar-subs {
    font-size: 1.2rem;
    padding: 0 15px;
  }

  .btn-donar {
    font-size: 1rem;
    padding: 0.8rem 1.6rem;
  }
}




.particles-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.reclutamiento,
.otra-seccion {
  position: relative;
  overflow: hidden;

}

/* Asegura que el contenido esté por encima de las partículas */
.reclutamiento-textos,
.otros-elementos {
  position: relative;
  z-index: 2;
}


@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

[data-aos="slide-in-left"] {
  opacity: 0;
  animation: slideInFromLeft 1.2s ease-out forwards;
}

[data-aos="slide-in-right"] {
  opacity: 0;
  animation: slideInFromRight 1.2s ease-out forwards;
}







/* Responsividad */
@media (max-width: 1100px) {
  .hero-container, .footer-content, .contact-container {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .hero-content, .hero-image {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 1150px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }

  
  .swiper-wrapper {
    gap: 1.5rem;
  }
  
  .hero-title {
    font-size: 3.3rem;
  }

  .hero-subtitle {
    font-size: 2rem;
    letter-spacing: 1px;
    padding: 0;
    margin: 1rem 0;
  }

  .hero-buttons {
    gap: 5rem;
  }

  .animated-button {
    font-size: 1.8rem;
  }

  .hero-badge {
    justify-content: center;
  }

  .hero-container {
    flex-direction: column;
    gap: 2.5rem;
    padding: 5rem 1rem 6rem 1rem;
  }
  .image-container {
    width: 220px; height: 220px;
  }
  .hero-img {
    width: 300px; height: 300px;
  }

  .hero-subtitle {
    text-align: center;
    padding: 0 5rem;
  }

  .hero-content {
    text-align: center;
    padding-bottom: 2rem;
    align-items: center;
    text-align: center;
  }

  .floating-card.card-1 {
    top: -40px;
    left: -130px;
  }

  .floating-card.card-2 {
    bottom: -65px;
    right: 100px;
  }

  .floating-card.card-3 {
    top: 25%;
    left: 75%;
  }

  .navbar-container {
    padding: 1.4rem 2rem;
  }

  .mobile-menu-btn span {
    width: 50px;
    height: 8px;
  }
}

@media (max-width: 995px) {
  .donar-titulo {
    font-size: 3rem;
  }

  #donar-subs {
    font-size: 22px;
  }

  .hero-metal-title {
    font-size: 2.7rem;
  }
}

@media (max-width: 700px) {
  .features-grid, .tecnicos-grid, .compra-venta-grid {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .footer-content {
    flex-direction: column;
    gap: 2.2rem;
    align-items: center;
  }
  .footer-newsletter {
    max-width: 100%;
  }
  .contact-container {
    flex-direction: column;
    gap: 2.2rem;
    align-items: center;
  }

  .contact-content {
    min-width: 50px;

  }

  .swiper-wrapper {
    gap: 1.5rem;
  }

  .tecnico-contacto {
    display: inline;
  }

  .hero-title {
    font-size: 3rem;
    padding: 0 1rem;
  }

  .hero-subtitle {
    padding: 0 1rem;
  }

  .animated-button {
    font-size: 1.5rem;
  }

  .floating-card .card-title {
    font-size: 1rem;
  }

  .floating-card {
    padding: 0.2rem 1rem;
  }

  .hero-buttons {
    gap: 3rem;
  }


  .reclutamiento-textos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .reclutamiento-card-float {
    padding: 0 0.5rem;
    font-size: 1rem;
  }
}


@media (max-width: 620px) {
  .hero-title {
    font-size: 2.7rem;
  }

  .donar-titulo {
    font-size: 2.5rem;
  }

  .animated-button {
    font-size: 1.3rem;
  }

  .hero-buttons {
    gap: 2rem;
  }

  .contact-content {
    width: 90%;
  }

  .contact-form-wrapper {
    width: 70%;
    padding: 0;
  }

  .form-input {
    width: 70%;
  }

  .reclutamiento-titulo {
    font-size: 2rem;
  }
}



@media (max-width: 595px) {
  .hero-img {
    width: 250px;
    height: 250px;
  }

  .floating-card, .card-icon {
    font-size: 1.5rem !important;
  }

  .hero-metal-title {
    font-size: 2.4rem;
  }

  #donar-subs {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .reclutamiento {
    padding: 3rem 0.5rem 5.5rem 0.5rem;
  }
  


  .floating-card.card-1 {
    top: -10px;
    left: -100px;
  }

  .footer-newsletter {
    max-width: 80%;
  }

  .newsletter-form input {
    width: 10px;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-subtitle {
    font-size: 1.7rem;
  }
  
}

@media (max-width: 530px) {
  .floating-card {
    display: none;
  }

  .hero-subtitle {
    margin-bottom: 1rem;
    margin-top: 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  
  .mision-img {
    width: 70%;
  }
}


@media (max-width: 500px) {
  html {
    font-size: 15px;
  }
  .navbar-container {
    padding: 0.5rem 0.7rem;
  }
  .hero-container {
    padding: 2rem 0.5rem 0.5rem 0.5rem;
  }
  .features, .tecnicos, .compra-venta, .reclutamiento, .contact {
    padding: 3rem 0.5rem 5rem 0.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  
}


@media (max-width: 475px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }

  .feature-card {
    min-width: 200px;
  }

  .producto-card {
    min-width: 200px;
  }
}



@keyframes menuBounceIn {
  0% {
    transform: translateX(100%) scale(0.96) rotateY(30deg);
    opacity: 0;
  }
  80% {
    transform: translateX(-10px) scale(1.03) rotateY(-2deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0) scale(1) rotateY(0deg);
    opacity: 1;
  }
}



.close-mobile-menu {
  background: #00b4d8;
    border-radius: 20px;
    width: 100px;
    height: 40px;
    font-size: 20px;
    font-weight: 900;
}