@charset "UTF-8";
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

.title-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}
.title-header .title {
  color: #333;
  font-size: 24px;
  border-bottom: 3px solid #FF7C00;
  display: inline-block;
  margin-bottom: 0;
}
.title-header .ver-todos {
  color: #FF7C00;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 5px 10px;
  border-radius: 4px;
}
.title-header .ver-todos:hover {
  color: #ff4e1a;
  transform: translateX(3px);
  text-decoration: none;
}

.title {
  color: #333;
  font-size: 24px;
  border-bottom: 3px solid #FF7C00;
  display: inline-block;
  margin-bottom: 20px;
}

.banner {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #ddd;
  overflow: hidden;
}
.banner img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}
.banner .banner-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.banner .banner-content p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.teamSection {
  margin-top: 25px;
}
.teamSection .swiper-container {
  width: 100%;
  padding-bottom: 52px;
  padding-top: 32px;
  position: relative;
}
.teamSection .swiper-wrapper {
  align-items: center;
}
.teamSection .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}
.teamSection .team {
  border: 5px solid transparent;
  border-radius: 50%;
  display: flex;
  padding: 16px;
  background-color: #f9f9f9;
  width: 140px;
  height: 140px;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: linear-gradient(#f9f9f9, #f9f9f9) padding-box, linear-gradient(45deg, #ff4e1a, #FF7C00) border-box;
}
.teamSection .team:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  background-color: #eaeaea;
}
.teamSection .team img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.teamSection .swiper-pagination-teams {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.destaques .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding-bottom: 50px;
}
.destaques .card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.destaques .card:hover {
  transform: translateY(-5px);
}
.destaques .card .card-link {
  text-decoration: none;
  color: inherit;
}
.destaques .card .card-link:hover {
  color: inherit;
  text-decoration: none;
}
.destaques .card .card-link:hover * {
  color: inherit;
  text-decoration: none;
}
.destaques .card .card-link:hover h3 {
  color: #333;
}
.destaques .card .card-link:hover .price {
  color: #FF7C00;
}
.destaques .card .card-link:hover .old-price {
  color: #aaa;
}
.destaques .card .card-link:hover .stars {
  color: #f5c518;
}
.destaques .card .cardContent {
  padding: 20px;
}
.destaques .card .cardContent img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 0;
}
.destaques .card .info {
  padding: 15px;
}
.destaques .card .info h3 {
  font-size: 18px;
  margin: 0 0 10px;
  color: #333;
}
.destaques .card .info .price {
  font-size: 16px;
  color: #FF7C00;
  font-weight: bold;
}
.destaques .card .info .old-price {
  text-decoration: line-through;
  color: #aaa;
  margin-left: 10px;
  font-size: 14px;
}
.destaques .card .badge {
  position: absolute;
  background: #FF7C00;
  color: white;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 8px 0;
}
.destaques .card .free-shipping {
  background: #FF7C00;
  color: white;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin-top: 10px;
}
.destaques .card .stars {
  color: #f5c518;
  font-size: 14px;
  margin-top: 5px;
}

.optionsProduct {
  padding-bottom: 20px;
}
.optionsProduct .alignOptions {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1180px) {
  .optionsProduct .alignOptions {
    flex-direction: column;
    align-items: center;
  }
}
.optionsProduct .alignOptions .option {
  overflow: hidden;
  /* Garante que o efeito não ultrapasse a área */
  display: inline-block;
}
.optionsProduct .alignOptions .option img {
  max-width: 475px;
  width: 100%;
  transition: transform 0.3s ease-in-out;
  /* Efeito suave */
}
.optionsProduct .alignOptions .option:hover img {
  transform: scale(1.1);
  /* Aumenta levemente o tamanho */
}

.promotions {
  padding: 20px 0;
}
.promotions .alignBanner {
  display: flex;
  justify-content: center;
}
.promotions img {
  width: 100%;
  border-radius: 16px;
  height: 411px;
}

.safePurchase {
  padding: 20px 0;
}
.safePurchase .features-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .safePurchase .features-grid {
    flex-direction: column;
    gap: 30px;
  }
}
.safePurchase .features-grid .feature-card {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 350px;
  width: 100%;
  padding: 20px;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .safePurchase .features-grid .feature-card {
    max-width: 100%;
    padding: 25px;
    text-align: center;
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .safePurchase .features-grid .feature-card img {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 768px) {
  .safePurchase .features-grid .feature-card .featureGroup {
    text-align: center;
  }
}
.safePurchase .features-grid .feature-card .featureGroup p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}
@media (max-width: 768px) {
  .safePurchase .features-grid .feature-card .featureGroup p {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
.safePurchase .features-grid .feature-card .featureGroup span {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .safePurchase .features-grid .feature-card .featureGroup span {
    font-size: 15px;
  }
}

.reviews {
  padding: 20px 0;
}
.reviews .reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
  padding-bottom: 50px;
}
.reviews .review-card {
  cursor: pointer;
  background-color: #fff;
  border: 2px solid #FF7C00;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.reviews .review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.reviews .review-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #FF7C00;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.reviews .review-card .message {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}
.reviews .review-card .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reviews .review-card .info .author {
  font-size: 14px;
  color: #333;
  font-weight: bold;
}
.reviews .review-card .info .date {
  font-size: 14px;
  color: #888;
  font-style: italic;
}
.reviews .review-card .stars {
  font-size: 16px;
  color: #FFD700;
  text-align: right;
  margin-top: 10px;
}

.s-slide-hero .swiper-container {
  width: 100%;
  max-width: 100vw;
  height: auto;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 16/5;
  background: #222;
}
.s-slide-hero .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 18px;
  background: #222;
}
.s-slide-hero .swiper-pagination-banner {
  display: none !important;
}

.swiper-pagination,
.swiper-pagination-teams,
.swiper-pagination-destaques {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
  bottom: 0;
  margin-top: 10px;
}

.swiper-pagination-bullet {
  background: #FF7C00 !important;
  opacity: 0.5;
  width: 10px !important;
  height: 10px !important;
  margin: 0 3px !important;
  border-radius: 50%;
  transition: opacity 0.2s;
  display: inline-block;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #FF7C00 !important;
  box-shadow: 0 0 0 2px #fff;
}
