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

body {
  background: #020205;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

section {
  padding: 100px 10%;
}

img {
  max-width: 100%;
  border-radius: 18px;
}

a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #00d2ff;
}

.hidden {
  opacity: 0;
  transform: translateY(40px);
}

.show {
  opacity: 1;
  transform: translateY(0);
  transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.header {
  background: rgba(10, 10, 15, 0.75);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 10%;
  position: sticky;
  top: 0;
  z-index: 999;
}
.header__logo {
  font-weight: 900;
  letter-spacing: 3px;
}
.header__nav ul {
  display: flex;
  gap: 3rem;
  list-style: none;
}
.header__nav a {
  position: relative;
  padding-bottom: 6px;
}
.header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #00d2ff;
  transition: 0.3s;
}
.header__nav a:hover::after {
  width: 100%;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 85vh;
  text-align: center;
  position: relative;
  padding: 0 10%;
}
.hero__title {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero__subtitle {
  max-width: 620px;
  color: #b0b0b0;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 210, 255, 0.12), transparent 60%);
  pointer-events: none;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

@media (max-width: 900px) {
  .hero__title {
    font-size: 3rem;
  }
  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* scss/_componentes.scss */
.btn-principal {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: linear-gradient(135deg, #00d2ff, #6ae3ff);
  color: #000;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  transition: 0.3s;
  box-shadow: 0 15px 35px rgba(0, 210, 255, 0.35);
  border: none;
  cursor: pointer;
}
.btn-principal:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 25px 60px rgba(0, 210, 255, 0.6);
  background: #fff;
}

.grid__card {
  background: linear-gradient(145deg, #0a0a0f, #050509);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.grid__card h3 {
  color: #00d2ff;
  margin-bottom: 1rem;
}
.grid__card p {
  color: #b0b0b0;
  font-size: 0.95rem;
}
.grid__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(0, 210, 255, 0.18), transparent);
  opacity: 0;
  transition: 0.4s;
}
.grid__card:hover::before {
  opacity: 1;
}
.grid__card:hover {
  transform: translateY(-10px) scale(1.04);
  border-color: #00d2ff;
}

.contato {
  max-width: 600px;
  margin: 0 auto 100px;
  padding: 0 20px;
}
.contato__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contato__field {
  background: #0a0a0f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 1.2rem;
  border-radius: 12px;
  outline: none;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: 0.3s;
}
.contato__field:focus {
  border-color: #00d2ff;
  box-shadow: 0 0 0 4px rgba(0, 210, 255, 0.15);
  background: rgba(0, 210, 255, 0.02);
}
.contato textarea {
  resize: vertical;
  min-height: 150px;
}
.contato .btn-principal {
  align-self: center;
}/*# sourceMappingURL=estilos.css.map */