@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@1,400&display=swap');


@font-face {
  
  font-family: 'Vanchrome';
  src: url('fonts/Vanchrome Front.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Source Code Pro', monospace;
  background-color: #050008;
  color: #fff;
  overflow-x: hidden;
  /* height: 5000px; */
}

body.no-scroll {
  overflow: hidden;
}
/* clases reutulizadas */

.grid-background {
  background-color: #07010b;
  background-image:
    linear-gradient(to right, rgba(185, 9, 208, 0.35) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(185, 9, 208, 0.15) 1px, transparent 1px);
  background-size: 120px 80px;
}


/* NAVBAR FIJO */

.navbar {
  position: fixed;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  max-width: 1200px;
  padding: 0.8rem 1.5rem;
  background-color: #050008a1;
  border-radius: 0.4rem;
  box-shadow: 0 0 15px rgba(255, 116, 212, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}



.logo img {
  width: 150px;
  height: 65px;
  object-fit: contain;
}

/* ENLACES NAV DESKTOP */

.nav-link.active {
  color: #ff74d4;
  font-weight: bold;
  position: relative;
}

.nav-link.active::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #ff74d4, #6a5af9);
  position: absolute;
  bottom: -5px;
  left: 0;
  border-radius: 5px;
}

.nav-links ul {
  display: flex;
  list-style: none;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-links ul li a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  font-size: 14px;
}

.nav-links ul li a:hover {
  color: #ff74d4;
}

/* ICONO SVG MENÚ MÓVIL */

.menu-icon {
  display: none;
}

.menu-icon img {
  width: 21px;
  height: 21px;
  cursor: pointer;
  transition: transform 0.3s ease;
}


/* MENÚ MÓVIL */

.mobile-menu {
  flex-direction: column;
  background-color: #060209;
  box-shadow: 0 0 15px rgba(255, 116, 212, 0.1);
  border-radius: 1rem;
  gap: 1rem;
  width: 70%;
  max-width: 300px;
  margin: 1rem auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  padding: 80px 0 20px;


.mobile-menu.show {
  display: flex;
}

}
.mobile-menu.show {
  display: flex !important;
}
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

.mobile-menu a:hover {
  color: #ff74d4;
}

/* ESTILO CUANDO HACES SCROLL */

.navbar.scrolled {
  background-color: #07010bcc;
  box-shadow: 0 4px 20px rgba(255, 116, 212, 0.5);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}


@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu.show {
  display: flex !important;
  animation: slideDown 0.3s ease forwards;
}


/* Enlace estilo botón con borde degradado */

.contact-link {
  padding: 0.5rem 3rem;
  border: 2px solid transparent;
  border-radius: 5px;
  background: 
    linear-gradient(#07010b, #07010b) padding-box,
    linear-gradient(to right, #ff74d4, #6a5af9) border-box;
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: transparent;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 0;
}

#scrollTopBtn img {
  width: 20px;
  height: 20px;
  display: block;
  filter: drop-shadow(0 0 5px #ff74d4);
  margin: 0rem 0rem 0rem 15rem;
}

#scrollTopBtn.show {
  opacity: 1;
  pointer-events: auto;
}

/* RESPONSIVE */

@media (max-width: 800px) {
  .nav-links {
    display: none;
  }

  .menu-icon {
    display: flex;
  }

  .mobile-menu.show {
    display: flex;
    align-items: center;
    width: 95%;
    margin: 1rem auto;
    margin-top: 8rem;
  }
  .logo img {
  width: 100px;
  height: 50px;
  object-fit: contain;
}
.menu-icon img {
  width: 22px;
  height: 21px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

}


/* hero-section */

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
  text-align: center;
}

.hero-content {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

h1 {
  font-family: 'Vanchrome', sans-serif;
  font-size: 100px;
  line-height: 1.1;
  margin: 0;
}

p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 26px;
  font-style: italic;
  max-width: 800px;
}

button {
  font-family: 'Source Code Pro', monospace;
  font-size: 18px;
  width: 313px;
  height: 60px;
  background: linear-gradient(90deg, #451D97, #CF1CF0);
  border: none;
  color: white;
  cursor: pointer;
  transition: transform 0.2s;
}

button:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 48px;
     font-family: 'Vanchrome', sans-serif;
  }

  p {
    font-size: 18px;
  }

  button {
    width: 100%;
    max-width: 250px;
     height: 50px;
    font-size: 14px;
  }
}


/* why us section */
.why-us {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 20px;
  text-align: center;
}

.title {
  font-family: 'Vanchrome', sans-serif;
  font-size: 140px;
  color: #ab1fab4b;
  margin-bottom: 60px;
}

.box {
  background-color: #0a0a0a;
  box-shadow: 0 0 30px #ee00ff72;
  padding: 40px;
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why-us ul  {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 22px;
  width: 100%;
    font-family: 'Source Sans Pro', sans-serif;
}

li {
  margin-bottom: 20px;
  text-align: left;
  font-weight: 700;
}
li:hover{
  color: #CF1CF0;
}

/* Responsive */
@media (max-width: 768px) {
  .title {
    font-size: 75px;
    text-align: left;
  }

  .box {
    padding: 20px;
  }

 .why-us ul {
    font-size: 16px;
  }
}

/* our-service */

.services {
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.section-title {
  font-family: 'Vanchrome', sans-serif;
  font-size: 120px;
  color: #d303d375;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-box {
 
  box-shadow: 0 0 20px #c800ff74;
  padding: 40px 30px;
  background-color: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-height: 180px;
  justify-content: center;
}

.service-box .number {
  font-size: 28px;
  color: #666;
  font-weight: bold;
  margin-bottom: 15px;
   font-family: 'Vanchrome', sans-serif;
}

.service-box .desc {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
   font-family: 'Vanchrome', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 68px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-box {
    padding: 30px 20px;
    text-align: left;
  }
}
