/* Global */
body {
  font-family: Saira;
  font-size: 1rem;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

strong {
  font-weight: bold;
}

/* Section Hero */
.section-hero {
  padding: 80px 0;
  padding: 0;
  position: relative;
  height: 100vh;
  background: #010D27;
  overflow: hidden;
}

.section-hero__content {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}
.section-hero__content img {
  max-width: 350px;
}
@media (max-width: 768px) {
  .section-hero__content {
    flex-direction: column;
    gap: 20px;
  }
  .section-hero__content img {
    max-width: 200px;
  }
}

.section-hero__intro {
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: fit-content;
}
@media (max-width: 576px) {
  .section-hero__intro {
    width: 100%;
    padding: 20px;
  }
}

.section-hero__title {
  font-family: Saira;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 2.8rem;
  color: #00FEFE;
}

@media (max-width: 992px) {
  .section-hero__title {
    font-size: 2.3rem;
  }
}
@media (max-width: 576px) {
  .section-hero__title {
    font-size: 2rem;
  }
}

.section-hero__text {
  font-family: Saira;
  font-size: 1.5rem;
  color: #fff;
}
@media (max-width: 576px) {
.section-hero__text {
    font-size: 1.2rem;
  }
}

.section-hero__logo {
  height: 48px;
}

/* Images */
.section-hero__img:nth-child(1) {
  width: 200px;
  position: absolute;
  top: -70px;
  left: -50px;
}
@media (max-width: 768px) {
  .section-hero__img:nth-child(1) {
    left: -100px;
    top: -140px;
  }
}
@media (max-width: 768px) {
  .section-hero__img:nth-child(1) {
    filter: blur(3px);
  }
}

.section-hero__img:nth-child(2) {
  width: 200px;
  position: absolute;
  top: 20px;
  right: -150px;
  filter: blur(4px);
}
@media (max-width: 768px) {
  .section-hero__img:nth-child(2) {
    right: -170px;
  }
}

.section-hero__img:nth-child(3) {
  width: 280px;
  position: absolute;
  bottom: -220px;
  left: 10%;
  filter: blur(3px);
}

/* Footer */
.footer-planac {
  background-color: #000;
  color: #fff;
  padding-bottom: 32px;
}

.footer-planac .container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 0 40px;
  display: block;
}
@media (max-width: 576px) {
  .footer-planac .container {
    padding: 0 20px;
  }
}

.footer-planac__content {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin: 0 auto;
  flex-wrap: wrap;
  padding: 80px 0 40px;
}

@media (max-width: 860px) {
  .footer-planac__content {
    flex-direction: column;
    align-items: start;
    gap: 24px;
  }
}

.footer-planac__left,
.footer-planac__right {
  width: fit-content;
}

.footer-planac__left {
  display: grid;
  gap: 24px;
}

.footer-planac__logo {
  max-height: 50px;
  margin-bottom: 15px;
}

.footer-planac__info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-planac__icon {
  background: #1E1D1D;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-planac__highlight {
  color: #23FFDE;
}

.footer-planac__block {
  margin-bottom: 15px;
}

.footer-planac__divider {
  border: none;
  border-top: 1px solid #222;
  margin-top: 30px;
}

/* Button Whatsapp */
.button-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}