/* ==========================================================================
   DALU MODA ÍNTIMA - PREMIUM DESIGN SYSTEM (Refined to match Mockup Visuals)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  /* Palette */
  --vinho-principal: #6F2434;
  --vinho-hover: #571c29;
  --vinho-escuro: #4A1824;
  --rosa-queimado: #B86F7C;
  --rosa-claro: #F5E8EA;
  --rosa-nude: #EFE4DF;
  --nude: #DCC5B8;
  --off-white: #FAF7F4;
  --white: #FFFFFF;
  --preto-suave: #211D1E;
  --cinza-texto: #63585B;
  --cinza-suave: #ECE6E2;
  --border-delicate: rgba(111, 36, 52, 0.12);

  /* Fonts */
  --font-editorial: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(74, 24, 36, 0.05);
  --shadow-md: 0 10px 30px rgba(74, 24, 36, 0.08);
  --shadow-card: 0 8px 24px rgba(33, 29, 30, 0.06);

  --max-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--off-white);
  color: var(--preto-suave);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

input, select, textarea {
  font-family: var(--font-sans);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
  background-color: var(--vinho-escuro);
  color: #F8ECEE;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  padding: 9px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-right a {
  color: #F8ECEE;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}

.top-bar-right a:hover {
  opacity: 0.8;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--off-white);
  border-bottom: 1px solid var(--border-delicate);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  background-color: rgba(250, 247, 244, 0.98);
  box-shadow: var(--shadow-sm);
}

.header-top {
  padding: 16px 0;
  border-bottom: 1px solid rgba(111, 36, 52, 0.08);
}

.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo .logo-main {
  font-family: var(--font-editorial);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--vinho-principal);
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand-logo .logo-main span {
  font-size: 1.1rem;
  color: var(--rosa-queimado);
  vertical-align: super;
}

.brand-logo .logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--preto-suave);
  font-weight: 600;
  margin-top: 2px;
}

/* Header Search Bar */
.header-search {
  flex: 1;
  max-width: 480px;
  position: relative;
}

.header-search input {
  width: 100%;
  padding: 10px 42px 10px 18px;
  border: 1px solid rgba(111, 36, 52, 0.16);
  border-radius: 30px;
  background-color: var(--white);
  font-size: 0.85rem;
  color: var(--preto-suave);
  outline: none;
  transition: border-color 0.2s;
}

.header-search input:focus {
  border-color: var(--vinho-principal);
}

.header-search button {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cinza-texto);
}

/* Header User Links */
.header-user-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-link-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--preto-suave);
  font-weight: 500;
  position: relative;
}

.header-link-item:hover {
  color: var(--vinho-principal);
}

.cart-count {
  background-color: var(--vinho-principal);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Navigation Bar */
.header-nav {
  padding: 10px 0;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--preto-suave);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  padding: 4px 0;
  position: relative;
}

.nav-links a:hover {
  color: var(--vinho-principal);
}

/* ==========================================================================
   HERO BANNER - EDITORIAL COMPOSTO (Full Width Edge-to-Edge Desktop & Mobile)
   ========================================================================== */
.hero-mockup-section {
  padding: 0;
  width: 100%;
  background-color: #F1E5DF;
  overflow: hidden;
}

.hero-editorial-card {
  position: relative;
  background-color: #F1E5DF;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  min-height: 520px;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-editorial-bg {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 58%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-editorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #F1E5DF 42%, rgba(241, 229, 223, 0.88) 58%, transparent 78%);
  pointer-events: none;
}

.hero-container-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-editorial-content {
  padding: 80px 0;
  max-width: 520px;
  width: 100%;
}

.hero-title-mockup {
  font-family: var(--font-editorial);
  font-size: clamp(2.6rem, 4.2vw, 3.8rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--preto-suave);
  margin-bottom: 12px;
  white-space: normal;
}

.hero-title-mockup .accent-title {
  font-family: var(--font-editorial);
  font-size: 1.15em;
  font-style: italic;
  font-weight: 600;
  color: var(--vinho-principal);
  display: inline-block;
}

.hero-title-subtext {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--preto-suave);
  margin-bottom: 16px;
  display: block;
}

.hero-desc-mockup {
  font-size: 0.95rem;
  color: var(--cinza-texto);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 440px;
}

.hero-desc-mockup {
  font-size: 0.95rem;
  color: var(--cinza-texto);
  line-height: 1.6;
  margin-bottom: 28px;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--vinho-principal);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(111, 36, 52, 0.25);
}

.btn-hero-cta:hover {
  background-color: var(--vinho-hover);
  transform: translateY(-2px);
}

/* Floating Badges Box in Hero */
.hero-floating-benefits {
  position: absolute;
  right: 32px;
  top: 32px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  padding: 20px 24px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.benefit-float-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--preto-suave);
}

.benefit-float-item i {
  color: var(--vinho-principal);
  font-size: 1.1rem;
}

/* ==========================================================================
   BLOCO 2: BALÕES CIRCULARES DE CATEGORIAS (Como no Mockup)
   ========================================================================== */
