/* Fuente y reinicio */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: linear-gradient(135deg, #000000, #0a0a33, #1a0033);
  color: white;
  overflow-x: hidden;
}

/* Efecto plateado (metálico) 
.text-silver {
  background: linear-gradient(145deg, #dcdcdc, #a6a6a6, #f5f5f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(200, 200, 255, 0.2);
  font-weight: 700;
}

/* Efecto violeta/azul brillante 
.text-violet {
  background: linear-gradient(90deg, #7a5cf5, #4b91ff);
 -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(120, 90, 255, 0.7);
  font-weight: 700;
}*/
 /* ---- ESTILOS DEL LOGO GIVE CODE ---- */
.brand {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 20px;
}

/* PLATEADO (efecto metálico) */
.text-silver {
  background: linear-gradient(145deg, #dcdcdc, #a6a6a6, #f5f5f5);
  background-clip: text;
  -webkit-background-clip: text; /* Compatibilidad WebKit */
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(200, 200, 255, 0.2);
  position: relative;
  animation: shine 5s infinite linear;
}

/* VIOLETA / AZUL (efecto luminoso) */
.text-violet {
  background: linear-gradient(90deg, #7a5cf5, #4b91ff);
  background-clip: text;
  -webkit-background-clip: text; /* Compatibilidad WebKit */
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(120, 90, 255, 0.6);
  position: relative;
  animation: shine 5s infinite linear;
}

/* Efecto de brillo móvil tipo “reflejo metálico” */
@keyframes shine {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.6);
  }
  100% {
    filter: brightness(1);
  }
}
 

/*------------------------ Navbar ---------------------------*/
.navbar {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(20, 20, 40, 0.9));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #3a3a3a;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  padding: 0.8rem 2rem;
  box-shadow: 0 0 20px rgba(80, 80, 255, 0.3);
}

