/*
 * Cidade Norte Materiais para Construção
 * Landing Page Premium — Pisos e Revestimentos
 * Design System (Vanilla CSS)
 */

/* ═══════════════════════════════════════════
   FONT
   ═══════════════════════════════════════════ */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");

/* ═══════════════════════════════════════════
   CUSTOM PROPERTIES
   ═══════════════════════════════════════════ */
:root {
  /* Brand Colors */
  --azul: #2e3fa8;
  --azul-light: #2e3fa8;
  --azul-dark: #1f2f82;
  --vermelho: #e31e24;
  --vermelho-hover: #c7181d;
  --amarelo: #e8d100;
  --amarelo-light: #d3be00;
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebe5d;

  /* Neutrals */
  --branco: #ffffff;
  --cinza-50: #f8f9fa;
  --cinza-100: #f1f3f5;
  --cinza-200: #e9ecef;
  --cinza-300: #dee2e6;
  --cinza-400: #adb5bd;
  --cinza-500: #868e96;
  --cinza-600: #6c757d;
  --cinza-700: #495057;
  --cinza-800: #343a40;
  --cinza-900: #212529;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.14);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.35s var(--ease);
  --transition-fast: all 0.2s ease;

  /* Typography */
  --font: "Plus Jakarta Sans", sans-serif;
}

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

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

body {
  font-family: var(--font);
  background-color: var(--branco);
  color: var(--cinza-800);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════ */
h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--cinza-900);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--cinza-600);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--gray {
  background-color: var(--cinza-50);
}

.section--azul {
  background-color: var(--azul);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header h2 span {
  color: var(--azul);
}

.section--azul .section-header h2 {
  color: var(--branco);
}

.section--azul .section-header h2 span {
  color: var(--amarelo);
}

.section--azul .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

.text-highlight {
  color: var(--azul);
  font-weight: 700;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
  line-height: 1.4;
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--branco);
  border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  border-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-vermelho {
  background-color: var(--vermelho);
  color: var(--branco);
  border-color: var(--vermelho);
}

.btn-vermelho:hover {
  background-color: var(--vermelho-hover);
  border-color: var(--vermelho-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 30, 36, 0.3);
}

.btn-azul {
  background-color: var(--azul);
  color: var(--branco);
  border-color: var(--azul);
}

.btn-azul:hover {
  background-color: var(--azul-light);
  border-color: var(--azul-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 63, 168, 0.3);
}

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

.btn-outline:hover {
  background-color: var(--azul);
  color: var(--branco);
  transform: translateY(-2px);
}

.btn-outline-branco {
  background-color: transparent;
  color: var(--branco);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-branco:hover {
  background-color: var(--branco);
  color: var(--azul);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
}

.header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo img {
  width: 280px;
  height: auto;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav a:not(.btn) {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--cinza-700);
  position: relative;
  padding: 4px 0;
}

.header__nav a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--azul);
  transition: var(--transition);
  border-radius: 2px;
}

.header__nav a:not(.btn):hover {
  color: var(--azul);
}

.header__nav a:not(.btn):hover::after {
  width: 100%;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  z-index: 1001;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--cinza-800);
  border-radius: 2px;
  transition: var(--transition);
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ═══════════════════════════════════════════
   MOBILE MENU OVERLAY
   ═══════════════════════════════════════════ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--branco);
  box-shadow: var(--shadow-xl);
  padding: 100px 32px 32px;
  transition: right 0.4s var(--ease);
  z-index: 999;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--cinza-800);
  border-bottom: 1px solid var(--cinza-200);
}

.mobile-menu a:hover {
  color: var(--azul);
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 24px;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
}

/* ═══════════════════════════════════════════
   1. HERO
   ═══════════════════════════════════════════ */
.hero {
  padding: 180px 0 100px;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__content h1 {
  margin-bottom: 20px;
  color: var(--branco);
}

.hero__content h1 span {
  color: var(--amarelo);
}

.hero__content > p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 680px;
  color: var(--cinza-100);
}

.hero__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 900px;
}

.hero__card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--branco);
  transition: var(--transition);
}

.hero__card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
}

.hero__card i {
  color: var(--amarelo);
  font-size: 1.6rem;
}

.hero__card span {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

.hero__ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero__trust {
  display: inline-block;
  margin-top: 24px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: var(--branco);
  font-size: 0.95rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero__ctas {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
  }
  
  .hero__ctas .btn {
    width: 100%;
    padding: 16px;
  }

  .hero__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .hero__card {
    padding: 16px 12px;
  }
  
  .hero__card i {
    font-size: 1.4rem;
  }
  
  .hero__card span {
    font-size: 0.8rem;
  }
}

.hero__visual {
  position: relative;
}

.hero__slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.hero__slide.active {
  opacity: 1;
  z-index: 2;
}

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

/* Efeito Ken Burns */
.hero__slide img {
  transform: scale(1);
  transition: transform 8.5s linear;
}

.hero__slide.active img {
  transform: scale(1.08);
}

/* Overlay Escuro */
.hero__slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 3;
}

/* Image placeholder styling */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(
    135deg,
    var(--cinza-100) 0%,
    var(--cinza-50) 100%
  );
  color: var(--cinza-400);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  padding: 24px;
}

.img-placeholder i {
  font-size: 2rem;
  opacity: 0.5;
}

/* ═══════════════════════════════════════════
   TRUST BAR — Prova Social Google Reviews
   ═══════════════════════════════════════════ */
.trust-bar {
  background: var(--branco);
  border-bottom: 1px solid var(--cinza-200);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 13px 24px;
  flex-wrap: wrap;
}

.trust-bar__rating-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-bar__stars {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #f9a825;
  font-size: 0.88rem;
}

