@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
  --verde: #07ff1c;
  --verde-oscuro: #00c716;
  --negro: #000;
  --negro-suave: #111;
  --gris: #262626;
  --blanco: #fff;
  --radio: 18px;
  --sombra: 0 18px 45px rgba(0, 0, 0, .2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  color: #161616;
  background: #f4f4f4;
}

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

a {
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.contenedor {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 2000;
  width: 100%;
  background: #000;
  border-bottom: 1px solid rgba(7, 255, 28, .25);
}

.header__container {
  width: min(1400px, 100%);
  min-height: 84px;
  margin: 0 auto;
  padding: 10px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

.menu a {
  color: var(--verde);
  font-size: 15px;
  font-weight: 700;
}

.menu a:hover {
  color: #fff;
}

.redes-sociales {
  display: flex;
  gap: 17px;
}

.redes-sociales a {
  color: var(--verde);
  font-size: 23px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--verde);
  border-radius: 10px;
  color: var(--verde);
  background: transparent;
}

/* HERO */
.hero {
  min-height: 680px;
  padding: 100px 24px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, .68), rgba(0, 0, 0, .8)),
    url("/img/restore_bms_3.jpeg") center / cover no-repeat;
}

.hero__contenido {
  width: min(1050px, 100%);
}

.hero__etiqueta {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--verde);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(50px, 8vw, 105px);
  font-weight: 900;
  line-height: .98;
  overflow-wrap: break-word;
}

.hero h1 span {
  display: block;
  color: var(--verde);
}

.hero p {
  max-width: 780px;
  margin: 28px auto 34px;
  color: #f1f1f1;
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.7;
}

.hero__acciones {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.boton {
  min-height: 52px;
  padding: 14px 24px;
  border: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  cursor: pointer;
}

.boton--principal {
  color: #000;
  background: var(--verde);
}

.boton--secundario {
  color: #fff;
  border: 1px solid var(--verde);
  background: rgba(0, 0, 0, .35);
}

/* TÍTULOS */
.titulo-seccion {
  max-width: 850px;
  margin: 0 auto 50px;
  text-align: center;
}

.titulo-seccion span,
.contacto__texto span {
  color: #00be16;
  font-weight: 800;
  letter-spacing: 2px;
}

.titulo-seccion h2,
.contacto__texto h2 {
  margin: 8px 0 0;
  color: #111;
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.08;
}

.titulo-seccion--claro h2 {
  color: #fff;
}

/* SERVICIO */
.servicio {
  padding: 50px 0;
  background: #fff;
}

.servicio__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 15px;
}

.servicio__imagen img {
  width: 350px;
  height: 350px;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--radio);
  box-shadow: var(--sombra);
}

.servicio__contenido p {
  color: #4d4d4d;
  line-height: 1.8;
}

.lista {
  margin-top: 18px;
  display: grid;
  gap: 20px;
}

.lista div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.lista i {
  margin-top: 4px;
  color: var(--verde-oscuro);
  font-size: 20px;
}

.lista span {
  font-weight: 600;
}

/* PROCESO */
.proceso {
  padding: 90px 0;
  background: #111;
}

.proceso__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.paso {
  position: relative;
  min-width: 0;
  padding: 32px 24px;
  overflow: hidden;
  border: 1px solid rgba(7, 255, 28, .35);
  border-radius: 16px;
  background: #181818;
}

.paso__numero {
  position: absolute;
  top: 12px;
  right: 16px;
  color: rgba(7, 255, 28, .16);
  font-size: 52px;
  font-weight: 900;
}

.paso > i {
  color: var(--verde);
  font-size: 35px;
}

.paso h3 {
  margin: 20px 0 10px;
  color: var(--verde);
}

.paso p {
  margin: 0;
  color: #d1d1d1;
  font-size: 14px;
  line-height: 1.7;
}

/* BENEFICIOS */
.beneficios {
  padding: 90px 0;
  background: #f4f4f4;
}

