@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100..900&family=Roboto:wght@100..900&display=swap");
/* Fonts color */
/* Background fonts */
/* Background */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #030521;
  color: #977B32;
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  background-image: url(https://res.cloudinary.com/dsqw6l3qb/image/upload/v1779045005/ConjuntoLineas_zgvqtx.png);
  background-position: top center;
  background-repeat: no-repeat;
}

.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid #001242;
}
.main-header .logo {
  font-family: "Raleway", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #977B32;
  text-decoration: none;
  letter-spacing: 1px;
}
.main-header .nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.main-header .nav-menu a {
  color: #977B32;
  text-decoration: none;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  transition: opacity 0.2s ease;
}
.main-header .nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #977B32;
  transition: width 0.25s ease;
}
.main-header .nav-menu a:hover {
  opacity: 0.7;
}
.main-header .nav-menu a:hover::after {
  width: 100%;
}
.main-header .menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #977B32;
  cursor: pointer;
}

@media (max-width: 768px) {
  .main-header {
    padding: 1rem 1.5rem;
  }
  .main-header .menu-toggle {
    display: block;
  }
  .main-header .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    flex-direction: column;
    width: 200px;
    padding: 1rem;
    gap: 1rem;
    display: none;
    border-radius: 0 0 0 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  .main-header .nav-menu.open {
    display: flex;
  }
  .main-header .nav-menu a {
    padding: 0.5rem 0;
  }
}
.container {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 0;
}
.hero h1 {
  font-family: "Raleway", sans-serif;
  font-size: 3rem;
  font-weight: 500;
}
.hero img {
  width: 100%;
  max-width: 1080px;
  filter: grayscale(100%);
}

.section {
  margin: 4rem 0;
}
.section h2 {
  font-family: "Raleway", sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.section p {
  max-width: 700px;
}

.center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.expertise-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .expertise-wrapper {
    grid-template-columns: 1fr;
  }
}
.expertise-block {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.expertise-block h3 {
  font-family: "Raleway", sans-serif;
  margin-bottom: 0.5rem;
}
.expertise-block img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: brightness(1.2);
  transition: transform 0.35s ease, filter 0.35s ease;
  transform-origin: center;
}
.expertise-block:hover img {
  transform: scale(1.12);
  filter: brightness(1.35);
}
.expertise-block .tech-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}
.expertise-block .tech-list li {
  background: #977B32;
  color: #030521;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Raleway", sans-serif;
  letter-spacing: 0.5px;
}

.expertise-block.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.main-footer {
  text-align: center;
  padding: 2rem 0;
  margin-top: 4rem;
  background: rgba(0, 0, 0, 0.35);
  color: #977B32;
  font-family: "Raleway", sans-serif;
}
.main-footer h5 {
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero img {
    margin-top: 2rem;
    width: 80vw;
    max-width: 420px;
  }
  .nav-menu {
    gap: 1rem;
  }
}

/*# sourceMappingURL=main.css.map */