.trust-bar__score {
  font-weight: 800;
  font-size: 1rem;
  color: var(--cinza-900);
  letter-spacing: -0.02em;
}

.trust-bar__label {
  font-size: 0.82rem;
  color: var(--cinza-500);
  font-weight: 500;
}

.trust-bar__sep {
  width: 1px;
  height: 20px;
  background: var(--cinza-300);
  flex-shrink: 0;
}

.trust-bar__text {
  font-size: 0.87rem;
  color: var(--cinza-600);
  line-height: 1.4;
  margin: 0;
}

.trust-bar__text strong {
  color: var(--cinza-800);
  font-weight: 700;
}

.trust-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--azul);
  padding: 5px 14px;
  border: 1.5px solid rgba(46, 63, 168, 0.3);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-bar__cta:hover {
  background: var(--azul);
  color: var(--branco);
  border-color: var(--azul);
}

.trust-bar__cta i {
  font-size: 0.82rem;
}

@media (max-width: 768px) {
  .trust-bar__inner {
    gap: 10px;
    padding: 11px 16px;
    justify-content: center;
  }

  .trust-bar__sep {
    display: none;
  }

  .trust-bar__text {
    font-size: 0.8rem;
    text-align: center;
  }

  .trust-bar__cta {
    font-size: 0.78rem;
    padding: 4px 12px;
  }
}

/* ═══════════════════════════════════════════
   2. BENEFÍCIOS
   ═══════════════════════════════════════════ */
.beneficios__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.beneficio-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--branco);
  border: 1px solid var(--cinza-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.beneficio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--cinza-300);
}

.beneficio-card__icon {
  width: 60px;
  height: 60px;
  background: rgba(26, 58, 107, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: var(--azul);
  transition: var(--transition);
}

.beneficio-card:hover .beneficio-card__icon {
  background: var(--azul);
  color: var(--branco);
}

.beneficio-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--cinza-900);
}

.beneficio-card p {
  font-size: 0.88rem;
  color: var(--cinza-500);
}

/* ═══════════════════════════════════════════
   3. CATEGORIAS DE PISOS
   ═══════════════════════════════════════════ */
.categorias-slider {
  position: relative;
  width: 100%;
  padding: 10px 0;
}

.categorias-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  transition: transform 0.5s var(--ease);
}

.categoria-card {
  background: var(--branco);
  border: 1px solid var(--cinza-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.categoria-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26, 58, 107, 0.2);
}

.categoria-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.categoria-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.categoria-card:hover .categoria-card__img img {
  transform: scale(1.05);
}

.categoria-card__body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.categoria-card__body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--azul);
}

.categoria-card__body > p {
  font-size: 0.92rem;
  margin-bottom: 16px;
  color: var(--cinza-600);
}

.categoria-card__checks {
  margin-bottom: 20px;
  flex: 1;
}

.categoria-card__checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--cinza-700);
  padding: 4px 0;
}

.categoria-card__checks li i {
  color: var(--amarelo);
  font-size: 0.75rem;
}

.categoria-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--vermelho);
}

.categoria-card__link i {
  transition: var(--transition);
}

.categoria-card:hover .categoria-card__link i {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════
   4. SHOWROOM
   ═══════════════════════════════════════════ */
.showroom__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.showroom__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 12px;
}

.showroom__gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.showroom__gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.showroom__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.showroom__gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.showroom__gallery-item:hover img {
  transform: scale(1.12);
}

.showroom__gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 58, 107, 0.7), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}

.showroom__gallery-item:hover .showroom__gallery-overlay {
  opacity: 1;
}

.showroom__gallery-overlay span {
  color: var(--branco);
  font-weight: 600;
  font-size: 0.9rem;
}

.showroom__content h2 {
  margin-bottom: 16px;
}

.showroom__content h2 span {
  color: var(--azul);
}

.showroom__content > p {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.showroom__info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--cinza-200);
  margin-bottom: 8px;
}

.showroom__info i {
  color: var(--azul);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.showroom__info p {
  font-size: 0.92rem;
  color: var(--cinza-700);
}

.showroom__cta {
  margin-top: 24px;
}



/* ═══════════════════════════════════════════
   5. DIFERENCIAIS
   ═══════════════════════════════════════════ */
.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.diferencial-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.diferencial-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.diferencial-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(249, 168, 37, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  color: var(--amarelo);
}

.diferencial-card h3 {
  font-size: 0.95rem;
  color: var(--branco);
  margin-bottom: 8px;
  font-weight: 700;
}

.diferencial-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   MARCAS EM DESTAQUE & RENATA
   ═══════════════════════════════════════════ */
.marcas-slider-container {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  margin-bottom: 60px;
}

.marcas-track {
  display: flex;
  gap: 20px;
  /* Setup slider overflow for mobile */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  padding-bottom: 16px;
}

.marcas-track::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.marca-card {
  flex: 0 0 calc(16.666% - 17px);
  background: var(--branco);
  border: 1px solid var(--cinza-200);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
}

.marca-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 63, 168, 0.2);
}

.marca-card__logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--azul);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  font-family: var(--font);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  text-transform: uppercase;
}

.marca-card__desc {
  font-size: 0.9rem;
  color: var(--cinza-600);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .marca-card {
    flex: 0 0 calc(33.333% - 14px);
  }
}

@media (max-width: 768px) {
  .marca-card {
    flex: 0 0 calc(85% - 20px);
  }
}

.cta-renata__wrapper {
  background: var(--azul-dark);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: var(--shadow-lg);
}

.cta-renata__img img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--amarelo);
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.2);
}

.cta-renata__content h3 {
  font-size: 2rem;
  color: var(--amarelo);
  margin-bottom: 16px;
}

.cta-renata__content p {
  font-size: 1.15rem;
  color: var(--branco);
  margin-bottom: 24px;
  line-height: 1.6;
}

