/* ==========================================
   Tokens de marca
   ========================================== */

:root {
  --mz-green-600: #205900;
  --mz-green-700: #174200;
  --mz-cream: #fff1b6;
  --mz-cream-50: #fff8d9;
  --mz-brown: #554419;
  --mz-coral: #ff6b3d;
  --mz-coral-dark: #e55a2f;
  --mz-focus: #b5d46a;
  --shadow-sm: 0 2px 8px rgba(85, 68, 25, 0.08);
  --shadow-md: 0 6px 18px rgba(85, 68, 25, 0.12);
  --shadow-lg: 0 18px 36px rgba(85, 68, 25, 0.18);
  --mz-serif: "The Seasons", Georgia, "Times New Roman", serif;
  --mz-sans: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
}

@font-face {
  font-family: "The Seasons";
  src: url("./fonts/TheSeasons-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ==========================================
   Reset básico
   ========================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--mz-sans);
  background: var(--mz-cream);
  color: var(--mz-brown);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ==========================================
   Hero
   ========================================== */

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 15px
}

.container {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  column-gap: clamp(32px, 5vw, 72px);
  row-gap: 16px;
  grid-template-areas:
    "content"
    "proof"
    "cta";
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1fr);
    grid-template-areas:
      "content proof"
      "cta proof";
    align-items: start;
  }

  .hero-proof {
    margin: 0;
    max-width: 100%;
  }

  .transformation-list {
    gap: 14px;
  }

  .transformation-card {
    gap: 10px;
    padding: clamp(10px, 1.5vw, 16px);
  }

  .carousel-wrapper {
    width: min(300px, 100%);
  }
}

.hero-content {
  text-align: left;
  grid-area: content;
}

.logo {
  font-family: var(--mz-serif);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--mz-green-600);

  letter-spacing: 0.01em;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.rating-badge .stars {
  display: flex;
  gap: 2px;
}

.rating-badge .star {
  color: #FFB800;
}

.rating-badge .star.partial {
  color: #FFB800;
}

.rating-badge .rating-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--mz-brown);
  white-space: nowrap;
}

.rating-badge .rating-text strong {
  font-weight: 700;
}

.headline {
  font-family: var(--mz-serif);
  font-weight: 700;
  font-size: clamp(30px, 5vw, 62px);
  color: var(--mz-green-600);
  line-height: 1.12;
  margin: 0 0 12px;
}

.headline .highlight {
  color: var(--mz-coral);
}

.sub-headline {
  font-weight: 500;
  font-size: clamp(18px, 2.5vw, 24px);
  margin-bottom: 10px;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.benefit-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--mz-cream-50);
  border: 1.5px solid rgba(32, 89, 0, 0.16);
  font-weight: 600;
  color: var(--mz-green-600);
  box-shadow: var(--shadow-sm);
}

.benefit-item span {
  white-space: nowrap;
}

.benefit-item .icon {
  color: var(--mz-coral);
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 15px;
  border-radius: 999px;
  background: var(--mz-coral);
  border: 3px solid var(--mz-green-600);
  color: var(--mz-cream);
  font-weight: 600;
  font-size: clamp(16px, 2vw, 20px);
  box-shadow: 0 20px 40px rgba(255, 107, 61, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  margin: 0 auto 24px;
  justify-content: flex-start;
  white-space: nowrap;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: var(--mz-coral-dark);
  box-shadow: 0 26px 56px rgba(255, 107, 61, 0.3);
}

.cta-button:focus-visible {
  outline: 3px solid var(--mz-focus);
  outline-offset: 4px;
}

.cta-icon {
  transition: transform 0.2s ease;
}

.cta-text {
  text-align: left;
}

.cta-button:hover .cta-icon {
  transform: translateX(4px);
}

.trust-badge {
  margin-top: -17px;
  font-size: 15px;
  color: var(--mz-green-600);
  font-weight: 500;
  align-self: center;
  text-align: center;
}

/* ==========================================
   Painel de provas sociais
   ========================================== */

.hero-proof {

  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  grid-area: proof;
}

.step-pills {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  justify-content: center;
}

.step-pill {
  flex: 1 1 0;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 999px;
  background: var(--mz-green-600);
  color: var(--mz-cream);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
}

.step-pill.secondary {
  background: rgba(32, 89, 0, 0.12);
  color: var(--mz-green-600);
  border: 1px solid var(--mz-green-600);
}

.transformation-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.transformation-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0;
  align-items: center;

  border-radius: 28px;

}

.before-cluster {
  display: grid;
  grid-template-columns: repeat(2, minmax(60px, 90px));
  column-gap: 20px;
  row-gap: 0;
  justify-content: center;
  justify-items: center;
  align-items: center;
  max-width: 220px;
}

.before-cluster .photo-item:nth-child(1) {
  grid-column: 1 / span 2;
}

.before-cluster .photo-item:nth-child(2) {
  grid-column: 1;
}

.before-cluster .photo-item:nth-child(3) {
  grid-column: 2;
}

.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  background: #fff;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-item.small {
  width: 150px;
  height: 150px;
  border: 4px solid var(--mz-coral);
}

.photo-item.circle {
  border-radius: 50%;
}

.arrow-single {
  display: flex;
  justify-content: center;
}

.arrow-icon {
  width: 60px;
  filter: drop-shadow(0 8px 12px rgba(32, 89, 0, 0.25));
  animation: float 2.8s ease-in-out infinite;
}

.after-cluster {
  width: 100%;
  display: flex;
  justify-content: center;
}

.carousel-wrapper {
  background: #fff;
  border-radius: 32px;
  border: 5px solid var(--mz-coral);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: min(380px, 100%);
}

.carousel-track {
  display: flex;
  gap: 0;
  width: 100%;
  user-select: none;
  transition: transform 0.3s ease-out;
}

.carousel-track .photo-item {
  flex: 0 0 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  border: none;
  box-shadow: none;
}

/* ==========================================
   Responsividade
   ========================================== */

@media (max-width: 900px) {
  .transformation-card {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }

  .photo-item.small {
    width: 120px;
    height: 120px;
  }

  .carousel-wrapper {
    width: min(340px, 100%);
  }
}

@media (max-width: 600px) {
  .hero-content {
    text-align: center;
  }

  .rating-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-proof {
    max-width: 100%;
  }



  .step-pills {
    gap: 12px;
  }

  .step-pill {
    font-size: 13px;
    padding: 10px 16px;
    line-height: 1.3;
  }

  .benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .benefit-item {
    flex: 0 1 auto;
    max-width: none;
    justify-content: center;
    font-size: 13px;
    padding: 8px 16px;
  }

  .before-cluster {
    grid-template-columns: repeat(2, minmax(0, 80px));
    column-gap: 12px;
    row-gap: 10px;
    max-width: 180px;
    width: 100%;
    margin: 0 auto;
  }

  .photo-item.small {

    border-width: 3px;
  }

  .cta-button {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    white-space: normal;
  }

  .trust-badge {
    text-align: center;
  }

  .cta-text {
    text-align: center;
  }

  .carousel-wrapper {
    padding: 0;
    border-width: 4px;
    width: min(300px, 100%);
    margin: 0 auto;
  }
}

/* ==========================================
   Animações sutis
   ========================================== */

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-area: cta;
}

@media (min-width: 992px) {
  .cta-block {
    align-items: flex-start;
  }
}