.beneficios__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.beneficios article {
  min-width: 0;
  padding: 34px 28px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--sombra);
}

.beneficios i {
  color: var(--verde-oscuro);
  font-size: 38px;
}

.beneficios h3 {
  margin: 18px 0 10px;
  font-size: 22px;
}

.beneficios p {
  margin: 0;
  color: #5b5b5b;
  line-height: 1.7;
}

/* CONTACTO */
.contacto {
  padding: 90px 0;
  background: #fff;
}

.contacto__caja {
  padding: 45px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 45px;
  border-radius: 20px;
  background: #111;
  box-shadow: var(--sombra);
}

.contacto__texto h2 {
  color: #fff;
  font-size: clamp(34px, 5vw, 56px);
}

.contacto__texto p {
  color: #cfcfcf;
  line-height: 1.7;
}

.formulario {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.campo {
  min-width: 0;
}

.campo--completo,
.formulario .boton {
  grid-column: 1 / -1;
}

.campo label {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.campo input,
.campo textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #444;
  border-radius: 9px;
  outline: none;
  color: #fff;
  background: #1d1d1d;
}

.campo input:focus,
.campo textarea:focus {
  border-color: var(--verde);
}

.campo textarea {
  resize: vertical;
}

.boton--whatsapp {
  color: #fff;
  background: #1ebe5d;
}

/* FOOTER */
.footer {
  padding: 45px 7% 20px;
  color: #fff;
  background: #000;
}

.footer__contenido {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer__contenido img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.footer h2 {
  margin: 0 0 5px;
  color: var(--verde);
}

.footer p {
  margin: 0;
  color: #d1d1d1;
}

.footer__redes {
  display: flex;
  gap: 20px;
}

.footer__redes a {
  color: var(--verde);
  font-size: 24px;
}

.footer__copy {
  margin-top: 30px !important;
  padding-top: 18px;
  border-top: 1px solid #282828;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 1050px) {
  .servicio__grid,
  .contacto__caja {
    grid-template-columns: 1fr;
  }

  .proceso__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .contenedor {
    width: min(100% - 28px, 1220px);
  }

  .header__container {
    min-height: 72px;
    padding: 9px 14px;
    display: grid;
    grid-template-columns: auto 1fr auto;
  }

  .logo img {
    width: 52px;
    height: 52px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    justify-self: center;
  }

  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0;
    padding: 0 18px;
    overflow: hidden;
    flex-direction: column;
    gap: 0;
    background: #080808;
    border-top: 1px solid rgba(7, 255, 28, .25);
    transition: max-height .3s ease, padding .3s ease;
  }

  .menu.abierto {
    max-height: 370px;
    padding: 12px 18px 18px;
  }

  .menu a {
    width: 100%;
    padding: 13px 0;
    text-align: center;
    border-bottom: 1px solid #202020;
  }

  .redes-sociales {
    gap: 10px;
  }

  .redes-sociales a {
    font-size: 19px;
  }

  .hero {
    min-height: 560px;
    padding: 75px 16px;
  }

  .hero h1 {
    font-size: clamp(45px, 14vw, 70px);
  }

  .hero__acciones {
    flex-direction: column;
    align-items: stretch;
  }

  .servicio,
  .proceso,
  .beneficios,
  .contacto {
    padding: 65px 0;
  }

  .servicio__grid,
  .proceso__grid,
  .beneficios__grid {
    grid-template-columns: 1fr;
  }

  .servicio__imagen img {
    min-height: 280px;
  }

  .contacto__caja {
    padding: 28px 18px;
  }

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

  .campo--completo,
  .formulario .boton {
    grid-column: auto;
  }

  .footer__contenido {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .header__container {
    padding: 8px 10px;
  }

  .redes-sociales {
    gap: 8px;
  }

  .redes-sociales a {
    font-size: 17px;
  }

  .hero h1 {
    font-size: 41px;
  }

  .titulo-seccion h2,
  .contacto__texto h2 {
    font-size: 32px;
  }
}
