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

:root {
  --color-bg: #03162f;
  --color-white: #ffffff;
  --color-gray: #a0aec0;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}

html, body {
  background-color: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-sans);
}

/* ─── HEADER ─────────────────────────────────── */
.header {
  background-color: var(--color-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 0;
}

.header__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  height: 52px;
  width: auto;
  display: block;
}

.logo-svg {
  height: 60px;
  width: auto;
  display: block;
}

.header__social {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__social a {
  color: var(--color-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.header__social a:hover {
  color: var(--color-white);
}

/* ─── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 600px;
  background: url('../assets/background1.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 20, 20, 0.92) 0%,
    rgba(20, 20, 20, 0.80) 45%,
    rgba(20, 20, 20, 0.15) 75%,
    rgba(20, 20, 20, 0.0) 100%
  );
  z-index: 1;
}

.hero__container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT — text */
.hero__content {
  flex: 1;
  max-width: 560px;
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: rgb(218, 218, 218);
  margin-bottom: 24px;
}

.hero__text {
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgb(255, 255, 255);
  margin-bottom: 36px;
}

.hero__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25d366;
  color: #ffffff;
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  padding: 14px 28px;
  border: 2px solid #25d366;
  border-radius: 6px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hero__whatsapp:hover {
  background-color: #1ebe5d;
  border-color: #1ebe5d;
}

/* RIGHT — form */
.hero__form-wrap {
  flex-shrink: 0;
  width: 420px;
}

.hero__form {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__input,
.hero__select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(240, 240, 240, 0.7);
  border: none;
  outline: none;
  font-family: 'Heebo', sans-serif;
  font-size: 0.92rem;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
}

.hero__input::placeholder {
  color: #888;
}

.hero__select-wrap {
  position: relative;
}

.hero__select {
  cursor: pointer;
  color: #333;
}

.hero__select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #555;
  pointer-events: none;
}

.hero__submit {
  width: 100%;
  padding: 16px;
  background-color: #0a1628;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.hero__submit:hover {
  background-color: #142240;
}

/* Honeypot — visually hidden but NOT display:none (bots ignore display:none) */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.hero__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.hero__consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #0a1628;
}

.hero__consent span {
  font-family: 'Heebo', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: #555;
  line-height: 1.5;
}

.hero__consent a {
  color: #0a1628;
  text-decoration: underline;
}

.hero__consent a:hover {
  color: #142240;
}

/* ─── JEWELRY TYPES ──────────────────────────── */
.jewelry {
  background-color: #000;
}

.jewelry__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.jewelry__card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: default;
}

.jewelry__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.jewelry__card:hover img {
  transform: scale(1.04);
}

.jewelry__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jewelry__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
}

.jewelry__text {
  font-family: 'Heebo', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 320px;
}

/* ─── CATEGORIES ─────────────────────────────── */
.categories {
  background-color: #ffffff;
  padding: 60px 80px;
}

.categories__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.categories__card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.categories__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.categories__card:hover img {
  transform: scale(1.04);
}

.categories__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.categories__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

.categories__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 10px;
}