.circular-categories-section {
  padding: 40px 0 20px 0;
  background-color: var(--off-white);
}

.circular-categories-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.circle-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  group: true;
}

.circle-avatar-frame {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--rosa-claro), var(--nude));
  border: 1px solid rgba(111, 36, 52, 0.15);
  box-shadow: 0 4px 14px rgba(74, 24, 36, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.circle-avatar-frame img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.4s ease;
}

.circle-cat-card:hover .circle-avatar-frame {
  transform: translateY(-4px) scale(1.03);
  border-color: var(--vinho-principal);
  box-shadow: 0 8px 22px rgba(111, 36, 52, 0.18);
}

.circle-cat-card:hover .circle-avatar-frame img {
  transform: scale(1.08);
}

.circle-cat-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--preto-suave);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.circle-cat-card:hover .circle-cat-name {
  color: var(--vinho-principal);
}

/* ==========================================================================
   BLOCO 3: BENTO GRID EM 3 COLUNAS (Linha Premium | Biquínis | Atacado)
   ========================================================================== */
.bento-campaigns-section {
  padding: 30px 0 50px 0;
  background-color: var(--off-white);
}

.bento-campaigns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 24px;
}

.bento-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.bento-box-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bento-box:hover .bento-box-img {
  transform: scale(1.04);
}

.bento-overlay-light {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(255,255,255,0.92) 20%, rgba(255,255,255,0.4) 60%, transparent 100%);
}

.bento-content {
  position: relative;
  z-index: 2;
}

.bento-subtag {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vinho-principal);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.bento-title {
  font-family: var(--font-editorial);
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--preto-suave);
  margin-bottom: 16px;
}

.btn-bento-small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--vinho-principal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.btn-bento-small:hover {
  background-color: var(--vinho-hover);
}

/* Card Atacado (Vinho Escuro Sofisticado com Lista) */
.bento-atacado-card {
  background: linear-gradient(135deg, var(--vinho-escuro) 0%, #300f17 100%);
  color: var(--white);
  justify-content: center;
}

.bento-atacado-card .bento-title {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 8px;
}

.bento-atacado-card .bento-subtag {
  color: var(--rosa-claro);
}

.atacado-list-check {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 24px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

.atacado-list-check li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.atacado-list-check li::before {
  content: '✔';
  color: var(--rosa-claro);
  font-size: 0.8rem;
}

/* ==========================================================================
   MINI BENEFÍCIOS (Faixa 4 Ícones)
   ========================================================================== */
.features-ribbon {
  background-color: var(--white);
  border-top: 1px solid var(--cinza-suave);
  border-bottom: 1px solid var(--cinza-suave);
  padding: 24px 0;
  margin-bottom: 50px;
}

.features-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-ribbon-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: left;
}

.feature-ribbon-item i {
  font-size: 1.5rem;
  color: var(--vinho-principal);
}

.feature-ribbon-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--preto-suave);
}

.feature-ribbon-item span {
  font-size: 0.72rem;
  color: var(--cinza-texto);
}

/* ==========================================================================
   BLOCO: MAIS VENDIDOS (Grid de Produtos do Mockup)
   ========================================================================== */
.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}

.section-header-row .section-title {
  font-family: var(--font-editorial);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--preto-suave);
}

.link-ver-todos {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cinza-texto);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.link-ver-todos:hover {
  color: var(--vinho-principal);
}

.products-grid-5cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.product-mockup-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(111, 36, 52, 0.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-mockup-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: rgba(111, 36, 52, 0.25);
}

.product-thumb-wrap {
  position: relative;
  aspect-ratio: 1/1.15;
  background-color: #F8F3F0;
  overflow: hidden;
}

.product-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-mockup-card:hover .product-thumb-wrap img {
  transform: scale(1.05);
}

.btn-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cinza-texto);
  font-size: 0.85rem;
  transition: all 0.2s;
}

.btn-wishlist:hover {
  background-color: var(--white);
  color: var(--vinho-principal);
}

.product-card-body {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--preto-suave);
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-card-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--vinho-escuro);
  margin-bottom: 14px;
}

.btn-comprar-card {
  margin-top: auto;
  width: 100%;
  background-color: #F7EAE8;
  color: var(--vinho-principal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px;
  border-radius: 4px;
  text-align: center;
  transition: all 0.2s ease;
}

.btn-comprar-card:hover {
  background-color: var(--vinho-principal);
  color: var(--white);
}

/* ==========================================================================
   BENTO INFERIOR (Conforto | Novidades | Receba em Casa)
   ========================================================================== */
.bottom-banners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}

.bottom-banner-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  background-color: #F8F3F0;
}

.bottom-banner-card img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  object-fit: cover;
  object-position: center 20%;
}

.bottom-banner-card .content {
  position: relative;
  z-index: 2;
  max-width: 55%;
}

.bottom-banner-card h3 {
  font-family: var(--font-editorial);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--preto-suave);
  line-height: 1.15;
  margin-bottom: 8px;
}

.bottom-banner-card p {
  font-size: 0.78rem;
  color: var(--cinza-texto);
  margin-bottom: 16px;
}

