/* #region 01 Header */
header {
  background: var(--Gradiente-light);
  color: var(--light);
  padding: 0 4%;
  padding-top: 0.2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
  animation: fadeInDown 0.8s ease-out;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

.logo {
  flex: 0 0 auto;
  padding: 0;
}
.logo-image {
  height: 72px;
  margin: 0;
  padding-top: 4px;
  object-fit: contain;
}
.logo i {
  display: flex;
  align-items: center;
  margin: 0;
  flex: 0 0 auto;
  padding: 0;
}

.fas {
  color: var(--accent);
  text-shadow: var(--shadowtx);
}

.search-container {
  flex: 1;
  max-width: 400px;
  margin: 0 20px;
}

.search-form {
  display: flex;
  position: relative;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 8px 15px;
  padding-right: 40px;
  border: none;
  border-radius: 30px;
  font-size: 0.9rem;
  background-color: var(--light);
  box-shadow: 0 2px 10px var(--shadow);
}

.search-input:focus {
  outline: none;
  box-shadow: 0 2px 16px var(--shadow);
  background-color: var(--light);
}

.search-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40px;
  border: none;
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  border-radius: 0 30px 30px 0;
}

.search-button:hover {
  color: var(--secondary);
  background-color: var(--primary);
}
/* #endregion */

/* #endregion */

/* #region 02 Hero Slider */
.hero-slider {
  position: relative;
  padding: 0;
  margin-top: 112px;
  height: 80vh;
  max-height: 512px;
  overflow: hidden;
  margin-inline: 32px;
}

.slider-container {
  position: relative;
  height: 100%;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Controles */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.4);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.slider-prev {
  left: 32px;
}

.slider-next {
  right: 32px;
}

.slider-prev:hover,
.slider-next:hover,
.fas:hover {
  background: var(--primary);
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--primary);
  transform: scale(1.2);
}
/* #endregion */

/* #region 03 Products Semanais */
.products {
  padding: 32px 5%;
}

.products-container {
  max-width: 1200px;
  margin: 0 auto;
}
#section-title {
  color: var(--primary);
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
}
#section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 10px auto 0;
  border-radius: 2px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.product-card {
  background: var(--light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  transform: translateY(20px);
  width: 100%;
  max-width: 360px;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--accent);
}

.product-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--primary);
  color: var(--light);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.product-info {
  padding: 1.4rem;
}

.product-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.product-price {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.current-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--primary);
}

.original-price {
  font-size: 1rem;
  color: var(--secondary);
  text-decoration: line-through;
  margin-left: 10px;
}

.discount {
  background-color: var(--primary);
  color: var(--light);
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: bold;
  margin-left: 10px;
}

.product-rating {
  color: var(--accent);
  margin-bottom: 1rem;
}

.product-button {
  display: block;
  width: 100%;
  padding: 10px;
  border: none;
  background: var(--Gradiente-light);
  color: var(--light);
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  pointer-events: auto !important;
  user-select: none !important;
}

.product-button:hover {
  background: var(--gradient-accent);
  transform: translateY(-2px);
  color: var(--dark);
}
/* #endregion */

/* #region 04 Features */
.features {
  background-color: var(--light);
  padding: 32px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

#section-title01 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  position: relative;
}

#section-title01::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 10px auto 0;
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--light);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
  transform: translateY(20px);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px var(--accent);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.feature-card p {
  color: var(--dark);
  line-height: 1.6;
}
/* #endregion */

/* #region 05 Social Circles */
.social-media-cta {
  background: var(--color-light);
  padding: 28px 5%;
  margin: 0 auto 24px;
  color: var(--light);
}

.social-media-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 16px;
}

.social-media-title {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
}