.cta-renata__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   CONSULTORIA RENATA (TOPO)
   ═══════════════════════════════════════════ */
.consultoria-card {
  background: var(--branco);
  border-radius: var(--radius-xl);
  padding: 56px;
  display: flex;
  align-items: center;
  gap: 64px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cinza-200);
  max-width: 1000px;
  margin: 0 auto;
}

.consultoria-card__img-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.consultoria-card__img {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--branco);
  box-shadow: 0 12px 32px rgba(46, 63, 168, 0.15);
}

.consultoria-badge {
  text-align: center;
  background: var(--azul-dark);
  color: var(--branco);
  padding: 8px 24px;
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

.consultoria-badge strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--amarelo);
}

.consultoria-badge span {
  display: block;
  font-size: 0.85rem;
  opacity: 0.9;
}

.consultoria-card__content h3 {
  font-size: 2.2rem;
  color: var(--azul-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.consultoria-card__content p {
  font-size: 1.1rem;
  color: var(--cinza-700);
  margin-bottom: 16px;
  line-height: 1.6;
}

.consultoria-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.consultoria-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: var(--cinza-900);
  font-weight: 600;
}

.consultoria-features li i {
  color: var(--azul);
  font-size: 1.2rem;
}

.consultoria-card__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .consultoria-card {
    padding: 40px;
    gap: 40px;
  }
  .consultoria-card__img {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .consultoria-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 20px;
    gap: 32px;
  }
  .consultoria-card__img {
    width: 180px;
    height: 180px;
  }
  .consultoria-card__content h3 {
    font-size: 1.6rem;
  }
  .consultoria-features {
    grid-template-columns: 1fr;
    text-align: left;
    margin: 24px auto 32px auto;
    max-width: 300px;
  }
  .consultoria-card__actions {
    justify-content: center;
    flex-direction: column;
  }
  .consultoria-card__actions .btn {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════
   PROVA SOCIAL E CREDIBILIDADE
   ═══════════════════════════════════════════ */
.credibilidade-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.cred-card {
  background: var(--branco);
  border: 1px solid var(--cinza-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.cred-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46, 63, 168, 0.2);
}

.cred-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(46, 63, 168, 0.08);
  color: var(--azul);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.cred-card:hover .cred-card__icon {
  background: var(--azul);
  color: var(--branco);
  transform: scale(1.1);
}

.cred-card__title {
  font-size: 1.15rem;
  color: var(--cinza-900);
  margin-bottom: 12px;
  font-weight: 800;
}

.cred-card__text {
  font-size: 0.95rem;
  color: var(--cinza-600);
  line-height: 1.5;
  margin: 0;
}

.credibilidade-strip {
  background: var(--azul-dark);
  padding: 40px 0;
  position: relative;
}

.credibilidade-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--amarelo);
}

.cred-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cred-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--branco);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
}

.cred-strip__item i {
  color: var(--amarelo);
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .cred-strip__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cred-strip__item {
    flex-direction: column;
    gap: 12px;
  }

  .cred-strip__item i {
    font-size: 2rem;
  }
}

/* ═══════════════════════════════════════════
   6. MAIS DE 20 ANOS
   ═══════════════════════════════════════════ */
.autoridade {
  position: relative;
  overflow: hidden;
}

.autoridade::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(26, 58, 107, 0.04) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.autoridade__grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 60px;
  align-items: center;
}

.autoridade__number {
  font-size: clamp(80px, 8vw, 120px);
  font-weight: 900;
  color: var(--amarelo);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.autoridade__number span {
  font-size: 0.4em;
  font-weight: 800;
  color: var(--amarelo);
  letter-spacing: 0;
}

.autoridade__label {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 24px;
  line-height: 1.2;
}

.autoridade__text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--branco);
  line-height: 1.8;
  max-width: 550px;
}

.autoridade__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.autoridade__stat {
  text-align: center;
  padding: 24px 16px;
  background: var(--branco);
  border: 1px solid var(--cinza-200);
  border-radius: var(--radius-md);
}

.autoridade__stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--azul);
  margin-bottom: 4px;
}

.autoridade__stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cinza-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════
   6.5 PROVA SOCIAL E DEPOIMENTOS
   ═══════════════════════════════════════════ */
.prova-social-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  background: var(--azul-dark);
  color: var(--branco);
  padding: 24px;
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
  box-shadow: var(--shadow-md);
}

.prova-social-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.05rem;
}

.prova-social-item i {
  color: var(--amarelo);
  font-size: 1.4rem;
}

.depoimentos-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  touch-action: pan-y;
}

.depoimentos-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s var(--ease);
}

.depoimento-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--branco);
  border: 1px solid var(--cinza-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  height: auto;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.depoimento-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26, 58, 107, 0.2);
}

.depoimento-stars {
  color: var(--amarelo);
  font-size: 1.2rem;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.depoimento-texto {
  font-size: 1.05rem;
  color: var(--cinza-700);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--cinza-100);
  padding-top: 16px;
}

.autor-avatar {
  width: 48px;
  height: 48px;
  background: var(--azul);
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.autor-info h5 {
  color: var(--cinza-900);
  font-size: 1rem;
  margin-bottom: 4px;
}

.autor-info span {
  font-size: 0.85rem;
  color: var(--cinza-500);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.carousel-indicators .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cinza-300);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-indicators .dot.active {
  background: var(--azul);
  width: 24px;
  border-radius: 12px;
}

/* ═══════════════════════════════════════════
   7. CTA FINAL
   ═══════════════════════════════════════════ */
.cta-final {
  text-align: center;
  padding: 100px 0;
}

.cta-final__wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.cta-final h2 {
  font-size: 2.8rem;
  margin-bottom: 24px;
  color: var(--cinza-900);
}

.cta-final h2 span {
  color: var(--azul);
}

.cta-final p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  color: var(--cinza-700);
  line-height: 1.6;
}