/* Contenedor del nav */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO DE TEXTO (Give Code) */
.brand {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(145deg, #dcdcdc, #a6a6a6, #f5f5f5);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(180, 180, 255, 0.4);
  animation: shine 5s infinite linear;
}

.brand span {
  background: linear-gradient(90deg, #7a5cf5, #4b91ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(120, 90, 255, 0.7);
}

/* LINKS DEL NAV */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

/* BOTONES DEL NAV */
.nav-links a {
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #d0d0d0;
  border: 1px solid rgba(10, 10, 58, 0.3);
  border-radius: 20px;
   background: linear-gradient(90deg, #0a023a, #32163f);
  box-shadow: inset 1px 1px 2px rgba(3, 16, 88, 0.733),
              2px 2px 8px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

/* Hover con efecto 3D y luz */
.nav-links a:hover {
  color: #fff;
  border-color: #7a5cf5;
  background: linear-gradient(145deg, #bd6ed1, #080536);
  box-shadow: 0 0 15px rgba(120, 90, 255, 0.8);
  transform: translateY(-2px);
}

/* Animación del brillo */
@keyframes shine {
  0% { filter: brightness(1); }
  50% { filter: brightness(1.5); }
  100% { filter: brightness(1); }
}


/* Sección principal */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 100px;
}

/* Logo animado */
.logo-container {
  perspective: 1000px;
}

.logo-3d {
  width: 200px;
  height: auto;
  animation: rotateLogo 12s linear infinite;
  filter: drop-shadow(0 0 15px rgba(120, 90, 255, 0.8));
}

@keyframes rotateLogo {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

/* Texto principal */
.slogan {
  margin-top: rem;
  font-size: 1.5rem;
  color: #cfd3ff;
  text-shadow: 0 0 15px rgba(130, 130, 255, 0.4);
}

/* Botones */
.btn-container {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
}

.btn {
  background: linear-gradient(90deg, #c875dd, #7a5cf5);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(100, 100, 255, 0.6);
}

.btn-outline {
  background: transparent;
  border: 2px solid #7a5cf5;
}
.btn-outline:hover {
  background: #7a5cf5;
  color: white;
}

/* ---------------------- SCROLL INDICATOR ----------------- */
.scroll-down {
  text-align: center;
  margin-top: 80px;
  color: #d0d0d0;
  animation: fadeIn 2s ease-in-out;
}

.scroll-text {
  font-size: 1rem;
  letter-spacing: 1px;
  color: #a6a6a6;
  margin-bottom: 10px;
  display: block;
}

/* Estilo del mouse */
.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid #7a5cf5;
  border-radius: 15px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 10px rgba(120, 90, 255, 0.4);
}

.wheel {
  width: 6px;
  height: 10px;
  background: linear-gradient(90deg, #7a5cf5, #4b91ff);
  border-radius: 4px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

/* La manito (emoji animado) */
.hand-icon {
  font-size: 1.8rem;
  margin-top: 12px;
  color: #7a5cf5;
  text-shadow: 0 0 10px rgba(120, 90, 255, 0.8);
  animation: handMove 2s infinite ease-in-out;
}

/* Animaciones */
@keyframes scroll {
  0% { top: 10px; opacity: 1; }
  50% { top: 25px; opacity: 0.5; }
  100% { top: 10px; opacity: 1; }
}

@keyframes handMove {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- SECCIÓN MISIÓN, VISIÓN Y VALORES ---------- */
.mision-section {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
  overflow: hidden;
}

.mision-section .overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 20, 0.85); /* oscurece la imagen para legibilidad */
  z-index: 0;
}

.mision-section .container {
  position: relative;
  z-index: 2;
}

/* ---------- EFECTO 3D EN LOS TÍTULOS ---------- */
.text-3d-light {
  text-shadow:
    1px 1px 2px #000,
    2px 2px 3px rgba(122, 92, 245, 0.6),
    3px 3px 5px rgba(75, 145, 255, 0.4);
  letter-spacing: 1px;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.text-3d-light:hover {
  transform: scale(1.05);
  text-shadow:
    2px 2px 4px #000,
    3px 3px 6px rgba(122, 92, 245, 0.8),
    4px 4px 8px rgba(75, 145, 255, 0.6);
}
/* ----------- LISTA DE VALORES ----------- */
.valores-list {
  text-align: justify;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 0;
}

.valores-list li {
  margin-bottom: 1rem;
  line-height: 1.7;
  font-size: 1.05rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.icon-violet {
  color: #7a5cf5;
  font-size: 1.3rem;
  margin-top: 3px;
  flex-shrink: 0;
  text-shadow: 0 0 10px rgba(122, 92, 245, 0.6);
}

/* Hover animado en los íconos */
.valores-list li:hover .icon-violet {
  transform: scale(1.2);
  transition: all 0.3s ease;
  color: #4b91ff;
}

/*----------------------------------- Fondo sección servicios-------------------------------------- */
.servicios-section {
  background: linear-gradient(rgba(15, 15, 30, 0.7), rgba(15, 15, 30, 0.7)),
              url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1500&q=80");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #fff;
}

/* Tarjetas 3D */
.service-card {
  background: rgba(215, 165, 228, 0.1);
  border: 1px solid rgba(200, 200, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 25px rgba(120, 90, 255, 0.3);
}

/* Íconos de servicios */
.icon-service {
  color: #7a5cf5;
  text-shadow: 0 0 12px rgba(122, 92, 245, 0.8);
  transition: transform 0.3s ease, color 0.3s ease;
}
.service-card:hover .icon-service {
  color: #041a3d;
  transform: rotate(10deg) scale(1.1);
}

/* Botón violeta */
.btn-violet {
  background: linear-gradient(135deg, #110a2e, #e14bff);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 8px 16px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}
.btn-violet:hover {
  background: linear-gradient(135deg, #4b91ff, #7a5cf5);
  transform: scale(1.05);
}

/* ----------Estilos generales para los íconos sociales-------- */
.social-icons a {
  color: #d0d0d0;
  font-size: 1.6rem; /* tamaño base */
  margin: 0 10px;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Efecto hover */
.social-icons a:hover {
  transform: scale(1.3) rotate(5deg);
  text-shadow: 0 0 10px rgba(122, 92, 245, 0.8);
}

/* Colores específicos al pasar el mouse */
.social-icons a:hover .fa-facebook-f {
  color: #4b91ff; /* Azul */
}
.social-icons a:hover .fa-instagram {
  color: #c13584; /* Rosa violeta tipo Instagram */
}
.social-icons a:hover .fa-linkedin-in {
  color: #0a66c2; /* Azul LinkedIn */
}
.social-icons a:hover .fa-whatsapp {
  color: #25D366; /* Verde WhatsApp */
}
.social-icons a:hover .fa-github {
  color: #ffffff; /* Blanco */
}
.social-icons a:hover .fa-envelope {
  color: #7a5cf5; /* Violeta */
}

/* Opción extra: animación suave de aparición */
.social-icons a {
  opacity: 0.9;
}
.social-icons a:hover {
  opacity: 1;
}
