/* ========================================
   NUNES IMÓVEIS – styles.css
   Paleta: #C1C1C0 (prata) | #000000 (preto)
   Accent: #9A8A6A (ouro discreto)
   ======================================== */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-silver: #c1c1c0;
  --color-silver-light: #d8d8d7;
  --color-silver-dark: #a0a09f;
  --color-black: #000000;
  --color-black-soft: #111111;
  --color-black-mid: #1a1a1a;
  --color-accent: #9a8a6a;
  --color-accent-light: #b5a483;
  --color-white: #ffffff;
  --color-white-off: #f5f5f4;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1200px;
  --header-h: 72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--color-white);
  color: var(--color-black);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: var(--font-body);
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

/* ---------- SECTIONS ---------- */
.section {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.section--dark {
  background: var(--color-black);
  color: var(--color-white);
}

/* ---------- TIPOGRAFIA UTILITÁRIA ---------- */
.accent {
  color: var(--color-accent);
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section__eyebrow--light {
  color: var(--color-silver-light);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
}

.section__title--light {
  color: var(--color-white);
}

.section__subtitle {
  margin-top: 1rem;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-silver-dark);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.section__header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
  -webkit-appearance: none;
  appearance: none;
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(154, 138, 106, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--color-black);
  border-color: var(--color-black);
}

.btn--outline:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.btn--ghost {
  background: transparent;
  color: var(--color-silver-light);
  border-color: rgba(193, 193, 192, 0.5);
}

.btn--ghost:hover {
  background: rgba(193, 193, 192, 0.12);
  color: var(--color-white);
  border-color: var(--color-silver);
}

.btn--whatsapp {
  background: #25d366;
  color: var(--color-white);
  border-color: #25d366;
}

.btn--whatsapp:hover {
  background: #20bd5a;
  border-color: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ==========================================
   HEADER / NAV
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  flex-wrap: nowrap;
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-silver-light);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--color-accent);
}

.nav__link.active {
  color: var(--color-accent);
}

/* Botão CTA do nav com estilo outline */
.nav__links .btn--outline {
  color: var(--color-silver-light);
  border-color: rgba(193, 193, 192, 0.5);
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.nav__links .btn--outline:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

/* Menu mobile */
.nav__mobile {
  display: none;
  background: var(--color-black-soft);
  padding: 1.5rem clamp(1rem, 5vw, 2rem);
  border-top: 1px solid rgba(193, 193, 192, 0.1);
}

.nav__mobile.open {
  display: block;
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nav__mobile-links .nav__link {
  font-size: 1rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(193, 193, 192, 0.06);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-black);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(154, 138, 106, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(193, 193, 192, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-silver-dark), transparent);
  pointer-events: none;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(193, 193, 192, 0.02) 60px,
      rgba(193, 193, 192, 0.02) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(193, 193, 192, 0.02) 60px,
      rgba(193, 193, 192, 0.02) 61px
    );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 5rem;
  animation: fadeInUp 0.8s 0.2s both;
}

.hero__badge {
  display: inline-block;
  background: rgba(154, 138, 106, 0.14);
  border: 1px solid rgba(154, 138, 106, 0.35);
  color: var(--color-accent-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  max-width: 820px;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: var(--color-silver);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.stat__label {
  font-size: 0.75rem;
  color: var(--color-silver-dark);
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}

.stat__divider {
  width: 1px;
  height: 36px;
  background: rgba(193, 193, 192, 0.2);
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-silver-dark);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 1;
  animation: fadeInUp 1s 1.5s both;
  white-space: nowrap;
}

.hero__scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--color-silver-dark);
  border-bottom: 2px solid var(--color-silver-dark);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

/* ==========================================
   SOBRE
   ========================================== */
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.sobre__visual {
  min-width: 0;
}

.sobre__image-wrapper {
  position: relative;
}

.sobre__image-placeholder {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--color-black-mid) 0%, #2a2a2a 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--color-silver);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border: 1px solid rgba(193, 193, 192, 0.1);
  overflow: hidden;
}