.categories__btn {
  display: inline-block;
  padding: 10px 22px;
  background-color: #03162f;
  color: #ffffff;
  font-family: 'Heebo', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.categories__btn:hover {
  background-color: #142240;
}

/* ─── ABOUT INTRO ────────────────────────────── */
.about-intro {
  background-color: #ffffff;
  padding: 80px 40px 100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about-intro__logo {
  width: 90px;
  height: 90px;
  object-fit: cover;
}

.about-intro__since {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  color: #333;
}

.about-intro__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.2;
  max-width: 760px;
}

.about-intro__text {
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: #555;
  line-height: 1.75;
  max-width: 720px;
}

/* ─── BANNER ETERNIZE ────────────────────────── */
.banner-eternize {
  background-color: #ffffff;
  padding: 0 80px 80px;
}

.banner-eternize__inner {
  background: url('../assets/Design-sem-nome-1.png') center center / cover no-repeat;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.banner-eternize__content {
  padding: 60px 64px;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.banner-eternize__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
}

.banner-eternize__text {
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
}

.banner-eternize__divider {
  border: none;
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  width: 48px;
  margin: 4px 0;
}

/* ─── FEATURES ───────────────────────────────── */
.features {
  display: flex;
  min-height: 600px;
}

.features__left {
  flex: 0 0 34%;
  background-color: #ffffff;
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.features__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.features__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.15;
}

.features__sub {
  font-family: 'Heebo', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: #555;
  line-height: 1.7;
}

.features__diamond {
  width: 75%;
  max-width: 280px;
  display: block;
  margin: auto auto 0;
  object-fit: contain;
}

.features__right {
  flex: 1;
  background-color: #03162f;
  padding: 60px 48px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 36px;
}

.features__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features__icon {
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.75);
  flex-shrink: 0;
}

.features__item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
}

.features__item-text {
  font-family: 'Heebo', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
}

/* ─── IGI ────────────────────────────────────── */
.igi {
  background-color: #ffffff;
  padding: 120px 0;
}

.igi__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.igi__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.igi__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.2;
}

.igi__text {
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: #444;
  line-height: 1.75;
}

.igi__text strong {
  font-weight: 600;
  color: #1a1a1a;
}

.igi__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #1a1a1a;
  color: #ffffff;
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  padding: 14px 28px;
  width: fit-content;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.igi__btn:hover {
  background-color: #333;
}

.igi__image {
  flex: 0 0 45%;
}

.igi__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ─── PROCESS ────────────────────────────────── */
.process {
  display: flex;
  background-color: #ffffff;
  padding: 0 80px 80px;
  gap: 80px;
  align-items: center;
}

.process__image {
  flex: 0 0 46%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.process__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process__content {
  flex: 1;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process__label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: #888;
}

.process__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.2;
}

.process__steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.process__step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.process__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: #e8edf3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #03162f;
}

.process__icon svg {
  width: 22px;
  height: 22px;
}

.process__step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.process__step-text {
  font-family: 'Heebo', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: #555;
  line-height: 1.75;
}

/* ─── TESTIMONIALS ───────────────────────────── */
.testimonials {
  background-color: #ffffff;
  padding: 0 80px 80px;
}

.testimonials__inner {
  display: flex;
  height: 650px;
  overflow: hidden;
  position: relative;
}

.testimonials__track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
  width: 100%;
}

.testimonials__slide {
  flex: 0 0 100%;
  display: flex;
  height: 100%;
}

.testimonials__left {
  flex: 0 0 50%;
  background-color: #0f1c2e;
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.testimonials__label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
}

.testimonials__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
}

.testimonials__stars {
  color: #f5c518;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonials__quote {
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.testimonials__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

.testimonials__name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 500;
}

.testimonials__role {
  display: block;
  font-family: 'Heebo', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

.testimonials__quote-icon {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  margin-left: auto;
  align-self: flex-end;
}

.testimonials__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonials__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  font-size: 1.4rem;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  flex-shrink: 0;
}

.testimonials__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}

.testimonials__dot.active {
  background: #ffffff;
  width: 10px;
  height: 10px;
}

.testimonials__right {
  flex: 1;
  overflow: hidden;
}

.testimonials__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

/* ─── MOEMA ──────────────────────────────────── */
.moema {
  background-color: #101c2e;
  position: relative;
}

.moema__inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 80px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.moema__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.moema__label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
}

.moema__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.15;
}

.moema__text {
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
}

.moema__btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: #c9a84c;
  color: #ffffff;
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  width: fit-content;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.moema__btn:hover {
  background-color: #b8933e;
}

.moema__image {
  flex: 0 0 46%;
}

.moema__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ─── WHATSAPP FLOAT ─────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 999;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.08);
}

