* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
}


:root {
  --blue-color-1: #111827;
  --blue-color-2: #0ea3e7;
  --blue-color-3: #0a5e84;
  --blue-color-4: #141c2e;
  --blue-color-5: #122236;
  --blue-color-6: #142437;
  --blue-color-7: #0e1420;
  --blue-color-9: #033b55;
  --blue-color-transparent: rgb(20, 36, 55, 0.43);
  --title-color-1: #ffffff;
  --text-color-1: #bbc6dd;
  --text-color-2: #ffffff;
  --white-color-1: #ffffff;
  --white-color-2: #e2e2e2;
  --dark-color-1: #1d1d1d;

  --font-1: "Poppins", "sans serif";
  --title-size-1: 1.7rem;
  --subtitle-size-1: 1.4rem;
  --text-size-1: 1.2rem;
  --text-size-1-m: 1rem;
  --text-size-2-m: 0.7rem;
  --text-weight-1: 400;
  --border-radius-1: 7px;
}
html {
  font-family: var(--font-1);
  font-weight: var(--text-weight-1);
  color: var(--text-color-1);
  font-size: 100%;
}
body {
  background-color: var(--blue-color-1);
}
main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

button {
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border-style: none;
}
a {
  text-decoration: none;
  color: var(--text-color-2);
  font-size: var(--text-size-1);
}
a:hover {
  color: var(--blue-color-2);
  transition: ease 0.2s;
}
button a {
  width: 100%;
  display: flex;
  flex-direction: flex;
  justify-content: center;
  align-items: center;
  
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  font-size: var(--text-size-1);
  font-weight: var(--text-weight-1);
  border: var(--blue-color-2) solid 1px;
  border-radius: var(--border-radius-1);
}
button a:hover {
  background-color: var(--white-color-1);
  color: var(--dark-color-1);
  transition: ease 0.2s;
}
button.btn-2 a {
  background-color: var(--white-color-1);
  border: none;
  color: var(--dark-color-1);
}
button.btn-2 a:hover {
  background-color: var(--white-color-2);
}
h1 {
  padding: 0.5rem 0 0.5rem;
  font-size: 3.1rem;
  line-height: 3.7rem;
  overflow-y: hidden;
  color: var(--white-color-1);
}
body :is(h1, h2, h3) span {
  color: var(--blue-color-2);
}
body .logo {
  width: 100%;
  max-width: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  gap: 1rem;
}
body .logo img {
  width: 70px;
  border-radius: 100%;
  object-fit: cover;
  object-position: center;

  border: var(--blue-color-2) solid 1px;
}
body .logo p {
  font-size: 1.1rem;
  line-height: 1.4rem;
  color: var(--white-color-1);
}
body .logo p span {
  color: var(--white-color-1);
  font-weight: 600;
  font-size: 1.1rem;
}
h2 {
  font-size: 2rem;
  color: var(--white-color-1);
  line-height: 2.4rem;
  overflow-y: hidden;
}
h3 {
  color: var(--white-color-1);
  font-size: 1.4rem;
  font-weight: 500;
}
h4 {
  color: var(--white-color-1);
  font-size: 1.3rem;
  font-weight: 500;
}
p {
  font-size: 1.1rem;
  line-height: 1.7rem;
  overflow-y: hidden;
}
.title-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  /* background-image: url("/img/svg/gradient-line.svg");
  background-position: center left;
  background-size: contain;
  background-repeat: no-repeat; */
  border-image: linear-gradient(to bottom, var(--blue-color-2), transparent) 1;
  border-left: solid 2px;
  padding-inline: 1rem;
  margin-bottom: 2rem;
}
.border-inline {
  border: none;
  border-image: linear-gradient(to bottom, var(--blue-color-2), transparent) 1;
  border-inline: solid 2px;
}
.title-box p {
  font-size: 1.3rem;
  color: var(--blue-color-2);
}
#cta {
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;

}
#cta .box {
  transform: translate(600%, 600%);
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  
  gap: 0rem;
  padding: 1rem;
  z-index: 10;
  background-color: var(--blue-color-1);
  border-radius: var(--border-radius-1);
  border: var(--blue-color-3) solid 1px;
}
#cta .box p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-color-1);
  font-weight: 400;
}
#cta .box :nth-last-child(1) {
  color: var(--text-color-2);
  font-size: 1.1rem;
  font-weight: 600;
}

dialog {
  width: 11rem;
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  
  gap: 0;
  background-color: var(--blue-color-1);
  border: var(--blue-color-2) solid 1px;
  border-radius: var(--border-radius-1);
  padding: 1rem;
  z-index: 10;
}
dialog p {
  line-height: 1.4rem;
  font-size: 1rem;
  color: var(--text-color-1);
}
dialog :nth-last-child(1) {
  color: var(--text-color-2);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Botón flotante Whatsapp */
#whatsapp-flotante {
  position: fixed;
  width: fit-content;
  height: fit-content;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  border-radius: 110px;
  text-align: center;
  box-shadow: 2px 2px 3px rgb(57, 57, 57);
  z-index: 100;
}

#whatsapp-flotante .my-float {
  /* margin-top:16px; */
  width: 4rem;
  margin: 0;
}

@media screen and (min-width: 0px) and (max-width: 500px) {
  h1 {
    font-size: 2.2rem;
    line-height: 2.7rem;
  }
}