.social-media-circles {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.social-circle {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  color: var(--light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-decoration: none;
  box-shadow: var(--shadow);
  backdrop-filter: blur(3px);
  animation: socialFloat 4.2s ease-in-out infinite;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}
#circle-01 {
  background: linear-gradient(135deg, #1877f2 0%, #3b5998 50%, #4267b2 100%);
}
#circle-02 {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}
#circle-03 {
  background: #000000;
}
.social-circle i {
  color: inherit;
  line-height: 1;
}

.social-circle:nth-child(2) {
  animation-delay: 0.2s;
}

.social-circle:nth-child(3) {
  animation-delay: 0.4s;
}

.social-circle:hover {
  transform: translateY(-6px) scale(1.06);
  color: var(--dark);
  border-color: var(--light);
}
/* #endregion */

/* #region 06 WhatsApp Group */
.whatsapp-cta {
  background: var(--Gradiente-light);
  color: var(--light);
  position: relative;
  overflow: hidden;
  animation: fadeIn 1s ease-out;
  margin: 0 auto 32px;
  display: flex;
  min-height: 180px;
  height: auto;
  padding: 20px 5%;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.whatsapp-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.whatsapp-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.whatsapp-title {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: var(--light);
  text-shadow: var(--shadowtx);
  animation: slideInDown 0.8s ease-out;
}

.whatsapp-text {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  animation: fadeIn 1s ease-out 0.3s both;
}

.whatsapp-benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  animation: fadeIn 1s ease-out 0.6s both;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 245, 249, 0.2);
  border-radius: 30px;
  padding: 4px 10px;
  font-weight: bold;
  color: var(--light);
  text-shadow: var(--shadowtx);
  animation: pulse 2.4s infinite;
  font-size: 0.9rem;
  text-align: center;
}

.benefit-item:hover {
  background: var(--Gradiente-light);
  transform: translateY(-3px);
}

.benefit-item i {
  color: var(--accent);
  font-size: 1.2rem;
}

.whatsapp-button {
  display: block;
  padding: 8px 24px;
  font-size: 0.9rem;
  margin-top: 0;
  box-shadow: var(--shadow);
  animation:
    pulse 2s infinite 1s,
    fadeIn 1s ease-out 0.9s both;
  border: none;
  background: var(--Gradiente-light);
  color: var(--light);
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  font-family: inherit;
  line-height: inherit;
  width: 100%;
  max-width: 320px;
  min-width: 160px;
  margin: 0 auto;
}

.whatsapp-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow);
  background: var(--gradient-accent);
  color: var(--dark);
}

.whatsapp-button i {
  font-size: 1.5rem;
}

/* #endregion */

/* #region 06 Products Mensais*/
.products-mensais {
  padding: 32px 5%;
}

.products-mensais-container {
  max-width: 1200px;
  margin: 0 auto;
}

#section-title-mensais {
  color: var(--primary);
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.2rem;
  font-weight: bold;
  position: relative;
}

#section-title-mensais::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 10px auto 0;
  border-radius: 2px;
}

.products-mensais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 0.2rem;
  justify-items: center;
}

.product-mensal-card {
  background: var(--light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  width: 100%;
  max-width: 210px;
  min-width: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 240px;
}

.product-mensal-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.product-mensal-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px var(--accent);
  z-index: 2;
}

.product-mensal-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--primary);
  color: var(--light);
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
}

.product-mensal-info {
  padding: 0.5rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  height: 100%;
}

.product-mensal-title {
  font-size: 0.85rem;
  color: var(--dark);
  line-height: 1.2;
  font-weight: bold;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.4em;
}

.product-mensal-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
  row-gap: 0.1rem;
}

.current-mensal-price {
  font-size: 1rem;
  font-weight: bold;
  color: var(--primary);
}

.original-mensal-price {
  font-size: 0.8rem;
  color: var(--secondary);
  text-decoration: line-through;
}

.mensal-discount {
  background-color: var(--primary);
  color: var(--light);
  padding: 2px 5px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: bold;
}

.product-mensal-rating {
  color: var(--accent);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 2px;
}

.product-mensal-button {
  display: block;
  width: 100%;
  padding: 6px 0;
  border: none;
  background: var(--Gradiente-light);
  color: var(--light);
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  font-size: 0.85rem;
  margin-top: auto;
}

.product-mensal-button:hover {
  background: var(--gradient-accent);
  transform: translateY(-2px);
  color: var(--dark);
}
/* #endregion */

/* #region 07 Testimonials */
.testimonials {
  padding: 32px 5%;
  background: var(--Gradiente-light);
  color: var(--light);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

#section-title02 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--light);
  position: relative;
}

#section-title02::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 10px auto 0;
  border-radius: 2px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--light);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  opacity: 1;
  transform: none;
  animation: testimonialFadeIn 0.8s ease;
}

.testimonial-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}

.testimonial-text {
  color: var(--dark);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--primary);
}

.author-info p {
  font-size: 0.9rem;
  color: var(--secondary);
}
/* #endregion */

/* #region 08 Final CTA */
.final-cta {
  text-align: center;
  background: var(--Gradiente-light);
  color: var(--light);
  margin: 64px auto;
}

#pelicula-cta {
  padding: 32px 5%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.final-cta h2 {
  margin-bottom: 3rem;
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--light);
  position: relative;
}
.final-cta h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 10px auto 0;
  border-radius: 2px;
}
.final-cta p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

