/* ============================
   CSS RESET
   ============================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family-3);
  color: var(--text-color-1);
  background-color: var(--bg-color-1);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

/* ============================
   CSS VARIABLES (Design System)
   ============================ */
:root {
  --bg-color-1: rgb(255, 255, 255);
  --bg-color-2: rgba(0, 0, 0, 0.05);
  --bg-color-3: rgb(35, 164, 85);
  --bg-color-4: rgb(48, 197, 168);
  --bg-color-5: rgb(237, 240, 248);
  --bg-color-6: rgb(0, 0, 0);
  --bg-color-7: rgb(51, 51, 51);
  --text-color-1: rgb(58, 58, 58);
  --text-color-2: rgb(30, 115, 190);
  --text-color-3: rgb(20, 20, 20);
  --text-color-4: rgb(51, 55, 61);
  --text-color-5: rgb(4, 4, 4);
  --text-color-6: rgb(35, 164, 85);
  --text-color-7: rgb(255, 255, 255);
  --text-color-8: rgb(48, 197, 168);
  --text-color-9: rgb(122, 122, 122);
  --text-color-10: rgb(77, 77, 77);
  --text-color-11: rgb(105, 114, 125);
  --text-color-12: rgb(84, 89, 95);
  --font-family-1: sans-serif;
  --font-family-2: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-3: 'Poppins', sans-serif;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-family-3);
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn--primary {
  background-color: var(--bg-color-3);
  color: var(--text-color-7);
}

.btn--secondary {
  background-color: #30C5A8;
  color: var(--text-color-7);
}

.btn--dark {
  background-color: var(--bg-color-6);
  color: var(--text-color-7);
  font-size: 18px;
  padding: 14px 32px;
}

/* ============================
   HEADER
   ============================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1002;
  background-color: var(--bg-color-1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.header__container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1003;
  background-color: var(--bg-color-1);
}

.header__logo img {
  height: 22px;
  width: auto;
}

.header__menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-color-1);
  padding: 20px 24px 24px;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.header__menu--open {
  transform: translateX(0);
}

.header__menu-link {
  font-family: var(--font-family-2);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-color-4);
  padding: 14px 0;
  display: block;
  border-bottom: 1px solid #eee;
  transition: color 0.2s;
}

.header__menu-link:hover {
  color: #BD4BA2;
}

.header__menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.header__menu-icon,
.header__menu-icon::before,
.header__menu-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-color-4);
  transition: transform 0.3s, opacity 0.3s;
}

.header__menu-icon::before,
.header__menu-icon::after {
  content: '';
  position: absolute;
}

.header__menu-icon::before {
  top: 10px;
}

.header__menu-icon::after {
  bottom: 10px;
}

/* Hamburger → X quando aberto */
.menu-open .header__menu-icon {
  background-color: transparent;
}

.menu-open .header__menu-icon::before {
  top: 50%;
  transform: rotate(45deg);
}

.menu-open .header__menu-icon::after {
  bottom: 50%;
  transform: rotate(-45deg);
}

.header__nav {
  position: relative;
  flex: 1;
}

.header__login-icon {
  display: none;
  color: var(--text-color-4);
  transition: color 0.2s;
}

.header__login-icon:hover {
  color: #BD4BA2;
}

/* Menu Footer (Login + Redes Sociais) */
.header__menu-footer {
  margin-top: auto;
  padding: 20px 24px;
  background-color: #F7F7F7;
  margin-left: -24px;
  margin-right: -24px;
  margin-bottom: -24px;
}

.header__menu-login {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family-3);
  font-size: 16px;
  color: var(--text-color-4);
  padding: 12px 0;
}

.header__menu-social {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.header__menu-social a {
  color: var(--text-color-4);
  display: flex;
  transition: color 0.2s;
}

.header__menu-social a:hover {
  color: var(--text-color-6);
}

/* ============================
   MOBILE HERO
   ============================ */
.hero-mobile {
  display: block;
}

.hero-mobile__link {
  display: block;
}

.hero-mobile__img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================
   HERO (Desktop)
   ============================ */
.hero {
  display: none;
  width: 100%;
  overflow: hidden;
}

.hero__link {
  display: block;
}

.hero__img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================
   PRODUCTS TITLE
   ============================ */
.products-title {
  padding: 40px 20px 10px;
}

.products-title__container {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.products-title__heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-color-3);
  font-family: var(--font-family-3);
}

/* ============================
   PRODUCTS GRID
   ============================ */
.products-grid {
  background-color: #F4F4F4;
  padding: 10px 12px 20px;
}

.products-grid__container {
  background-color: #F4F4F4;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 5px;
  overflow: hidden;
}

.product-card {
  text-align: center;
  padding: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.product-card__link {
  display: block;
  width: 100%;
}

.product-card__image-wrap {
  border-radius: 0;
  margin-bottom: 10px;
  width: 100%;
  overflow: hidden;
}

.product-card__image-wrap img {
  margin: 0 auto;
  width: 100%;
  max-height: 350px;
  object-fit: cover;
}

.product-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-color-5);
  font-family: var(--font-family-3);
  margin-bottom: 6px;
  overflow-wrap: break-word;
}

