/* ===== CUSTOM PROPERTIES (Palette from original) ===== */
:root {
  --tv-bone: #f8f5f0;
  --tv-forest: #1d3a2f;
  --tv-ink: #1a1d1a;
  --tv-mustard: #e8b342;
  --tv-olive: #28513e;
  --tv-sage: #e8eae3;
  --tv-terracotta: #e27b45;
  --tv-slate: #4a524d;
  --tv-bone-85: rgba(248, 245, 240, 0.85);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--tv-ink);
  background: var(--tv-bone);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section__tag {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--tv-olive);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--tv-ink);
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--tv-slate);
  max-width: 580px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn--terracotta {
  background: var(--tv-terracotta);
  color: var(--tv-bone);
  box-shadow: 0 8px 24px rgba(226, 123, 69, 0.25);
}

.btn--terracotta:hover {
  background: #d06a35;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(226, 123, 69, 0.3);
}

.btn--outline {
  background: transparent;
  border: 2px solid rgba(26, 29, 26, 0.15);
  color: var(--tv-ink);
}

.btn--outline:hover {
  border-color: var(--tv-forest);
  color: var(--tv-forest);
}

.btn--dark {
  background: var(--tv-ink);
  color: var(--tv-bone);
}

.btn--dark:hover {
  background: #333;
  transform: translateY(-1px);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn__arrow {
  transition: transform 0.3s;
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 245, 240, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(29, 58, 47, 0.08);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar__logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--tv-forest);
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__logo-accent {
  color: var(--tv-terracotta);
}

.navbar__logo-img {
  width: 32px;
  height: 32px;
}

.navbar__links {
  display: flex;
  gap: 32px;
}

.navbar__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--tv-slate);
  transition: color 0.2s;
}

.navbar__links a:hover {
  color: var(--tv-forest);
}

/* ===== HERO ===== */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  background: var(--tv-sage);
  color: var(--tv-olive);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--tv-ink);
}

.hero__highlight {
  position: relative;
  display: inline-block;
}

.hero__highlight-text {
  position: relative;
  z-index: 1;
  color: var(--tv-forest);
}

.hero__highlight-bar {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 12px;
  background: rgba(232, 179, 66, 0.7);
  border-radius: 3px;
  z-index: 0;
}

.hero__hand {
  font-family: 'Caveat', cursive;
  color: var(--tv-terracotta);
  font-size: 1.4em;
  font-weight: 700;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--tv-slate);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--tv-slate);
  flex-wrap: wrap;
}

.hero__avatars {
  display: flex;
}

.hero__avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--tv-bone);
  margin-right: -10px;
}

.hero__avatars img:last-child {
  margin-right: 0;
}

.hero__stat strong {
  color: var(--tv-ink);
  font-weight: 700;
}

.hero__platforms {
  display: flex;
  gap: 8px;
}

.hero__platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tv-ink);
  color: var(--tv-bone);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.2s;
}

.hero__platform-badge:hover {
  background: #333;
}

.hero__visual {
  position: relative;
  height: 520px;
}

.hero__img--main {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 450px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(29, 58, 47, 0.2);
  transform: rotate(-2deg);
}

.hero__img-secondary {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 50%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  border: 4px solid #fff;
  transform: rotate(3deg);
  animation: heroFloat 6s ease-in-out infinite;
}

.hero__img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__card--stats {
  position: absolute;
  bottom: 60px;
  left: -10px;
  background: var(--tv-forest);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 3;
  text-align: left;
}

.hero__card--stats .hero__card-label {
  color: var(--tv-mustard);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.hero__card--stats .hero__card-number {
  color: var(--tv-bone);
  font-size: 1.4rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  margin-bottom: 2px;
}

.hero__card--stats small {
  color: rgba(248, 245, 240, 0.6);
  font-size: 0.75rem;
}

.hero__card--trueque {
  position: absolute;
  top: 10px;
  right: 0;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  max-width: 220px;
  border: 1px solid rgba(232, 234, 227, 0.8);
  z-index: 2;
}

@keyframes heroFloat {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50% { transform: rotate(3deg) translateY(-12px); }
}

.hero__card-badge {
  display: inline-block;
  background: rgba(29, 58, 47, 0.1);
  color: var(--tv-forest);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.hero__card-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--tv-olive);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hero__card p,
.hero__card-number {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--tv-ink);
}

.hero__card-number {
  font-size: 1.3rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--tv-forest);
}