/* ─── RESPONSIVE: TABLET (≤1024px) ──────────── */
@media (max-width: 1024px) {
  .header__container {
    padding: 0 24px;
  }

  .hero__container {
    padding: 60px 40px;
    gap: 40px;
  }

  .hero__form-wrap {
    width: 360px;
  }

  .categories {
    padding: 48px 40px;
  }

  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .banner-eternize {
    padding: 0 40px 60px;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 28px;
  }

  .igi__container {
    padding: 0 40px;
    gap: 48px;
  }

  .process {
    padding: 0 40px 60px;
    gap: 48px;
  }

  .testimonials {
    padding: 0 40px 60px;
  }

  .moema__inner {
    padding: 60px 40px;
    gap: 48px;
  }
}

/* ─── RESPONSIVE: MOBILE (≤768px) ───────────── */
@media (max-width: 768px) {
  /* Header */
  .header__container {
    padding: 0 20px;
  }

  .logo-svg {
    height: 48px;
  }

  .header__social {
    gap: 16px;
  }

  /* Hero */
  .hero {
    min-height: auto;
    background-position: right center;
  }

  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(20, 20, 20, 0.88) 0%,
      rgba(20, 20, 20, 0.75) 100%
    );
  }

  .hero__container {
    flex-direction: column;
    padding: 48px 20px 56px;
    gap: 36px;
    align-items: stretch;
  }

  .hero__content {
    max-width: 100%;
    text-align: center;
  }

  .hero__text br {
    display: none;
  }

  .hero__whatsapp {
    margin: 0 auto;
  }

  .hero__form-wrap {
    width: 100%;
  }

  /* Jewelry */
  .jewelry__grid {
    grid-template-columns: 1fr;
  }

  .jewelry__card {
    aspect-ratio: 4 / 3;
  }

  /* Categories */
  .categories {
    padding: 40px 20px;
  }

  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* About intro */
  .about-intro {
    padding: 60px 20px 70px;
  }

  .about-intro__text br {
    display: none;
  }

  /* Banner eternize */
  .banner-eternize {
    padding: 0 20px 48px;
  }

  .banner-eternize__content {
    padding: 40px 28px;
    max-width: 100%;
  }

  .banner-eternize__text br {
    display: none;
  }

  /* Features */
  .features {
    flex-direction: column;
  }

  .features__left {
    flex: none;
    padding: 48px 24px;
  }

  .features__diamond {
    max-width: 180px;
    margin: 12px auto 0;
  }

  .features__right {
    padding: 48px 24px;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }

  /* IGI */
  .igi {
    padding: 60px 0;
  }

  .igi__container {
    flex-direction: column;
    padding: 0 20px;
    gap: 36px;
  }

  .igi__image {
    flex: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Process */
  .process {
    flex-direction: column;
    padding: 0 20px 56px;
    gap: 36px;
  }

  .process__image {
    flex: none;
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  /* Testimonials */
  .testimonials {
    padding: 0 20px 56px;
  }

  .testimonials__inner {
    height: auto;
  }

  .testimonials__track {
    height: auto;
    align-items: flex-start;
  }

  .testimonials__slide {
    flex-direction: column;
    height: auto;
  }

  .testimonials__left {
    flex: none;
    width: 100%;
    padding: 40px 28px;
    overflow: visible;
  }

  .testimonials__nav {
    margin-top: 16px;
  }

  .testimonials__right {
    height: 300px;
    width: 100%;
    flex: none;
  }

  /* Moema */
  .moema__inner {
    flex-direction: column;
    padding: 56px 20px;
    gap: 36px;
  }

  .moema__image {
    flex: none;
    width: 100%;
  }
}

/* ─── RESPONSIVE: SMALL MOBILE (≤480px) ─────── */
@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .categories__grid {
    grid-template-columns: 1fr;
  }

  .categories__card {
    aspect-ratio: 4 / 3;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__right {
    height: 240px;
  }

  .banner-eternize__title {
    font-size: 1.8rem;
  }
}
