@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Merriweather&family=Poppins&family=Roboto+Mono&display=swap');

html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #2a2a2a;
}

a {
  text-decoration: none;
}

p {
  font-size: 1.6rem;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 10px 20px;
}

/* -- Header */

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid #eee;
  background-image: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.8));
  max-height: 125px;
}

  .header-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

    .header-logo img {
      width: 100px;
    }

    .header-block {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      gap: 20px;
    }

      .header-links {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px
      }

        .header-link {
          color: #ff69b4;
          transition: color 0.3s;
          font-weight: bold;
          font-size: 1.2rem;
        }

          .header-link.active {
            color: #ffd700 !important;
          }

          .header-link:hover {
            color: #ff85c1;
          }

        .header-link-submenu {
          position: relative;
        }

          .header-link-submenu .submenu {
            display: none;
            position: absolute;
            right: 0;
            z-index: 110;
            list-style: none;
            padding: 5px 0;
            margin: 0;
            background: #ffffff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
          }

            .header-link-submenu .submenu li {
              padding: 5px 20px;
              text-transform: uppercase;
            }

          .header-link-submenu:hover .submenu {
            display: block;
          }

      .header-actions {
        display: flex;
        align-items: center;
        gap: 10px;
      }

        .header-action {
          display: flex;
          flex-direction: row;
          gap: 10px;
          position: relative;
          padding: 10px 15px;
          background-color: #ff69b4;
          color: white;
          border: none;
          border-radius: 5px;
          font-weight: bold;
        }

          .header-action i {
            font-size: 1.2rem;
          }

          .header-action-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #ffd700;
            color: #2a2a2a;
            border-radius: 5px;
            padding: 2px 4px;
            text-align: right;
          }

          .header-action:hover {
            background-color: #ff85c1;
          }

        .header-action.header-menu {
          display: none;
        }

/* -- Main */

#main {
  padding-top: 125px;
}

/* -- Footer */

#footer {
  background-color: #2a2a2a;
  color: #ffffff;
  margin: 10px;
  padding: 10px 20px;
  border-radius: 10px;
}

  .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 30px;
  }

    .footer-logo {
      flex: 1;
      min-width: 200px;
      max-width: 300px;
      text-align: center;
    }

      .footer-logo img {
        width: 150px;
      }

      .footer-slogan {
        font-size: 1.3rem;
      }

    .footer-info {
      flex: 2;
      display: flex;
      flex-wrap: wrap;
      gap: 3rem;
    }

      .footer-contact, .footer-social, .footer-hours {
        min-width: 200px;
        flex: 1;
      }

      .footer-contact h3, .footer-social h3, .footer-hours h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        position: relative;
        padding-bottom: 1rem;
      }

        .footer-contact h3::after, .footer-social h3::after, .footer-hours h3::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 3rem;
          height: 0.2rem;
          background-color: #3bcc75;
        }

      .footer-contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1.5rem;
      }

        .footer-contact-item i {
          color: #3bcc75;
          margin-right: 1.5rem;
          font-size: 1.6rem;
          width: 1.6rem;
          line-height: 1;
        }

        .footer-contact-item p {
          font-size: 1.4rem;
          margin: 0;
          line-height: 1;
        }

      .social-icons-vertical {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
      }

        .social-icon-item {
          display: flex;
          align-items: center;
          color: #ccc;
          transition: all 0.3s;
        }

          .social-icon-item i {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 3.5rem;
            height: 3.5rem;
            background-color: #333;
            color: #fff;
            border-radius: 50%;
            font-size: 1.6rem;
            margin-right: 1.2rem;
            transition: all 0.3s;
          }

          .social-icon-item:hover {
            color: #3bcc75;
          }

            .social-icon-item:hover i {
              background-color: #3bcc75;
              transform: translateY(-2px);
            }

          .social-icon-item span {
            font-size: 1.4rem;
          }

      .footer-hours p {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
      }

  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }

    .footer-bottom p {
      font-size: 1.4rem;
      color: #ccc;
      margin: 0;
    }

    .footer-legal {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

      .footer-legal a {
        color: #ccc;
        font-size: 1.4rem;
        transition: color 0.3s;
      }

        .footer-legal a:hover {
          color: #3bcc75;
        }

    .footer-separator {
      color: #555;
    }

/* -- Not Found */

.page--not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1px;
  padding: 2rem;
}