/* Newsletter Bar */
.newsletter-bar {
  background-color: var(--vinho-principal);
  color: var(--white);
  padding: 40px 0;
  margin-top: 60px;
}

.newsletter-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.newsletter-text h3 {
  font-family: var(--font-editorial);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 4px;
}

.newsletter-text p {
  font-size: 0.82rem;
  color: var(--rosa-claro);
}

.newsletter-form {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 480px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 4px;
  border: none;
  font-size: 0.85rem;
  outline: none;
}

.newsletter-form button {
  background-color: var(--vinho-escuro);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.newsletter-form button:hover {
  opacity: 0.9;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--vinho-escuro);
  color: var(--rosa-claro);
  padding: 60px 0 30px 0;
}

.footer-trust-row {
  display: flex;
  justify-content: space-around;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
  text-align: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--white);
}

.footer-bottom-copy {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* WhatsApp Flutuante */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background-color: #25D366;
  color: var(--white);
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  transition: transform 0.2s;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
}

/* Responsive & Edge-to-Edge Mobile */
@media (max-width: 1024px) {
  .products-grid-5cols {
    grid-template-columns: repeat(3, 1fr);
  }
  .bento-campaigns-grid {
    grid-template-columns: 1fr;
  }
  .bottom-banners-grid {
    grid-template-columns: 1fr;
  }
  .features-ribbon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Retirar margens e paddings laterais no mobile para imagens irem de ponta a ponta */
  .container {
    padding: 0;
  }

  .header-top .container,
  .top-bar .container,
  .header-nav .container {
    padding: 0 16px;
  }

  .header-top .container {
    flex-wrap: wrap;
  }

  .header-search {
    order: 3;
    max-width: 100%;
    margin-top: 10px;
  }

  .nav-links {
    gap: 16px;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  /* Hero Mobile Edge-to-Edge */
  .hero-mockup-section {
    padding: 0;
  }

  .hero-editorial-card {
    border-radius: 0;
    min-height: 520px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    box-shadow: none;
  }

  .hero-editorial-bg {
    width: 100%;
    height: 100%;
    object-position: center 15%;
  }

  .hero-editorial-overlay {
    background: linear-gradient(0deg, rgba(241, 229, 223, 0.96) 35%, rgba(241, 229, 223, 0.6) 65%, transparent 100%);
  }

  .hero-editorial-content {
    padding: 32px 20px;
    max-width: 100%;
    text-align: center;
  }

  .hero-title-mockup {
    font-size: 2.3rem;
  }

  .btn-hero-cta {
    width: 100%;
    justify-content: center;
  }

  /* Balões Circulares de Categorias no Mobile */
  .circular-categories-section {
    padding: 24px 0 16px 0;
  }

  .circular-categories-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 16px;
    padding: 0 16px 12px 16px;
    -webkit-overflow-scrolling: touch;
  }

  .circle-cat-card {
    flex-shrink: 0;
  }

  .circle-avatar-frame {
    width: 82px;
    height: 82px;
  }

  .circle-cat-name {
    font-size: 0.75rem;
  }

  /* Bento 3 Cards Edge-to-Edge no Mobile */
  .bento-campaigns-section {
    padding: 16px 0 30px 0;
  }

  .bento-campaigns-grid {
    gap: 16px;
  }

  .bento-box {
    border-radius: 0;
    min-height: 360px;
    padding: 24px 20px;
  }

  /* Faixa de Mini Benefícios */
  .features-ribbon {
    padding: 20px 16px;
  }

  .features-ribbon-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Mais Vendidos 5 Colunas no Mobile: 2 colunas com padding sutil */
  .section-header-row {
    padding: 0 16px;
    margin-bottom: 20px;
  }

  .section-header-row .section-title {
    font-size: 2rem;
  }

  .products-grid-5cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 10px;
  }

  .product-mockup-card {
    border-radius: 6px;
  }

  .product-card-body {
    padding: 12px 8px;
  }

  .product-card-title {
    font-size: 0.8rem;
  }

  .product-card-price {
    font-size: 0.88rem;
  }

  /* Banners Inferiores Edge-to-Edge no Mobile */
  .bottom-banners-grid {
    gap: 14px;
    margin-top: 30px;
  }

  .bottom-banner-card {
    border-radius: 0;
    padding: 24px 16px;
    min-height: 200px;
  }

  .bottom-banner-card .content {
    max-width: 60%;
  }

  .bottom-banner-card img {
    width: 45%;
  }

  /* Newsletter Edge-to-Edge */
  .newsletter-bar {
    margin-top: 40px;
    padding: 36px 16px;
  }

  .newsletter-bar .container {
    flex-direction: column;
    text-align: center;
    padding: 0 16px;
  }

  .footer-trust-row {
    flex-direction: column;
    gap: 16px;
    padding: 0 16px 24px 16px;
  }

  .footer-bottom-copy {
    padding: 0 16px;
  }

  /* Botão WhatsApp no mobile */
  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
    bottom: 20px;
    right: 18px;
  }
}