.hero__card small {
  font-size: 0.75rem;
  color: var(--tv-slate);
}

/* ===== MARQUEE ===== */
.marquee {
  overflow: hidden;
  background: var(--tv-sage);
  padding: 28px 0;
  border-top: 1px solid rgba(29, 58, 47, 0.08);
  border-bottom: 1px solid rgba(29, 58, 47, 0.08);
}

.marquee__track {
  display: flex;
  gap: 56px;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.marquee__track span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--tv-ink);
}

.marquee__track span em {
  font-style: normal;
  color: var(--tv-slate);
  font-weight: 400;
  font-size: 1.1rem;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== STEPS ===== */
.text-terracotta {
  color: var(--tv-terracotta);
}

.text-forest {
  color: var(--tv-forest);
}

.steps__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
}

.steps__header-left {
  flex: 1;
}

.steps__header-right {
  flex: 1;
  padding-top: 40px;
}

.steps__header-right .section__subtitle {
  max-width: 100%;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.step-card--full {
  grid-column: 1 / -1;
}

.step-card {
  background: var(--tv-sage);
  border: 1px solid rgba(29, 58, 47, 0.06);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(29, 58, 47, 0.08);
}

.step-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.step-card__icon--mustard {
  background: var(--tv-mustard);
  color: var(--tv-bone);
}

.step-card__icon--forest {
  background: var(--tv-forest);
  color: var(--tv-bone);
}

.step-card__icon--terracotta {
  background: var(--tv-terracotta);
  color: var(--tv-bone);
}

.step-card__number {
  position: absolute;
  bottom: -20px;
  right: 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 8rem;
  font-weight: 800;
  color: rgba(29, 58, 47, 0.07);
  line-height: 1;
}

.step-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--tv-slate);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}

.step-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--tv-ink);
}

.step-card p {
  font-size: 0.95rem;
  color: var(--tv-slate);
  line-height: 1.6;
  max-width: 320px;
}

/* ===== BENEFITS ===== */
.benefits {
  background: var(--tv-forest);
  color: var(--tv-bone);
}

.section__tag--mustard {
  color: var(--tv-mustard);
}

.section__title--bone {
  color: var(--tv-bone);
}

.text-mustard {
  color: var(--tv-mustard);
}

.benefits__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.benefits__left {
  display: flex;
  flex-direction: column;
}

.benefits__desc {
  font-size: 1rem;
  color: rgba(248, 245, 240, 0.7);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 380px;
}

.benefits__image img {
  border-radius: 20px;
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 3px solid var(--tv-olive);
}

.benefits__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.benefit-card {
  background: rgba(248, 245, 240, 0.05);
  border: 1px solid rgba(248, 245, 240, 0.15);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: var(--tv-mustard);
  border-color: var(--tv-mustard);
}

.benefit-card:hover h4,
.benefit-card:hover p {
  color: var(--tv-forest);
}

.benefit-card:hover .benefit-card__icon {
  background: var(--tv-forest);
  color: var(--tv-bone);
}

.benefit-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 245, 240, 0.1);
  color: var(--tv-bone);
  margin-bottom: 16px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.benefit-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--tv-bone);
  transition: color 0.3s ease;
}

.benefit-card p {
  font-size: 0.85rem;
  color: rgba(248, 245, 240, 0.7);
  line-height: 1.6;
  transition: color 0.3s ease;
}

/* ===== STATS ===== */
.stats {
  background: var(--tv-bone);
  padding: 80px 0;
}

.stats__card {
  background: var(--tv-mustard);
  border-radius: 24px;
  padding: 60px;
}

.stats__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: end;
}

.stats__text {
  align-self: end;
}

.stats__tag {
  color: var(--tv-forest);
}

.stats__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--tv-forest);
}

.stats__title-hand {
  font-family: 'Caveat', cursive;
  font-size: 1.2em;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: left;
  padding-top: 20px;
  border-top: 2px solid rgba(29, 58, 47, 0.2);
}

.stat-item__number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--tv-forest);
  margin-bottom: 4px;
}

.stat-item__label {
  font-size: 0.9rem;
  color: var(--tv-forest);
  opacity: 0.7;
}

/* ===== TESTIMONIALS ===== */
.section__tag--terracotta {
  color: var(--tv-terracotta);
}

.testimonials {
  background: var(--tv-sage);
}