.cta-final .btn {
  margin-bottom: 32px;
}

.btn-pulse-hover {
  transition: var(--transition);
}

.btn-pulse-hover:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.cta-final__benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}

.cta-final__benefits span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--cinza-600);
  font-weight: 500;
}

.cta-final__benefits i {
  color: var(--amarelo);
}

/* ═══════════════════════════════════════════
   8. FAQ
   ═══════════════════════════════════════════ */
.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--branco);
  border: 1px solid var(--cinza-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--azul);
  box-shadow: var(--shadow-sm);
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: var(--font);
}

.faq-item__question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cinza-800);
  flex: 1;
}

.faq-item.active .faq-item__question h3 {
  color: var(--azul);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--cinza-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--cinza-600);
  transition: var(--transition);
}

.faq-item.active .faq-item__icon {
  background: var(--azul);
  color: var(--branco);
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s var(--ease),
    padding 0.4s var(--ease);
}

.faq-item__answer-inner {
  padding: 0 24px 20px;
}

.faq-item__answer-inner p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   9. FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--azul-dark);
  padding: 64px 0 0;
  color: var(--branco);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__logo img {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast; /* nitidez em telas Retina */
}

.footer__about p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer__social a:hover {
  background: var(--amarelo);
  color: var(--azul-dark);
}

.footer__links h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 20px;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer__links a:hover {
  color: var(--amarelo);
  padding-left: 4px;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer__contact li i {
  color: var(--amarelo);
  margin-top: 3px;
  width: 16px;
  text-align: center;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ═══════════════════════════════════════════
   WHATSAPP FLUTUANTE
   ═══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: whatsappPulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  animation: none;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow:
      0 4px 20px rgba(37, 211, 102, 0.4),
      0 0 0 12px rgba(37, 211, 102, 0.15);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/* ═══════════════════════════════════════════
   BACK TO TOP BUTTON
   ═══════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 100px; /* 24px (bottom whatsapp) + 60px (height whatsapp) + 16px (gap) = 100px */
  right: 24px;
  z-index: 98;
  width: 60px;
  height: 60px;
  background: var(--azul);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease),
    visibility 0.4s,
    box-shadow 0.3s var(--ease);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(0) scale(1.05);
  box-shadow: var(--shadow-lg);
  background: var(--azul-light);
}

/* ═══════════════════════════════════════════
   7. AVATAR RENATA (ATENDIMENTO)
   ═══════════════════════════════════════════ */
.atendimento-renata {
  display: flex;
  align-items: center;
  gap: 48px;
  background: var(--cinza-50);
  padding: 64px 48px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--cinza-200);
}

.renata-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.renata-profile__name {
  color: var(--azul);
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-top: 8px;
}

.renata-profile__line {
  width: 80px;
  height: 3px;
  background-color: var(--amarelo);
  border-radius: 2px;
}

.renata-avatar {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 6px solid var(--branco);
  box-shadow: var(--shadow-lg);
}

.renata-info h3 {
  margin-bottom: 16px;
  color: var(--cinza-900);
}

.renata-info p {
  margin-bottom: 32px;
  font-size: 1.05rem;
  max-width: 600px;
}

.btn-atendimento {
  transition: var(--transition);
}

.btn-atendimento:hover {
  transform: translateY(-2px) scale(1.05);
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

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

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (1024px)
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero__content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__ctas {
    justify-content: center;
  }

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

  .hero__visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

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

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

  .showroom__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .showroom__content {
    text-align: center;
  }

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

  .depoimento-card {
    flex: 0 0 calc(50% - 12px);
  }

  .autoridade__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

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

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

  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  /* POR QUE COMPRAR */
  .porque-cards {
    grid-template-columns: repeat(6, 1fr);
  }
  .porque-cards .porque-card:nth-child(1),
  .porque-cards .porque-card:nth-child(2),
  .porque-cards .porque-card:nth-child(3) {
    grid-column: span 2;
  }
  .porque-cards .porque-card:nth-child(4),
  .porque-cards .porque-card:nth-child(5) {
    grid-column: span 3;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (768px)
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .header__logo img {
    width: 200px;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    padding: 150px 0 60px;
    min-height: 650px;
  }

  .hero__content {
    text-align: center;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__badges {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .categorias-slider {
    overflow: hidden;
    touch-action: pan-y;
  }
  .categorias-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    margin: 0;
  }
  .categoria-card {
    flex: 0 0 100%;
  }

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

  .showroom__gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .diferenciais__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }



  .autoridade__stats {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 40px auto 0;
  }

  .prova-social-strip {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .depoimento-card {
    flex: 0 0 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer__logo {
    display: flex;
    justify-content: center;
  }

  .footer__logo img {
    width: 160px;
  }

  .atendimento-renata {
    flex-direction: column;
    text-align: center;
    gap: 32px;
    padding: 40px 24px;
  }

  .renata-avatar {
    width: 160px;
    height: 160px;
  }

  .footer__social {
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (480px)
   ═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero__badges {
    grid-template-columns: 1fr;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .beneficios__grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }

  .diferenciais__grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

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

  .showroom__gallery-item:first-child {
    grid-column: span 1;
  }

  .btn-lg {
    padding: 16px 32px;
    font-size: 0.95rem;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    font-size: 1.5rem;
    bottom: 16px;
    right: 16px;
  }
}

/* ═══════════════════════════════════════════
   10. MATERIAIS PARA CONSTRUÇÃO
   ═══════════════════════════════════════════ */
.materiais__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.material-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--branco);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--cinza-200);
  transition: var(--transition);
}

.material-card:hover {
  border-color: var(--azul);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.material-icon {
  width: 48px;
  height: 48px;
  background: rgba(26, 58, 107, 0.05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul);
  font-size: 1.2rem;
}

.material-card h4 {
  font-size: 0.95rem;
  color: var(--cinza-800);
  margin: 0;
}

/* ═══════════════════════════════════════════
   11. ENTREGA
   ═══════════════════════════════════════════ */
.entrega-banner {
  background: var(--azul-light);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: var(--branco);
  position: relative;
  overflow: hidden;
}

.entrega-banner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1));
}