#cta-button {
  display: block;
  margin: 0 auto;
  padding: 10px;
  border: none;
  background: var(--Gradiente-light);
  color: var(--light);
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  pointer-events: auto !important;
  user-select: none !important;
  width: 100%;
  max-width: 320px;
  min-width: 160px;
}

#cta-button:hover {
  background: var(--gradient-accent);
  transform: translateY(-2px);
  color: var(--dark);
}
/* #endregion */

/* #region 09 Footer */
footer {
  background: var(--gradient-dark);
  color: var(--light);
  padding: 3rem 5%;
  text-align: center;
}

.footer-logo {
  margin-bottom: 1.5rem;
  height: 64px;
  object-fit: cover;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--light);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-icons a {
  color: var(--light);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-5px);
}

.copyright {
  color: var(--color-accent);
  font-size: 0.9rem;
}

#copylink {
  color: var(--secondary);
  font-size: 0.9rem;
  text-decoration: none;
}

#copylink:hover {
  color: var(--accent);
}

#footer-fale-conosco {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

#footer-fale-conosco:hover {
  color: var(--accent);
}
/* #endregion */

/* #region Animations */
@keyframes pulseSoft {
  0% {
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
  }
  100% {
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.3));
  }
}
@keyframes testimonialFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0px 0px 1px var(--primary);
  }
  50% {
    box-shadow: 0px 0px 4px var(--primary);
  }
  100% {
    box-shadow: 0px 0px 1px var(--primary);
  }
}

@keyframes socialFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
/* #endregion */

/* #region Responsive */