.page--not-found .page--title {
  font-size: 30px;
}

.page--not-found p {
  font-size: initial;
}

/* -- Testimonios */

.testimonios-section {
  background-color: #f9f9f9;
}

  .testimonios-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .testimonio {
    min-width: 300px;
    max-width: 500px;
    scroll-snap-align: start;
    flex: 1;
  }

    .testimonio-content {
      background-color: #fff;
      border-radius: 10px;
      padding: 3rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      position: relative;
    }

      .testimonio-content::before {
        content: '\201C';
        font-size: 8rem;
        position: absolute;
        top: -2rem;
        left: 1rem;
        color: #3bcc75;
        opacity: 0.3;
      }

      .testimonio-content p {
        font-style: italic;
        margin-bottom: 2rem;
        line-height: 1.8;
      }

      .cliente-info h4 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
      }

        .cliente-info p {
          font-size: 1.4rem;
          color: #777;
          margin: 0;
        }

/* -- Banner */

.banner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 5rem 2rem;
  color: #ffffff;
  text-align: center;
  background-image: url('../img/banner/banner-base.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

  .banner-overlay {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
  }

  .banner-content {
    position: relative;
    z-index: 1;
  }

  .banner h1 {
    margin: 0;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .banner p {
    margin: 0;
    font-size: 1.4rem;
  }

/* -- Buttons */

.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  border-radius: 5px;
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: #3bcc75;
  color: #fff;
}

  .btn-primary:hover {
    background-color: #2da362;
    transform: translateY(-3px);
  }

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

  .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
  }

.btn-cancel {
  width: 100%;
  background-color: #e0e0e0;
  color: #2a2a2a;
  border: 2px solid #fff;
  margin-top: 10px;
  text-transform: none;
}


/* -- Section */

.section {
  padding: 8rem 0;
}

  .section-title {
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1.5rem;
  }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 5rem;
      height: 0.3rem;
      background-color: #3bcc75;
    }

/* -- Cards */

.item-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

  .item-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 4rem 3rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

    .item-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .item-card-content {
      display: flex;
      flex-direction: column;
      justify-content: start;
      width: 100%;
    }

      .item-card-icon {
        font-size: 4rem;
        color: #3bcc75;
        margin-bottom: 2rem;
      }

      .item-card-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
      }

      .item-card-description {
        color: #666;
        margin-bottom: 2rem;
      }

    .item-card-link {
      color: #3bcc75;
      font-weight: 500;
      display: inline-block;
      transition: color 0.3s;
    }

      .item-card-link i {
        margin-left: 0.5rem;
        transition: transform 0.3s;
      }

        .item-card-link:hover {
          color: #2da362;
        }

          .item-card-link:hover i {
            transform: translateX(5px);
          }

/* -- Products */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

  .product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }

    .product-card:hover {
      transform: translateY(-10px);
    }

    .product-img {
      height: 250px;
      padding: 15px;
      overflow: hidden;
    }

      .product-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.5s;
      }

    .product-card:hover .product-img img {
      transform: scale(1.1);
    }

    .product-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

      .product-title {
        font-size: 1.8rem;
        padding: 1rem 2rem;
        text-align: center;
      }

      .product-price {
        color: #3bcc75;
        font-weight: 600;
        padding: 0 2rem;
        font-size: 1.8rem;
        text-align: center;
      }

      .product-btn {
        display: block;
        background-color: #3bcc75;
        color: white;
        border: none;
        width: 90%;
        margin: 1.5rem auto;
        padding: 1.2rem 0;
        border-radius: 5px;
        font-size: 1.5rem;
        cursor: pointer;
        transition: background-color 0.3s;
      }

        .product-btn:hover {
          background-color: #2da362;
        }

/* -- Notifications */

.block-notifications {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

  .notification {
    background-color: #3bcc75;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.4rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, opacity 0.3s;
  }

.notification.hide {
  transform: translateY(100%);
  opacity: 0;
}

/* -- Login */

.login-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 900;
}

/* -- Media Queries */

@media (max-width: 1100px) {
  .footer-logo {
    min-width: inherit;
    max-width: inherit;
    width: 100%;
  }
}

@media (max-width: 968px) {
  .header-action.header-menu {
    display: inline-block;
  }

  .header-links {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
