body {
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  background: #fff;
  color: #111;
}

section {
  margin-bottom: 3vh;
}

header {
  display: grid !important;
  padding: 16px 0 10px 0;
  position: sticky;
  top: 0;
  z-index: 1020;
  background-color: #fff;
}

.text-primary {
  color: #4200ff !important;
}

.bg-body-new {
  border: 1.0px solid rgba(136, 136, 136, 0.4);
  /* background-color: transparent; */
  border-radius: 50px;
  box-shadow: 0 2px 6px rgba(136, 136, 136, 0.25);
}

nav {
  place-self: center;
  width: auto;
}

.nav-link {
  align-items: center;
}

.nav-item {
  a {
    color: #1f2937;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;

    &:hover {
      color: #4200ff;
      transform: translateY(-2px);
    }
  }
}

.loja,
.dash {
  padding: 6px 12px 10px 12px;
}

.h2-style {
  place-self: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.section-slogan {
  padding: 1rem;
  display: grid;
  justify-items: center;
  background-color: #eef6fb;
  text-align: center;

  h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: -12px;
    color: #4200ff;
  }

  h2 {
    font-size: 2.4rem;
    font-weight: 600;
  }
}

.create-store {
  flex-direction: column;
  align-items: center;

  .img-title {
    width: 28vh;
    height: auto;
  }
}

.custom-arrow {
  margin-left: 6px;
  margin-right: 6px;
}

.carousel-inner {
  overflow: hidden;
}

.carousel {
  margin: 6px;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.custom-card {
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eaeaea;

  .image-container {
    height: 45vh;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;

    img {
      max-height: 100%;
      max-width: 100%;
      object-fit: contain;
    }
  }

  .card-body {
    max-width: 81vh;
    padding: 1rem;

    .card-title {
      font-size: 1.25rem;
      font-weight: 600;
    }

    .card-text {
      white-space: pre-line;
      color: #555;
      font-size: 20px;
    }
  }
}

.carousel-item {
  justify-items: center;
}

.custom-btn {
  background-color: #4C4EFF;
  color: white;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);
  margin: 12px 1rem 0 1rem;

  a {
    text-decoration: none;
    color: #eef6fb;
  }
}

.custom-btn:hover {
  color: #eef6fb;
  background-color: #4338ca;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(67, 56, 202, 0.5);
}

.custom-btn:active {
  transform: scale(0.98);
}

.form {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 400px;
}

.img-logo {
  width: 4vh;
}

.img-size {
  width: 30%;
}

.justify-center {
  justify-content: center;
}

.subtitle-adm {
  display: block;
  font-size: 1.125rem;
  color: #555;
  line-height: 1.2;
  max-width: 600px;
  font-weight: 400;
  text-align: center;
  margin-inline: auto;
  padding: 0 1rem 0 1rem;
}


.about {
  width: 50%;
  padding: 1rem;

  span {
    display: block;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    background-color: #f9f9f9;
    padding: 1rem 1.2rem;
    border-left: 4px solid #4f46e5;
    /* Indigo-600 */
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }
}

@media (max-width: 720px) {
  .img-size {
    width: 100%;
  }

  .devices {
    display: block !important;
  }

  .about {
    width: 100%;
  }

  .image-container {
    height: fit-content !important;
  }
}

#cardCarousel {
  overflow: hidden;
}