/* Celular Portrait (320px - 480px) */
@media (max-width: 480px) {
  /* #region 01 Header */
  header {
    position: sticky;
    padding: 0px;
  }

  .header-container {
    flex-direction: column;
    justify-content: space-evenly;
    gap: 4px;
    width: 100%;
    padding: 4px;
  }
  .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 93%;
    padding: 0;
  }
  .logo-image {
    height: 36px;
    max-width: 110px;
    padding: 0px;
  }

  .search-container {
    width: 100%;
    max-width: 93%;
    margin: 0px;
    padding: 0px;
    height: 26px;
  }

  .search-form {
    height: 30px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    border: 1px solid #eee;
  }

  .search-input {
    flex: 1;
    padding: 0 12px;
    font-size: 0.75rem;
    border: none;
    outline: none;
  }

  .search-button {
    width: 34px;
    background: var(--primary);
    color: white;
    border: none;
  }

  .countdown {
    width: 93%;
    margin: 0 auto;
    padding: 3px 4px;
    font-size: 0.68rem;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    text-align: center;
    line-height: 1.1;
  }
  /*  #endregion */

  /* #region 02 Hero Slider */
  .hero-slider {
    margin-top: 16px;
    margin-inline: 16px;
    height: 40vh; /* Altura ajustada para mobile */
    max-height: 152px; /* Altura máxima reduzida */
  }

  .slider-prev,
  .slider-next {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .slider-prev {
    left: 8px;
  }

  .slider-next {
    right: 8px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
  /* #endregion */

  /* #region 03 Products */
  .products-grid {
    grid-template-columns: 1fr;
  }
  /* #endregion */

  /* #region 06 Products Mensais */
  .products-mensais-grid {
    grid-template-columns: 1fr;
  }
  .product-mensal-card {
    height: auto;
    min-height: 220px;
  }
  .product-mensal-info {
    height: 50%;
  }
  /* #endregion */

  /* #region 04 Features */
  .features-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .feature-card {
    margin: 0 auto;
    max-width: 340px;
    width: 100%;
  }
  /* #endregion */

  /* #region 05 Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .testimonial-card {
    margin: 0 auto;
    max-width: 340px;
    width: 100%;
  }
  /* #endregion */

  /* #region 05 Social Circles */
  .social-media-title {
    font-size: 1.4rem;
  }
  .social-media-circles {
    gap: 0.8rem;
  }
  .social-circle {
    width: 72px;
    height: 72px;
    font-size: 1.7rem;
  }
  /* #endregion */

  /* #region 07 WhatsApp Group */
  .whatsapp-title {
    font-size: 1.4rem;
  }
  .whatsapp-text {
    font-size: 0.8rem;
  }
  .whatsapp-cta {
    flex-direction: column;
    padding: 16px 2%;
    min-height: unset;
    height: auto;
  }
  .whatsapp-content {
    max-width: 100%;
    padding: 0;
  }
  .whatsapp-button {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    padding: 4px 0;
  }
  .whatsapp-benefits {
    flex-direction: column;
    gap: 0.5rem;
  }
  /* #endregion */
}
/* Celular Landscape (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) and (orientation: landscape) {
  /* #region 01 Header */
  .header-container {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 8px 0;
    gap: 4px;
  }

  .logo {
    width: auto;
    min-width: 120px;
    margin-right: 12px;
  }
  .logo-image {
    height: 44px;
    max-width: 120px;
  }
  .search-container {
    order: 2;
    width: 60%;
    margin: 0;
    height: 32px;
  }

  .countdown {
    order: 3;
    width: 100%;
    margin-top: 4px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    justify-items: center;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 20px;
  }
  .hero-slider {
    max-height: 250px;
    margin-top: 160px;
    margin-inline: 16px;
  }

  /* #endregion */

  /* #region 06 Products Mensais */
  .products-mensais-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-mensal-card {
    height: auto;
    min-height: 220px;
  }
  .product-mensal-info {
    height: 50%;
  }
  /* #endregion */

  /* #region 04 Features */
  .features-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .feature-card {
    margin: 0 auto;
    max-width: 420px;
    width: 100%;
  }
  /* #endregion */

  /* #region 05 Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .testimonial-card {
    margin: 0 auto;
    max-width: 420px;
    width: 100%;
  }
  /* #endregion */
}
/* Tablet Portrait (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  /* #region 06 Products Mensais */
  .products-mensais-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* #endregion */
  /* #region 02 Hero Slider */
  .hero-slider {
    margin-top: 96px;
    margin-inline: 16px;
  }
  .product-mensal-info {
    height: 50%;
  }
  /* #endregion */
}
/* Celular Portrait (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) and (orientation: portrait) {
  /* #region 02 Hero Slider */
  .hero-slider {
    margin-top: 120px;
    margin-inline: 16px;
    height: 40vh; /* Altura ajustada para mobile */
    max-height: 256px; /* Altura máxima reduzida */
  }

  .slider-prev,
  .slider-next {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .slider-prev {
    left: 8px;
  }

  .slider-next {
    right: 8px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
  /* #endregion */

  /* #region 06 Products Mensais */
  .products-mensais-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem 0.4rem;
  }
  .product-mensal-card {
    height: auto;
    min-height: 220px;
  }
  .product-mensal-info {
    height: 50%;
  }
  /* #endregion */

  /* #region 01 Header Ajuste 666px */
  header {
    padding: 0 1%;
    min-height: unset;
    height: auto;
    margin-bottom: 4px;
  }
  .header-container {
    flex-direction: column;
    gap: 3px;
    padding: 3px 0 0 0;
    min-height: unset;
    height: auto;
  }
  .logo {
    width: 75%;
    min-width: 90px;
    margin: 0 auto 2px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
  }
  .logo-image {
    height: 28px;
    max-width: 80px;
    padding: 0;
  }
  .search-container {
    width: 90%;
    max-width: 90%;
    margin: 0 auto 2px auto;
    padding: 0;
    height: 24px;
  }
  .countdown {
    width: 90%;
    margin: 0 auto 2px auto;
    padding: 3px 4px;
    font-size: 0.72rem;
    border-radius: 10px;
    min-width: unset;
    background: rgba(255, 255, 255, 0.13);
    line-height: 1.1;
    height: auto;
  }
}
/* Tablet Landscape (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  /* #region 06 Products Mensais */
  .products-mensais-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  /* #endregion */
  /* #region 02 Hero Slider */
  .hero-slider {
    margin-top: 120px;
    margin-inline: 32px;
  }
  /* #endregion */
}

/* #region 05 Social Circles - Bloco dedicado */
@media (min-width: 1025px) and (max-width: 1920px) {
  .social-media-cta {
    padding: 28px 5%;
  }

  .social-media-title {
    font-size: 1.8rem;
  }

  .social-circle {
    width: 86px;
    height: 86px;
    font-size: 2rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .social-media-cta {
    padding: 20px 4%;
  }

  .social-media-title {
    font-size: 1.6rem;
  }

  .social-media-circles {
    gap: 1rem;
  }

  .social-circle {
    width: 76px;
    height: 76px;
    font-size: 1.8rem;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .social-media-cta {
    padding: 16px 3%;
  }

  .social-media-title {
    font-size: 1.3rem;
  }

  .social-media-circles {
    gap: 0.8rem;
  }

  .social-circle {
    width: 68px;
    height: 68px;
    font-size: 1.55rem;
  }
}
/* #endregion */
/* #endregion */
/* #endregion */