.entrega-content h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--branco);
}

.entrega-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.entrega-icon {
  font-size: 5rem;
  color: var(--amarelo);
  opacity: 0.9;
  z-index: 1;
}

/* ═══════════════════════════════════════════
   12. AVATAR RENATA
   ═══════════════════════════════════════════ */
.atendimento-renata {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: var(--branco);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cinza-200);
  max-width: 800px;
  margin: 0 auto;
}

.renata-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--branco);
  box-shadow: var(--shadow-sm);
  background: var(--cinza-100);
}

.renata-info h3 {
  font-size: 1.4rem;
  color: var(--azul);
  margin-bottom: 8px;
}

.renata-info p {
  font-size: 1.05rem;
  color: var(--cinza-600);
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════
   13. DEPOIMENTOS
   ═══════════════════════════════════════════ */
.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.depoimento-card {
  background: var(--branco);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cinza-200);
  box-shadow: var(--shadow-xs);
}

.depoimento-stars {
  color: var(--amarelo);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.depoimento-texto {
  font-size: 0.95rem;
  color: var(--cinza-700);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.autor-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cinza-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cinza-500);
  font-weight: bold;
}

.autor-info h5 {
  font-size: 0.9rem;
  margin: 0;
  color: var(--cinza-900);
}

.autor-info span {
  font-size: 0.8rem;
  color: var(--cinza-500);
}

/* ═══════════════════════════════════════════
   14. MAPA / LOCALIZAÇÃO
   ═══════════════════════════════════════════ */
.localizacao__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--branco);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cinza-200);
}

.mapa-iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

.localizacao-info {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.localizacao-info h3 {
  font-size: 1.8rem;
  color: var(--azul);
  margin-bottom: 24px;
}

.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contato-item i {
  color: var(--vermelho);
  font-size: 1.2rem;
  margin-top: 4px;
}

.contato-item p {
  font-size: 1rem;
  color: var(--cinza-700);
  margin: 0;
  line-height: 1.5;
}

.contato-item strong {
  display: block;
  color: var(--cinza-900);
  margin-bottom: 4px;
}

/* ═══════════════════════════════════════════
   MEDIA QUERIES UPDATE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .materiais__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .depoimentos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .localizacao__grid {
    grid-template-columns: 1fr;
  }
  .mapa-iframe {
    height: 300px;
  }
  .entrega-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .materiais__grid {
    grid-template-columns: 1fr;
  }
  .depoimentos__grid {
    grid-template-columns: 1fr;
  }
  .atendimento-renata {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
}

/* ═══════════════════════════════════════════
   GALLERY MODAL — Galeria Interativa
   ═══════════════════════════════════════════ */

/* Cursor clicável nas imagens dos cards */
.categoria-card__img {
  cursor: pointer;
}

/* ─── Overlay ─── */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s var(--ease),
    visibility 0.35s var(--ease);
}

.gallery-modal.is-open {
  opacity: 1;
  visibility: visible;
}

/* ─── Backdrop ─── */
.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 28, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ─── Container ─── */
.gallery-modal__container {
  position: relative;
  z-index: 1;
  background: var(--branco);
  border-radius: 20px;
  width: 100%;
  max-width: 1060px;
  height: min(86vh, 620px);
  overflow: hidden;
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.42);
  transform: scale(0.93) translateY(24px);
  transition: transform 0.45s var(--ease);
  display: flex;
  flex-direction: column;
}

.gallery-modal.is-open .gallery-modal__container {
  transform: scale(1) translateY(0);
}

/* ─── Botão Fechar ─── */
.gallery-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 20;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--cinza-200);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cinza-700);
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.gallery-modal__close:hover {
  background: var(--cinza-100);
  color: var(--cinza-900);
  transform: rotate(90deg) scale(1.05);
  box-shadow: var(--shadow-md);
}

/* ─── Inner Grid: imagem | info ─── */
.gallery-modal__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

/* ─── Coluna de Imagens ─── */
.gallery-modal__media {
  display: flex;
  flex-direction: column;
  background: #0f1117;
  overflow: hidden;
  min-height: 0;
}

/* Stage: área da imagem principal */
.gallery-modal__stage {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gallery-modal__swipe-area {
  flex: 1;
  height: 100%;
  overflow: hidden;
}

.gallery-modal__track {
  display: flex;
  height: 100%;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-modal__track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* Setas de navegação */
.gallery-modal__nav {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cinza-800);
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  opacity: 0;
}

.gallery-modal__stage:hover .gallery-modal__nav:not(.is-hidden),
.gallery-modal__nav:focus-visible {
  opacity: 1;
}

.gallery-modal__nav:hover {
  background: var(--branco);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.gallery-modal__nav--prev {
  left: 14px;
}
.gallery-modal__nav--next {
  right: 14px;
}

.gallery-modal__nav.is-hidden {
  display: none !important;
}

/* Miniaturas (Desktop) */
.gallery-modal__thumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #191c26;
  overflow-x: auto;
  flex-shrink: 0;
  scrollbar-width: none;
  min-height: 70px;
}

.gallery-modal__thumbs::-webkit-scrollbar {
  display: none;
}

.gallery-modal__thumb {
  flex: 0 0 64px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  opacity: 0.55;
  background: transparent;
  padding: 0;
}

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

.gallery-modal__thumb.is-active,
.gallery-modal__thumb:hover {
  border-color: var(--amarelo);
  opacity: 1;
}

/* Indicadores (Mobile) */
.gallery-modal__indicators {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 8px 0 4px;
  background: var(--cinza-50);
  flex-shrink: 0;
}

.gallery-modal__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cinza-300);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
  flex-shrink: 0;
}

