/* =========================
   RESET & BASE
========================= */

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

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  background: linear-gradient(135deg, #073254, #00162C, #000000);
  background-attachment: fixed;
  color: #fff;
  font-family: "Geist Mono", monospace;
  line-height: 1.5;
  font-size: 1.6rem;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

/* =========================
   HEADER
========================= */

header {
  background-color: #d9d9d935;
  width: 100%;
}

.header {
  width: 85%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.logo img {
  width: 15rem;
  height: auto;
}

.menuIcon {
  display: none;
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
}

.mainMenu {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.mainMenu a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mainMenu a:hover {
  color: #00000078;
}

@media (max-width: 900px) {
  .header {
    flex-direction: column;
    text-align: center;
  }

  .mainMenu {
    flex-direction: column;
    gap: 7rem;
    margin: 5rem;
  }

  #contactoHeaderBtn {
    display: none;
  }

  .helperMediaHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .menuIcon {
    display: block;
  }
}

/* =========================
   BOTONES
========================= */

.btn {
  display: flex;
  align-items: center;
  background-color: #000;
  border: none;
  border-radius: 3rem;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  margin: 1.2rem;
  padding: 0 3rem;
  transition: background-color 0.3s ease;
}


.heroBtn {
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 2rem 0 0;
  padding: 1.5rem 3rem;
  width: 60%;
}

.btn:hover,
.btn-enviar:hover,
.hero:hover {
  background-color: #00162C;
}

/* =========================
   SECCIÓN PRINCIPAL (BANNER)
========================= */

.contPrincipal {
  display: flex;
  align-items: flex-end;
  background-color: #d9d9d929;
  border-radius: 1rem;
  margin: 10rem auto 0;
  width: 80%;
}

.textoBanner {
  flex: 1;
  margin: 6rem;
  font-size: 2.3rem;
}

.textoBanner p {
  padding: 2rem 0 3rem;
  font-size: 1.6rem;
}

.imgBanner {
  flex: 1;
  text-align: right;
}

.imagBanner img {
  width: 80%;
  height: auto;
}

@media (max-width: 1200px) {
  .contPrincipal {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .heroBtn {
    margin: 2rem auto 0;
    width: 65%;
  }
}

@media (max-width: 678px) {
    .heroBtn {
      width: 90%;
    }
}

/* =========================
   SECCIÓN 2 / SERVICES
========================= */

.section2 {
  margin: 8rem auto 0;
  padding-bottom: 1rem;
  width: 80%;
}

.section2 h2 {
  font-size: 3.2rem;
  padding-bottom: 1rem;
  font-weight: 700;
}

.section2 p {
  font-weight: 300;
}

.services {
  display: flex;
  flex-direction: column;
}

.service {
  align-items: center;
  background-color: #d9d9d929;
  border-radius: 1rem;
  display: grid;
  gap: 40px;
  grid-template-columns: 3fr 1fr;
  justify-content: space-between;
  margin: 20px auto 0;
  padding: 30px 60px;
  width: 80%;
}

.service h3{
  font-weight: 700;
  font-size: 2.8rem;
}

.service p{
  padding-top: 2.2rem;
  font-weight: 300;
}


@media (max-width: 768px) {
  .service {
    grid-template-columns: 1fr;
    place-items: center;
  }

  .service img{
    width: 40%;
  }
}
/* =========================
   HERRAMIENTAS / TARJETAS
========================= */

.herramientas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  place-items: center;
  width: 80%;
  margin: 4rem auto;
  gap: 2rem;
}

.tarjeta {
  color: #fff;
  text-decoration: none;
  background-color: #d9d9d929;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 40rem;
  width: 30rem;
  padding: 3rem 2rem;
  text-align: center;
  transition: background-color 1ss ease-in;
}

.tarjeta:hover{
  filter: brightness(90%);
  transform: scale(1.04);
}

.tarjeta img {
  width: 18rem;
  margin: 4rem 0 2rem;
}

.tarjeta h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.tarjeta p {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
}

.proximamente {
  background-color: #000;
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  margin: 6rem 0 2rem;
  padding: 1rem 1.5rem;
}

/* =========================
   FORMULARIO
========================= */

.formulario {
  margin-top: 8rem;
  text-align: center;
  width: 100%;
}

.texto-central h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.texto-central p {
  color: #dcdcdc;
  margin-bottom: 2.5rem;
}

.contenedor-form {
  align-items: center;
  background-color: #d9d9d929;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 4rem 5rem;
  width: 60%;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

form input,
form select,
form textarea {
  background-color: #ffffff15;
  border: 1px solid #ffffff33;
  border-radius: 1rem;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  outline: none;
  padding: 1.2rem 1.5rem;
  width: 100%;
}

form input::placeholder,
form textarea::placeholder {
  color: #b0b0b0;
}

form textarea {
  resize: none;
  overflow-y: auto;
}

form select {
  color: #b0b0b0;
  cursor: pointer;
}

form select option {
  color: #000;
}

.btn-enviar {
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 2rem;
  margin-top: 2rem;
  padding: 2rem 5rem;
  font-weight: 700;
  font-size: 1.6rem;
  font-family: "Geist Mono", monospace;
  cursor: pointer;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .contenedor-form {
    width: 85%;
    padding: 3rem 2rem;
  }

  .texto-central h1 {
    font-size: 2.6rem;
  }
}

/* =========================
   FOOTER
========================= */

footer {
  background-color: #d9d9d918;
  margin-top: 7rem;
  padding: 4rem 0 2rem;
}

.footer-contenido {
  display: grid;
  gap: 5.5rem;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  width: 85%;
  padding: 0 2rem;
}

.footer-columna h4 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.footer-logo img {
  max-width: 16rem;
}

.footer-branding p {
  font-size: 1.5rem;
  line-height: 1.5;
}

.footer-nav {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-nav a,
.footer-contacto a,
.footer-contacto p {
  color: #b0b0b0;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover,
.footer-contacto a:hover {
  color: #fff;
}

.footer-copyright-contenedor {
  margin: 4rem auto 0;
  max-width: 120rem;
  padding: 0 2rem;
}

hr {
  background-color: #fff;
  border: none;
  height: .1rem;
  margin: 2rem 0;
}

.footer-copyright {
  font-size: 1.4rem;
  text-align: center;
}



@media (max-width: 1024px) {
  .footer-contenido {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-contenido {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .footer-logo img {
  margin: 1rem auto;
}
}

/* =========================
   NOSOTROS
========================= */

.section-nosotros {
  position: relative;
  display: flex;
  align-items: flex-end;
  background-color: #d9d9d929;
  border-radius: 1rem;
  margin: 10rem auto 0;
  width: 40%;
  height: 32rem;
  align-items: center;
}
.texto-banner {
  padding: 4rem;
  
  h2 {
    font-size: 2.2rem;
  }
}
.negrita {
  background-color: #000;
  font-size: 2.2rem;
  font-weight: 600;
}
.img-nosotros {
  position: absolute;
  top: 24rem;               /* Cuánto sobresale la imagen (ajustá a gusto) */
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 38rem;             /* Ajustá según el tamaño de tu imagen */
  height: auto;
  z-index: 2;
}

.mensaje {
  display: flex;
  align-items: flex-end;
  background-color: none;
  padding-top: 300px;
  margin: 5rem auto 0;
  width: 60%;
  height: 40rem;
  align-items: center;
  h3 { 
    font-size: 2rem;
    font-weight: 300;
  }
  span {
    background-color: #F2AC53;
    color: #000;
    font-weight: 600;
  }
}

.mensaje2 {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: 60%;
  padding: 2rem 0 0;
  margin: 0 auto;
}

.mensaje2 .mensaje {
  flex: 1;
  padding: 0;
  height: auto;
}

.mensaje2 img {
  width: 35%;
  padding-top: 8rem;
}

@media (max-width: 1024px) {
  .section-nosotros {
    width: 60%;
  }
}

@media (max-width: 900px) {
  .mensaje2 {
    flex-direction: column;
    width: 100%;
    margin: 10rem 0 0;
    img {
      padding: 0;
    }
  }

  .mensaje {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .section-nosotros {
    width: 90%;
    margin-top: 5rem;
  }
  .img-nosotros{
    width: 50%;
    top: 27rem;
  }

  .items {
    margin-top: 3rem;
  }
}