:root {
  --e-global-color-primary: #6ec1e4;
  --e-global-color-secondary: #54595f;
  --e-global-color-text: #7a7a7a;
  --e-global-color-accent: #4be8a0;
}

body {
  margin: 0;

  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

  background-color: #4be89f05;

  color: #1e1e1e;

  overflow-x: hidden;

  text-align: center;
}

nav {
  display: flex;

  flex-direction: column;

  justify-content: center;
  align-items: center;
}

nav > ul {
  padding: 0;
  margin: 0;
  
  display: flex;

  flex-direction: column;

  justify-content: center;
  align-items: center;

  list-style-type: none;

}

nav > ul:first-child {
  margin-top: 1rem;
}

ul li {
  font-size: 16px;
  font-weight: 400;

  margin: 0.5rem 0;
}

header {
  display: flex;

  flex-direction: row;

  justify-content: center;
  align-items: center;

  background-color: #0e0e0e;
  color: white;

  text-align: center;

  padding: 20px 120px;
}

header a {
  text-decoration: none;

  font-size: 16px;
  font-weight: 600;

  color: white;
}

header a:hover {
  text-decoration: underline;
}

header a:last-child:hover {
  color: var(--e-global-color-accent);
}

header img {
  width: 180px;
  height: auto;
}

header p {
  font-weight: 600;
  font-size: 1.5rem;
}

.hero-image img {
  width: 50px;
  display: block;
}

section {
  padding: 20px;
  max-width: 1000px;
  margin: auto;
}

section h2 {
  font-size: 2rem;
  text-align: left;
  margin-bottom: 40px;
}

.layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.introduction {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background-image: url("../assets/images/download.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  max-width: 100vw;
  height: 90vh;
}

.introduction h1 {
  font-size: 4rem;

  color: #fff;

  z-index: 9999;

  margin-bottom: 5rem;
}

.benefits img {
  display: inline-block;
  width: 385px;
  height: 100px;
}

.services,
.benefits {
  display: grid;

  gap: 20px;
  margin-top: 20px;
  text-align: left;
}

.services div,
.benefits div {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.274);
}

section h1,
section h2,
section h4 {
  color: #49d694;
  font-weight: 600;
  font-size: 2.5rem;
}

.partners {
  text-align: center;
}

.partners h2 {
  margin-bottom: 30px;
}

.whatsapp-float {
  background-color: #fff;

  position: fixed;
  bottom: 20px;
  right: 20px;

  height: 50px;
  width: 50px;

  z-index: 999;

  border-radius: 100%;

  padding: 0.15rem;
}

.whatsapp-float:hover {
  background-color: #40c351;

  transition: 0.5s ease-out;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
}

.p-info {
  text-align: center;
}

.slider {
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
  padding: 20px;

  border-radius: 1rem;

  margin-bottom: 5rem;
}

.slides {
  display: flex;
  width: max-content;
  animation: slide 18s linear infinite;
  gap: 40px;
}

.slides img {
  width: auto;
  height: 60px;

  transition: transform 0.3s ease;
}

footer {
  display: flex;

  flex-direction: column;

  justify-content: center;
  align-items: center;

  background-color: #000;
  color: #fff;

  font-family: Arial, sans-serif;

  text-align: left;

  margin-top: 5rem;
  padding: 40px 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 70vw;
  margin: 0 auto 30px;
}

.div-nav p {
  display: flex;

  flex-direction: row;

  justify-content: flex-start;
  align-items: center;

  font-size: 0.9rem;
}

.div-nav p > a {
  display: flex;

  flex-direction: row;

  align-items: center;
}

.div-nav img {
  width: 20px;
  height: 20px;

  margin-right: 0.5rem;
}

span {
  text-align: center;

  font-size: 3rem;
  font-variant: small-caps;

  font-weight: 600;

  color: var(--e-global-color-accent);
}

.logo-col img {
  max-width: 200px;
  margin-bottom: 10px;
}

.footer-col h4 {
  color: var(--e-global-color-accent);
  margin-bottom: 10px;
  font-size: 1.25em;
  font-weight: 400;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-description {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: #777;
  margin-top: 20px;
}

footer strong {
  color: var(--e-global-color-accent);
}

@keyframes slide {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .services,
  .benefits {
    grid-template-columns: 1fr;
  }

  .slider {
    padding: 10px;
  }

  .slides img {
    height: 40px;
  }
}

@media (max-width: 1280px) {
  footer {
    display: flex;

    flex-direction: column;

    text-align: center;
  }

  .footer-top {
    width: 83vw;
  }

  .footer-col {
    flex: auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 590px) {
  body h1,
  section h2,
  body h4 {
    text-align: center;
  }

  .introduction h1 {
    font-size: 3.5rem;
  }
}