.gallery-modal__dot.is-active {
  background: var(--azul);
  transform: scale(1.35);
}

/* ─── Coluna de Informações ─── */
.gallery-modal__info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid var(--cinza-200);
}

.gallery-modal__info-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 44px 32px 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--cinza-300) transparent;
}

.gallery-modal__info-scroll::-webkit-scrollbar {
  width: 4px;
}
.gallery-modal__info-scroll::-webkit-scrollbar-thumb {
  background: var(--cinza-300);
  border-radius: 4px;
}

.gallery-modal__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.gallery-modal__category {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--azul);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.gallery-modal__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--cinza-900);
  margin-bottom: 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

/* Badge: contador de opções disponíveis */
.gallery-modal__counter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--azul);
  background: rgba(26, 58, 107, 0.08);
  border: 1px solid rgba(26, 58, 107, 0.18);
  border-radius: 20px;
  padding: 4px 12px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.gallery-modal__counter::before {
  content: "\f0d0"; /* fa-layer-group placeholder */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.72rem;
}

.gallery-modal__checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 20px;
  background: var(--cinza-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--cinza-200);
  margin: 0 0 20px 0;
}

.gallery-modal__desc-wrapper {
  margin-bottom: 24px;
}

.gallery-modal__desc {
  font-size: 0.92rem;
  color: var(--cinza-600);
  line-height: 1.7;
  margin-bottom: 0;
}

.gallery-modal__read-more {
  display: none;
  background: none;
  border: none;
  color: var(--azul);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0;
  margin-top: 8px;
  text-decoration: underline;
}

.gallery-modal__checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cinza-800);
}

.gallery-modal__checks li i {
  color: var(--azul);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Área do CTA */
.gallery-modal__cta-wrap {
  padding: 18px 32px 26px;
  border-top: 1px solid var(--cinza-200);
  flex-shrink: 0;
  background: var(--branco);
}

.gallery-modal__cta {
  width: 100%;
  justify-content: center;
}

/* ─── MOBILE: Bottom-sheet ─── */
@media (max-width: 768px) {
  .gallery-modal {
    padding: 0;
    align-items: flex-end;
  }

  .gallery-modal__container {
    border-radius: 24px 24px 0 0;
    max-width: 100%;
    height: auto;
    max-height: 96vh;
    max-height: 96dvh;
    transform: translateY(40px);
  }

  .gallery-modal.is-open .gallery-modal__container {
    transform: translateY(0);
  }

  .gallery-modal__inner {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 96vh;
    max-height: 96dvh;
  }

  .gallery-modal__media {
    flex-shrink: 0;
    background: var(--cinza-900);
  }

  .gallery-modal__stage {
    aspect-ratio: 4 / 5;
    width: 100%;
    flex: none;
  }

  .gallery-modal__track img {
    object-fit: cover;
  }

  .gallery-modal__nav {
    display: none;
  }

  .gallery-modal__thumbs {
    display: none !important;
  }

  .gallery-modal__indicators {
    display: flex;
  }

  .gallery-modal__info {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    border-left: none;
    border-top: 1px solid var(--cinza-200);
  }

  .gallery-modal__info-scroll {
    padding: 16px 20px 0;
  }

  .gallery-modal__title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .gallery-modal__checks {
    padding: 14px 16px;
    gap: 10px;
    margin-bottom: 16px;
  }

  .gallery-modal__desc-wrapper {
    margin-bottom: 20px;
  }

  .gallery-modal__desc {
    font-size: 0.88rem;
  }

  .gallery-modal__desc.is-clamped {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .gallery-modal__cta-wrap {
    padding: 14px 20px 24px;
  }

  .gallery-modal__close {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
}

/* ═══════════════════════════════════════════
   OFFER MODAL — Ofertas do Mês
   ═══════════════════════════════════════════ */
.offer-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s var(--ease),
    visibility 0.35s var(--ease);
}

.offer-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.offer-modal__container {
  position: relative;
  z-index: 1;
  background: var(--branco);
  border-radius: 20px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.42);
  transform: scale(0.93) translateY(24px);
  transition: transform 0.45s var(--ease);
  display: flex;
  flex-direction: column;
}

.offer-modal.is-open .offer-modal__container {
  transform: scale(1) translateY(0);
}

.offer-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 20;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--cinza-200);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cinza-700);
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.offer-modal__close:hover {
  background: var(--cinza-100);
  color: var(--cinza-900);
  transform: rotate(90deg) scale(1.05);
}

.offer-modal__content {
  display: grid;
  grid-template-columns: 1fr 340px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.offer-modal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0f1117;
}

.offer-modal__info {
  display: flex;
  flex-direction: column;
  padding: 44px 32px 32px;
  overflow-y: auto;
  background: var(--branco);
  border-left: 1px solid var(--cinza-200);
}

.offer-modal__info h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--cinza-900);
  margin-bottom: 24px;
  line-height: 1.25;
}

.offer-modal__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 20px;
  background: var(--cinza-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--cinza-200);
  margin: 0 0 24px 0;
  list-style: none;
}

.offer-modal__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cinza-800);
}

.offer-modal__features li i {
  color: var(--azul);
  font-size: 1rem;
}

.offer-modal__warning {
  font-size: 0.9rem;
  color: #d9534f;
  font-weight: 700;
  margin-top: auto;
  margin-bottom: 20px;
  padding: 10px;
  background: rgba(217, 83, 79, 0.1);
  border-radius: 8px;
  text-align: center;
}