.sobre__image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(154, 138, 106, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.placeholder__icon {
  font-size: 3.5rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.sobre__image-placeholder span {
  position: relative;
  z-index: 1;
}

.sobre__badge-float {
  position: absolute;
  bottom: 2rem;
  right: -1.25rem;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.badge-float__number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.badge-float__text {
  display: block;
  font-size: 0.7rem;
  opacity: 0.85;
  margin-top: 0.25rem;
  white-space: nowrap;
}

.sobre__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.sobre__text {
  color: #444;
  font-size: 0.98rem;
  line-height: 1.8;
}

.sobre__text strong {
  color: var(--color-black);
  font-weight: 600;
}

/* ==========================================
   VANTAGENS
   ========================================== */
.vantagens__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.vantagem__card {
  padding: 1.75rem;
  border: 1px solid rgba(193, 193, 192, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.vantagem__card.visible {
  opacity: 1;
  transform: translateY(0);
}

.vantagem__card:hover {
  border-color: rgba(154, 138, 106, 0.4);
  background: rgba(154, 138, 106, 0.07);
  transform: translateY(-4px);
}

.vantagem__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.vantagem__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 0.65rem;
}

.vantagem__text {
  color: var(--color-silver);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ==========================================
   CURADORIA / PROCESSO
   ========================================== */
.processo__steps {
  display: flex;
  flex-direction: column;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem 0;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.step.visible {
  opacity: 1;
  transform: translateX(0);
}

.step__number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-silver-light);
  line-height: 1;
  opacity: 0.2;
  transition: color var(--transition), opacity var(--transition);
  text-align: center;
}

.step:hover .step__number {
  color: var(--color-accent);
  opacity: 1;
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-black);
  margin-bottom: 0.5rem;
}

.step__text {
  color: #555;
  font-size: 0.93rem;
  line-height: 1.7;
}

.step__connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, rgba(193, 193, 192, 0.25), transparent);
  margin-left: 31px;
}

.curadoria__cta {
  text-align: center;
}

/* ==========================================
   JF DESTAQUE
   ========================================== */
.jf-destaque__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.jf-destaque__list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin: 1.5rem 0 2rem;
}

.jf-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--color-silver-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.jf-item__icon {
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.jf-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.jf-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(193, 193, 192, 0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.jf-card:hover {
  border-color: rgba(154, 138, 106, 0.4);
  background: rgba(154, 138, 106, 0.07);
  transform: translateY(-3px);
}

.jf-card__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: transform var(--transition);
}

.jf-card:hover .jf-card__number {
  transform: scale(1.06);
}

.jf-card__label {
  display: block;
  font-size: 0.76rem;
  color: var(--color-silver-dark);
  line-height: 1.4;
}

/* ==========================================
   DEPOIMENTOS
   ========================================== */
.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.depoimento__card {
  padding: 2rem;
  border: 1px solid rgba(193, 193, 192, 0.15);
  border-radius: var(--radius-md);
  background: var(--color-white-off);
  transition: box-shadow var(--transition), transform var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.depoimento__card.visible {
  opacity: 1;
  transform: translateY(0);
}

.depoimento__card:not(.depoimento__card--featured):hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.depoimento__card--featured {
  background: var(--color-black);
  border-color: var(--color-accent);
  color: var(--color-white);
}

.depoimento__card--featured.visible {
  transform: scale(1.02) translateY(0);
}

.depoimento__card--featured .depoimento__text {
  color: var(--color-silver-light);
}

.depoimento__card--featured .depoimento__name {
  color: var(--color-white);
}

.depoimento__card--featured .depoimento__role {
  color: var(--color-silver-dark);
}

.depoimento__stars {
  color: var(--color-accent);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.depoimento__text {
  color: #484848;
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.depoimento__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.depoimento__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-silver));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-white);
  flex-shrink: 0;
}

.depoimento__name {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-black);
}

.depoimento__role {
  display: block;
  font-size: 0.76rem;
  color: var(--color-silver-dark);
  margin-top: 0.15rem;
}

/* ==========================================
   CTA FINAL / CONTATO
   ========================================== */