.product-card__description {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color-1);
  font-family: var(--font-family-3);
  margin-bottom: 8px;
  line-height: 1.4;
  height: calc(16px * 1.4 * 2);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card__price {
  margin-bottom: 12px;
  font-family: var(--font-family-3);
}

.product-card__price-prefix {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color-3);
}

.product-card__price-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-color-6);
}

.product-card__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 6px;
  font-family: var(--font-family-3);
}

.product-card__stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  vertical-align: middle;
}

.product-card__stars svg {
  vertical-align: middle;
}

.product-card__score {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-color-3);
  margin-left: 4px;
}

.product-card__reviews {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-color-9);
  flex-basis: 100%;
  text-align: center;
}

.product-card__cta {
  margin-top: auto;
}

.product-card__cta .btn {
  font-size: 14.4px;
  font-weight: 600;
  padding: 10px 24px;
}

/* ============================
   ABOUT SECTION
   ============================ */
.about {
  width: 100%;
}

.about__container {
  display: flex;
  flex-direction: column;
}

.about__image-col {
  width: 100%;
}

.about__image-col img {
  width: 100%;
  height: auto;
  display: block;
}

.about__text-col {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about__heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-color-3);
  font-family: var(--font-family-3);
  margin-bottom: 16px;
  line-height: 1.3;
}

.about__highlight {
  color: var(--text-color-8);
}

.about__text {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-color-1);
  font-family: var(--font-family-3);
  margin-bottom: 24px;
  line-height: 1.6;
}

.about__cta .btn {
  font-size: 16px;
}

/* ============================
   FLAVORS SECTION
   ============================ */
.flavors {
  padding: 40px 20px 10px;
}

.flavors__container {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.flavors__heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-color-3);
  font-family: var(--font-family-3);
}

.flavors-grid {
  padding: 10px 0 30px;
  overflow: hidden;
}

.flavors-grid__container {
  display: flex;
  gap: 10px;
  animation: flavors-scroll 20s linear infinite;
  width: max-content;
}

.flavors-grid__item {
  flex: 0 0 75vw;
}

.flavors-grid__item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@keyframes flavors-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================
   TESTIMONIALS TITLE
   ============================ */
.testimonials-title {
  padding: 30px 20px 10px;
}

.testimonials-title__container {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-title__heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-color-3);
  font-family: var(--font-family-3);
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials {
  padding: 10px 20px 40px;
}

.testimonials__layout {
  max-width: 1300px;
  margin: 0 auto;
}

.testimonials__gif {
  display: none;
}

.testimonials__gif img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonials__carousel {
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}

.testimonials__slide {
  flex: 0 0 100%;
  background: #f5f5f5;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.testimonials__arrow {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-color-1);
  border: 1px solid #d0d0d0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 2;
  color: var(--text-color-3);
  transition: box-shadow 0.2s;
}

.testimonials__arrow:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s;
}

.testimonials__dot--active {
  background: var(--bg-color-4);
}

/* ============================
   REVIEW CARDS
   ============================ */

.review-card {
  margin-bottom: 24px;
}

.review-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-color-3);
  font-family: var(--font-family-3);
  margin-bottom: 2px;
}

.review-card__stars {
  color: #f5a623;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.review-card__text {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-color-1);
  font-family: var(--font-family-3);
  line-height: 1.55;
}

.review-card__product {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg-color-1);
  border-radius: 12px;
  transition: box-shadow 0.2s;
}

.review-card__product:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.review-card__product img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 6px;
}

.review-card__product-info {
  display: flex;
  flex-direction: column;
}

.review-card__product-info strong {
  font-size: 14px;
  color: var(--text-color-3);
  font-family: var(--font-family-3);
}

.review-card__product-info span {
  font-size: 12px;
  color: var(--text-color-9);
  font-family: var(--font-family-3);
}

/* ============================
   TRACKING CTA
   ============================ */
.tracking-cta {
  background-color: var(--bg-color-5);
  padding: 50px 20px;
}

.tracking-cta__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background-color: var(--bg-color-1);
  padding: 40px 30px;
  border-radius: 4px;
}

.tracking-cta__heading {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-color-4);
  font-family: var(--font-family-3);
  margin-bottom: 20px;
}

/* ============================
   FOOTER LINKS
   ============================ */
.footer-links {
  padding: 50px 20px 30px;
  background-color: #EFF0F5;
}

.footer-links__container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.footer-links__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color-5);
  font-family: var(--font-family-3);
  margin-bottom: 12px;
}

.footer-links__whatsapp {
  color: var(--text-color-2);
  font-weight: 400;
}

.footer-links__text {
  font-size: 16px;
  color: var(--text-color-10);
  font-family: var(--font-family-2);
  line-height: 1.6;
  margin-bottom: 4px;
}

.footer-links__list li {
  margin-bottom: 6px;
}