@media (max-width: 768px) {
  .offer-modal {
    padding: 10px;
    align-items: center;
  }
  .offer-modal__container {
    max-height: 95vh;
    border-radius: 20px;
  }
  .offer-modal__content {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }
  .offer-modal__img {
    height: 300px;
    flex-shrink: 0;
  }
  .offer-modal__info {
    padding: 24px 20px;
    border-left: none;
    overflow: visible;
  }
}

/* ═══════════════════════════════════════════
   OFERTA CARD — Alta Conversão
   ═══════════════════════════════════════════ */
.ofertas-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 10px;
  margin: 0;
  scrollbar-width: none;
}

.ofertas-track::-webkit-scrollbar {
  display: none;
}

.oferta-card {
  width: 100%;
  background: var(--branco);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cinza-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.oferta-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(227, 30, 36, 0.3);
}

.oferta-card__top-badge {
  position: absolute;
  top: 16px;
  left: 0;
  background: var(--vermelho);
  color: var(--branco);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 0 20px 20px 0;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(227, 30, 36, 0.4);
}

.oferta-card__img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 20 / 17;
  background: var(--cinza-50);
  overflow: hidden;
  cursor: pointer;
}

.oferta-card__img-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.03);
  transition: background 0.3s ease;
}

.oferta-card__discount-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--amarelo);
  color: var(--azul-dark);
  font-weight: 900;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}


.oferta-card__bottom-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(26, 58, 107, 0.9);
  color: var(--branco);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px;
  text-align: center;
  z-index: 10;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.oferta-card:hover .oferta-card__img-container::after {
  background: rgba(0, 0, 0, 0);
}

.oferta-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.oferta-card:hover .oferta-card__img {
  transform: scale(1.05);
}

.oferta-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.oferta-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--cinza-900);
  margin-bottom: 16px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.oferta-card__price-box {
  background: #fffcfc;
  border: 1px dashed rgba(227, 30, 36, 0.3);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 16px;
  text-align: center;
}

.oferta-card__old-price {
  font-size: 0.95rem;
  color: var(--cinza-500);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.oferta-card__new-price {
  font-size: 1.4rem;
  color: var(--vermelho);
  margin-bottom: 4px;
}

.oferta-card__new-price strong {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
}

.oferta-card__savings {
  display: inline-block;
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.oferta-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.oferta-card__features li {
  font-size: 0.9rem;
  color: var(--cinza-700);
  display: flex;
  align-items: center;
  gap: 10px;
}

.oferta-card__features li i {
  color: #27ae60;
  font-size: 0.95rem;
}

.oferta-card__warning {
  margin-top: auto;
  font-size: 0.75rem;
  color: var(--cinza-500);
  text-align: center;
  margin-bottom: 12px;
  background: var(--cinza-50);
  padding: 6px 8px;
  border-radius: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.oferta-card__btn {
  font-size: 1.05rem;
  padding: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
  transition: all 0.3s ease;
}

.oferta-card__btn:hover {
  box-shadow: 0 6px 16px rgba(227, 30, 36, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .ofertas-track {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px;
  }

  .ofertas-track::-webkit-scrollbar {
    display: none;
  }

  .oferta-card {
    flex: 0 0 88%;
    scroll-snap-align: center;
  }

  .oferta-card__img-container {
    aspect-ratio: 4 / 3;
  }
  .oferta-card__body {
    padding: 16px;
  }
  #ofertasIndicators {
    display: flex !important;
    margin-top: 16px;
  }
  .oferta-card__title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  .oferta-card__price-box {
    padding: 10px;
    margin-bottom: 12px;
  }
  .oferta-card__new-price strong {
    font-size: 1.7rem;
  }
  .oferta-card__btn {
    width: 100%;
  }

  .materiais__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .material-card {
    padding: 12px 10px;
    gap: 10px;
  }
  .material-card h4 {
    font-size: 0.85rem;
  }
  .material-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  /* CREDIBILIDADE */
  .credibilidade-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
  }
  .cred-card {
    padding: 24px 16px;
  }
  .cred-card__icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
  .cred-card__title {
    font-size: 1rem;
  }
  .cred-card__text {
    font-size: 0.85rem;
  }
  .credibilidade-strip {
    padding: 32px 0;
  }
  .cred-strip__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }
  .cred-strip__item {
    justify-content: flex-start;
  }

  /* POR QUE COMPRAR - Slider Mobile */
  .porque-cards {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    grid-template-columns: unset;
  }
  .porque-cards::-webkit-scrollbar {
    display: none;
  }
  .porque-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
  .cta-renata__wrapper {
    flex-direction: column;
    text-align: center;
    padding: 32px 20px;
    gap: 24px;
  }
  .cta-renata__img img {
    width: 140px;
    height: 140px;
  }
  .cta-renata__content h3 {
    font-size: 1.5rem;
  }
  .cta-renata__actions {
    justify-content: center;
    flex-direction: column;
  }
  .cta-renata__actions .btn {
    width: 100%;
  }
  .consultoria-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 20px;
    gap: 32px;
  }
  .consultoria-card__img {
    width: 180px;
    height: 180px;
  }
  .consultoria-card__content h3 {
    font-size: 1.6rem;
  }
  .consultoria-features {
    grid-template-columns: 1fr;
    text-align: left;
    margin: 24px auto 32px auto;
    max-width: 300px;
  }
  .consultoria-card__actions {
    justify-content: center;
    flex-direction: column;
  }
  .consultoria-card__actions .btn {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════
   CTA PREMIUM - CONSULTORIA
   ═══════════════════════════════════════════ */
.cta-premium-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-premium-card {
  background: var(--branco);
  border-radius: var(--radius-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.4s ease;
}

.cta-premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.cta-premium-card__image-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-premium-card__image-wrapper {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(135deg, var(--branco), var(--cinza-100));
  box-shadow: var(--shadow-lg);
  position: relative;
}

.cta-premium-card__image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(46, 63, 168, 0.08);
}

.cta-premium-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--branco);
}

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