.testimonials .section__title {
  font-family: 'Outfit', sans-serif;
  color: var(--tv-ink);
  margin-bottom: 60px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(226, 123, 69, 0.08);
  border: 1px solid rgba(226, 123, 69, 0.12);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-3px);
}

.testimonial-card__quote {
  font-size: 2rem;
  color: var(--tv-terracotta);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--tv-ink);
  margin-bottom: 16px;
  font-style: normal;
  flex: 1;
}

.testimonial-card__stars {
  color: var(--tv-terracotta);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #a8c8e8;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--tv-ink);
}

.testimonial-card__author span {
  font-size: 0.8rem;
  color: var(--tv-slate);
}

/* ===== CTA ===== */
.cta {
  background: var(--tv-bone);
}

.cta__card {
  background: var(--tv-forest);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 500px;
  position: relative;
}

.cta__content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta__tag {
  color: var(--tv-mustard);
}

.cta__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--tv-bone);
  margin-bottom: 20px;
}

.cta__title-hand {
  font-family: 'Caveat', cursive;
  color: var(--tv-mustard);
  font-size: 1.1em;
}

.cta__subtitle {
  font-size: 1rem;
  color: rgba(248, 245, 240, 0.7);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}

.cta__buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta__store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--tv-bone);
  color: var(--tv-ink);
  padding: 12px 20px;
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta__store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta__store-btn small {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--tv-slate);
}

.cta__store-btn strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.cta__email {
  max-width: 480px;
}

.cta__email p {
  font-size: 0.85rem;
  color: rgba(248, 245, 240, 0.7);
  margin-bottom: 12px;
}

.cta__form {
  display: flex;
  gap: 8px;
}

.cta__form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  outline: none;
  background: var(--tv-olive);
  color: var(--tv-bone);
  transition: background 0.2s;
}

.cta__form input[type="email"]::placeholder {
  color: rgba(248, 245, 240, 0.4);
}

.cta__form input[type="email"]:focus {
  background: rgba(40, 81, 62, 0.8);
}

.cta__image {
  background-image: url('https://images.pexels.com/photos/9117894/pexels-photo-9117894.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=700&w=700');
  background-size: cover;
  background-position: center;
  position: relative;
}

.cta__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--tv-forest) 0%, rgba(29, 58, 47, 0.4) 100%);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--tv-ink);
  color: var(--tv-bone);
  padding: 80px 0 40px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer__brand h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--tv-bone);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__brand-name {
  color: var(--tv-bone);
}

.footer__brand-name .text-terracotta {
  color: var(--tv-terracotta);
}

.footer__logo-img {
  width: 32px;
  height: 32px;
}

.footer__brand p {
  font-size: 0.9rem;
  color: rgba(248, 245, 240, 0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 16px;
  font-size: 1.3rem;
}

.footer__social a {
  color: rgba(248, 245, 240, 0.7);
  transition: color 0.2s;
}

.footer__social a:hover {
  color: var(--tv-mustard);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer__links h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--tv-mustard);
  margin-bottom: 16px;
}

.footer__links a {
  display: block;
  font-size: 0.9rem;
  color: rgba(248, 245, 240, 0.75);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--tv-mustard);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(248, 245, 240, 0.1);
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(248, 245, 240, 0.5);
}

.footer__slogan {
  color: var(--tv-mustard);
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__visual {
    max-width: 500px;
    height: 450px;
  }

  .hero__card--trueque {
    right: -10px;
    top: 0;
  }

  .steps__grid {
    grid-template-columns: 1fr;
  }

  .step-card--full {
    grid-column: auto;
  }

  .steps__header {
    flex-direction: column;
    gap: 24px;
  }

  .benefits__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats__card {
    padding: 40px 24px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .navbar__links {
    display: none;
  }

  .hero {
    padding-top: 110px;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__img--main {
    height: 280px;
    width: 60%;
  }

  .hero__img-secondary {
    width: 50%;
    height: 240px;
  }

  .hero__card--trueque {
    display: none;
  }

  .hero__card--stats {
    bottom: 20px;
    left: 0;
  }

  .section {
    padding: 70px 0;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .benefits__cards {
    grid-template-columns: 1fr;
  }

  .cta__form {
    flex-direction: column;
  }

  .cta__card {
    grid-template-columns: 1fr;
  }

  .cta__image {
    display: none;
  }

  .cta__content {
    padding: 40px 24px;
  }

  .footer__links {
    grid-template-columns: 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