.cta-final__wrapper {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-final__subtitle {
  color: var(--color-silver);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.75;
  margin: 1.25rem 0 2.5rem;
}

.cta-final__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cta-final__disclaimer {
  color: var(--color-silver-dark);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--color-black-soft);
  border-top: 1px solid rgba(193, 193, 192, 0.08);
  padding: 3rem 0 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
}

.footer__brand {
  flex: 1;
  min-width: 200px;
}

.footer__tagline {
  color: var(--color-silver-dark);
  font-size: 0.83rem;
  margin-top: 0.5rem;
  line-height: 1.5;
}

.footer__creci {
  color: rgba(193, 193, 192, 0.35);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  align-items: center;
}

.footer__links a {
  color: var(--color-silver-dark);
  font-size: 0.86rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-accent);
}

.footer__bottom {
  border-top: 1px solid rgba(193, 193, 192, 0.06);
  padding: 1.25rem 0;
  text-align: center;
}

.footer__bottom p {
  color: rgba(193, 193, 192, 0.28);
  font-size: 0.76rem;
}

/* ==========================================
   WHATSAPP FLUTUANTE
   ========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  opacity: 0;
  transform: scale(0.8);
}

.whatsapp-float.visible {
  opacity: 1;
  transform: scale(1);
  animation: pulse 3s infinite;
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
  color: white;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
  animation: none !important;
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 68px;
  background: var(--color-black-soft);
  color: var(--color-white);
  padding: 0.4rem 0.85rem;
  border-radius: 4px;
  font-size: 0.78rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-float__tooltip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--color-black-soft);
  border-right: 0;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
}

/* ==========================================
   ANIMAÇÕES
   ========================================== */
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 6px 40px rgba(37, 211, 102, 0.7); }
}

/* ==========================================
   RESPONSIVO — TABLET (≤ 1024px)
   ========================================== */
@media (max-width: 1024px) {
  .vantagens__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .depoimento__card--featured {
    grid-column: span 2;
    transform: none;
  }

  .depoimento__card--featured.visible {
    transform: translateY(0);
  }

  .nav__links {
    gap: 1rem;
  }
}

/* ==========================================
   RESPONSIVO — MOBILE (≤ 768px)
   ========================================== */
@media (max-width: 768px) {
  /* Nav */
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Hero */
  .hero__title {
    font-size: clamp(1.85rem, 7vw, 2.8rem);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__stats {
    flex-direction: row;
    gap: 1.25rem;
    flex-wrap: wrap;
  }

  .stat__divider {
    display: none;
  }

  .hero__scroll {
    display: none;
  }

  /* Sobre */
  .sobre__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .sobre__image-placeholder {
    aspect-ratio: 16 / 9;
  }

  .sobre__badge-float {
    right: 0.5rem;
    bottom: -1rem;
  }

  /* Vantagens */
  .vantagens__grid {
    grid-template-columns: 1fr;
  }

  /* Processo */
  .step {
    grid-template-columns: 48px 1fr;
    gap: 1rem;
  }

  .step__number {
    font-size: 1.75rem;
  }

  .step__connector {
    margin-left: 23px;
  }

  /* JF */
  .jf-destaque__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .jf-cards {
    grid-template-columns: 1fr 1fr;
  }

  /* Depoimentos */
  .depoimentos__grid {
    grid-template-columns: 1fr;
  }

  .depoimento__card--featured {
    grid-column: span 1;
  }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer__links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
  }

  /* Float */
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .whatsapp-float__tooltip {
    display: none;
  }
}

/* ==========================================
   RESPONSIVO — PEQUENO (≤ 480px)
   ========================================== */
@media (max-width: 480px) {
  .hero__stats {
    flex-direction: column;
    gap: 1rem;
  }

  .jf-cards {
    grid-template-columns: 1fr;
  }

  .btn--whatsapp {
    font-size: 0.95rem;
    padding: 0.9rem 1.5rem;
  }

  .sobre__badge-float {
    position: static;
    margin-top: 1rem;
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
  }

  .badge-float__number {
    font-size: 1.2rem;
  }
}