.cta-premium-card__badge strong {
  display: block;
  font-size: 1.3rem;
  color: var(--azul);
  line-height: 1.2;
}

.cta-premium-card__badge span {
  font-size: 1rem;
  color: var(--cinza-600);
  font-weight: 500;
}

.cta-premium-card__content h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--cinza-900);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.cta-premium-card__content .subtitle {
  font-size: 1.15rem;
  color: var(--azul);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5;
}

.cta-premium-card__content .description {
  font-size: 1.05rem;
  color: var(--cinza-600);
  margin-bottom: 40px;
}

.cta-premium-card__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-whatsapp-premium {
  background: var(--whatsapp);
  color: var(--branco);
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.btn-whatsapp-premium:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
  color: var(--branco);
}

.btn-whatsapp-premium i {
  font-size: 1.3rem;
}

.btn-outline-premium {
  background: transparent;
  color: var(--cinza-700);
  font-weight: 600;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  border: 2px solid var(--cinza-300);
  transition: var(--transition);
}

.btn-outline-premium:hover {
  border-color: var(--azul);
  color: var(--azul);
  background: rgba(46, 63, 168, 0.03);
  transform: translateY(-3px);
}

.cta-premium-card__trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--cinza-200);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--cinza-700);
  font-weight: 600;
}

.trust-item i {
  color: var(--whatsapp);
  font-size: 1.2rem;
}

/* Responsividade CTA Premium */
@media (max-width: 1024px) {
  .cta-premium-card__trust {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .cta-premium-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 48px 32px;
    gap: 40px;
  }
  
  .cta-premium-card__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-whatsapp-premium, .btn-outline-premium {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  
  .cta-premium-card__trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .cta-premium-section {
    padding: 60px 0;
  }
  
  .cta-premium-card {
    padding: 40px 24px;
    border-radius: var(--radius-lg);
  }

  .cta-premium-card__image-wrapper {
    width: 200px;
    height: 200px;
  }
  
  .cta-premium-card__trust {
    grid-template-columns: 1fr;
    justify-content: flex-start;
  }
}

/* ═══════════════════════════════════════════
   BOTÃO DE ENTREGA (AJUSTE)
   ═══════════════════════════════════════════ */
.btn-entrega-cidade {
  width: fit-content !important;
  white-space: normal;
  text-align: center;
}

@media (max-width: 768px) {
  .btn-entrega-cidade {
    display: flex !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* ═══════════════════════════════════════════
   SLIDER MOBILE PREMIUM - MARCAS
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .marcas-slider-container {
    position: relative;
    padding-bottom: 40px;
    margin: 0 -24px;
  }
  
  .marcas-track {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 0 15%; /* Para centralizar o primeiro card e mostrar 15% lateral */
    scrollbar-width: none;
  }
  
  .marcas-track::-webkit-scrollbar {
    display: none;
  }
  
  .marca-card {
    flex: 0 0 70%;
    width: 70%;
    scroll-snap-align: center;
    /* Ajustes extras para garantir o visual premium */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #marcasIndicators {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: 0;
    width: 100%;
  }
}

/* ═══════════════════════════════════════════
   SLIDER PREMIUM - SHOWROOM E LIGHTBOX
   ═══════════════════════════════════════════ */

/* Aumenta a área do slider no desktop */
@media (min-width: 993px) {
  .showroom__grid {
    display: grid;
    grid-template-columns: 35% 65% !important; /* Aumenta a imagem */
    gap: 48px;
    align-items: center;
  }
}

/* Container do Slider */
.showroom__slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.showroom-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  scrollbar-width: none;
  padding: 0 7.5%; /* Desktop: deixa preview nas laterais */
}

.showroom-track::-webkit-scrollbar {
  display: none;
}

.showroom-slide {
  flex: 0 0 85%; /* Desktop: Card principal + 15% para previews */
  width: 85%;
  scroll-snap-align: center;
  position: relative;
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.showroom-slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

/* Mobile adjustments */
@media (max-width: 992px) {
  .showroom__grid {
    display: flex !important;
    flex-direction: column;
  }
  .showroom__content {
    margin-bottom: 32px;
  }
  .showroom-track {
    padding: 0 10%; /* Centraliza 80% e deixa 10% nas bordas */
  }
  .showroom-slide {
    flex: 0 0 80%;
    width: 80%;
  }
  .showroom__slider-container {
    margin: 0 -24px;
  }
  .showroom-slide img {
    height: 300px;
  }
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  user-select: none;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.lightbox-close:hover {
  transform: scale(1.1);
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}

.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,0.3);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

@media (max-width: 768px) {
  .lightbox-prev, .lightbox-next {
    display: none; /* Mobile usa swipe nativo ou JS swipe */
  }
}

/* ═══════════════════════════════════════════
   SLIDER MOBILE PREMIUM - DIFERENCIAIS
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .diferenciais-slider-container {
    position: relative;
    padding-bottom: 20px;
    margin: 0 -24px;
  }
  
  #diferenciaisTrack {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 0 10%; /* Para centralizar o card de 80% e mostrar 10% nas laterais */
    scrollbar-width: none;
  }
  
  #diferenciaisTrack::-webkit-scrollbar {
    display: none;
  }
  
  #diferenciaisTrack .diferencial-card {
    flex: 0 0 80%;
    width: 80%;
    scroll-snap-align: center;
  }

  #diferenciaisIndicators {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: -10px;
    width: 100%;
  }
}