.footer-links__list a {
  font-size: 15px;
  color: var(--text-color-11);
  font-family: var(--font-family-3);
  font-weight: 400;
  transition: color 0.2s;
}

.footer-links__list a:hover {
  color: var(--text-color-6);
}

/* ============================
   FOOTER SOCIAL
   ============================ */
.footer-social {
  padding: 0 20px;
  background-color: #EFF0F5;
}

.footer-social__container {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.footer-social__divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin-bottom: 20px;
}

.footer-social__icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-social__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-color-7);
  color: var(--text-color-7);
  transition: opacity 0.2s;
}

.footer-social__icon:hover {
  opacity: 0.8;
}

.footer-social__legal-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 10px 0 20px;
}

.footer-social__legal-links a {
  font-size: 13px;
  color: var(--text-color-4);
  font-family: var(--font-family-3);
  font-weight: 400;
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-social__legal-links a:hover {
  color: var(--text-color-6);
}

/* ============================
   FOOTER BOTTOM (dark)
   ============================ */
.footer-bottom {
  background-color: #EFF0F5;
  padding: 24px 20px;
  text-align: center;
}

.footer-bottom__container {
  max-width: 1140px;
  margin: 0 auto;
}

.footer-bottom__copyright {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-color-4);
  font-family: var(--font-family-3);
  margin-bottom: 6px;
}

.footer-bottom__address {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-color-9);
  font-family: var(--font-family-3);
  margin-bottom: 8px;
}

.footer-bottom__disclaimer {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-color-9);
  font-family: var(--font-family-3);
  line-height: 1.5;
  margin-bottom: 12px;
}

.footer-bottom__badge img {
  margin: 0 auto;
  height: 20px;
  width: auto;
}

/* ============================
   TABLET BREAKPOINT (768px)
   ============================ */
@media (min-width: 768px) {

  /* Header Desktop */
  .header__menu-toggle {
    display: none;
  }

  .header__menu {
    display: flex;
    flex-direction: row;
    position: static;
    transform: none;
    padding: 0;
    gap: 8px;
    background: none;
    transition: none;
  }

  .header__menu-footer {
    display: none;
  }

  .header__menu-link {
    border-bottom: none;
    padding: 4px 8px;
    font-size: 14px;
  }

  .header__login-icon {
    display: flex;
    margin-left: auto;
  }

  .products-grid {
    padding: 10px 20px 20px;
  }

  .products-grid__container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background-color: #F4F4F4;
  }

  .product-card {
    padding: 0 0 18px 0;
  }

  .product-card__image-wrap {
    margin-bottom: 12px;
  }

  .testimonials__container {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }

  .footer-links__container {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .flavors-grid {
    max-width: 1140px;
    margin: 0 auto;
    padding: 10px 20px 30px;
  }

  .flavors-grid__item {
    flex: 0 0 280px;
  }

  .about__container {
    flex-direction: row;
  }

  .about__image-col {
    width: 50%;
  }

  .about__text-col {
    width: 50%;
    padding: 30px 40px;
    text-align: left;
    align-items: flex-start;
  }

}

/* ============================
   DESKTOP BREAKPOINT (1024px)
   ============================ */
@media (min-width: 1024px) {

  /* Header Desktop */
  .header__menu-toggle {
    display: none;
  }

  .header__menu {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
    gap: 8px;
  }

  .header__menu-link {
    padding: 6px 10px;
    font-size: 16px;
    position: relative;
  }

  .header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 10px;
    right: 10px;
    height: 2px;
    background-color: #BD4BA2;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .header__menu-link:hover::after {
    transform: scaleX(1);
  }

  .header__logo img {
    height: 22px;
  }

  /* Hero Desktop */
  .hero-mobile {
    display: none;
  }

  .hero {
    display: block;
  }

  /* Products Desktop */
  .products-title {
    padding: 50px 20px 20px;
    background-color: #F4F4F4;
  }

  .products-title__heading {
    font-size: 40px;
  }

  .products-grid__container {
    background-color: #F4F4F4;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .product-card__name {
    font-size: 20px;
  }

  /* About Desktop */
  .about__heading {
    font-size: 40px;
  }

  .about__text-col {
    padding: 40px 60px;
  }

  /* Flavors Desktop */
  .flavors__heading {
    font-size: 40px;
  }

  .flavors {
    padding: 50px 20px 10px;
  }

  /* Testimonials Desktop */
  .testimonials-title__heading {
    font-size: 40px;
  }

  .testimonials-title {
    padding: 40px 20px 15px;
  }

  .testimonials__layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .testimonials__gif {
    display: block;
    flex: 0 0 280px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--bg-color-4);
  }

  .testimonials__carousel {
    flex: 1;
    min-width: 0;
  }

  .testimonials__slide {
    flex: 0 0 calc((100% - 32px) / 3);
  }

  .testimonials__arrow {
    display: flex;
  }

  /* Tracking CTA Desktop */
  .tracking-cta__heading {
    font-size: 22px;
  }

  /* Footer Desktop */
  .footer-links {
    padding: 60px 20px 40px;
  }

}