
.hero {
  width: 100%;
  background-image: url("../images/hero-main.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
  text-shadow: 1px 1px 1px black;
}
.hero-content {
  width: 100%;
  background: rgba(0, 47, 141, 0.447);
  backdrop-filter: blur(1px);
  text-align: center;
  padding: 25px 10px 20px;
  transition: background 0.6s;
}
.dark .hero-content {
  background: rgba(0, 0, 0, 0.342)
}
.hero-content > h1 {
  font-size: 20px;
  margin-bottom: 15px;
  color: rgb(255, 255, 255);
}
.hero-content > h2 {
  font-size: 15px;
  margin-bottom: 10px;
}
.hero-content > p {
  font-size: 14px;
  margin-bottom: 25px;
}
.hero-buttons {
  width: 100%;
  display: flex;
  align-items: c;
  justify-content: center;
  gap: 20px;
}
.hero-buttons > a {
  padding: 10px 15px;
  background-image: linear-gradient(
    120deg,
    rgb(0, 94, 255),
    rgb(46, 137, 255),
    rgb(40, 155, 255)
  );
  text-decoration: none;
  color: white;
  border-radius: 30px;
  font-size: 14px;
  transition: all 0.5s;
}
.hero-buttons > a:hover {
  transform: translateY(-5px);
}
.hero-buttons .whatsapp {
  background: linear-gradient(135deg, #128c7e, #25d366);
  color: white;
}
.whatsapp:hover {
  box-shadow: 0 5px 15px rgba(37, 213, 102, 0.4);
}
.hero-buttons .rubika {
  background: linear-gradient(135deg, #29b8ff, #00549d);
  color: white;
}
.rubika:hover {
  box-shadow: 0 5px 15px rgba(37, 166, 213, 0.4);
}

.featured-products {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.featured-products > h2 {
    text-align: center;
    color: var(--main-text-color);
    margin: 40px 0 20px;
}
.products-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    gap: 30px;
    padding: 20px;
}
.products-box .card {
    padding-top: 0;
}
.more {
    padding: 15px;
    margin: 10px 0 30px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    text-align: center;
    background-color: var(--btn-bg);
    display: inline-block;
    font-size: 16px;
}

.advantages > h2 {
    width: 100%;
    text-align: center;
    margin: 40px 0 25px;
    font-size: 20px;
    color: var(--main-text-color);
}
.advantages-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 52px;
  padding: 20px;
}
