/* ==========================================================================
   SECTIONS STYLING — PERSONALIZANDO DO SEU JEITO
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. HERO SECTION — VÍDEO FULL-WIDTH 16:9 + BLOCO EDITORIAL
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  background-color: var(--color-bordo-primary);
  overflow: hidden;
  border-bottom: 1px solid rgba(213, 156, 102, 0.16);
}

/* Vídeo Hero: Enquadramento Sinuoso e Natural no Primeiro Viewport */
.hero-video-wrapper {
  position: relative;
  width: 100%;
  background-color: #120301;
  overflow: hidden;
  line-height: 0;
  display: block;
}

.hero-video-full,
.hero-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  background-color: #120301;
  border: none;
  outline: none;
}

/* Mobile & Telas Pequenas (< 900px): Proporção nativa 16:9 sem corte */
@media (max-width: 899px) {
  .hero-video-wrapper {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .hero-video-full,
  .hero-poster {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center center;
  }
}

/* Desktop (>= 900px): Header + Vídeo preenchem a primeira tela (100svh / 100dvh) */
@media (min-width: 900px) {
  .hero-video-wrapper {
    height: calc(100vh - var(--header-height));
    height: calc(100svh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    aspect-ratio: auto;
  }

  .hero-video-full,
  .hero-poster {
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 50% 46%;
  }
}

/* Bloco Editorial da Hero Imediatamente Abaixo do Vídeo (Fundo #421209 integrado) */
.hero-editorial-section {
  position: relative;
  background-color: var(--color-bordo-primary);
  background: radial-gradient(circle at 50% 30%, #52170C 0%, #421209 60%, #2E0C06 100%);
  padding: clamp(3rem, 5vw, 5.5rem) 0 clamp(2.5rem, 4.5vw, 4.5rem);
}

.container-editorial {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding-left: clamp(1.25rem, 3.5vw, 3.5rem);
  padding-right: clamp(1.25rem, 3.5vw, 3.5rem);
}

.hero-editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: start;
}

/* Coluna Esquerda: H1 */
.hero-col-left {
  display: flex;
  flex-direction: column;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 1.8rem + 1.85vw, 3.65rem);
  font-weight: 600;
  color: var(--color-cream-base);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 0;
}

/* Coluna Direita: Texto + CTAs + Trust Items */
.hero-col-right {
  display: flex;
  flex-direction: column;
}

.hero-copy {
  font-size: clamp(1.025rem, 0.95rem + 0.3vw, 1.18rem);
  color: rgba(250, 246, 240, 0.82);
  line-height: 1.68;
  margin-bottom: clamp(1.5rem, 2.5vw, 2.25rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  margin-bottom: clamp(1.6rem, 2.5vw, 2.4rem);
}

/* Trust Items em Linha Editorial Discreta (SEM CARDS) */
.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.2vw, 1.15rem);
  flex-wrap: wrap;
  padding-top: clamp(1.25rem, 2vw, 1.75rem);
  border-top: 1px solid rgba(213, 156, 102, 0.16);
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(250, 246, 240, 0.8);
  letter-spacing: 0.01em;
}

.trust-pill svg,
.trust-pill .lucide {
  width: 17px;
  height: 17px;
  color: var(--color-gold-primary);
  stroke-width: 1.75;
  flex-shrink: 0;
}

.trust-separator {
  color: rgba(213, 156, 102, 0.35);
  font-size: 0.75rem;
  user-select: none;
}

/* --------------------------------------------------------------------------
   2. SEÇÃO VISÃO GERAL (NOSSAS SOLUÇÕES): COMPOSIÇÃO EDITORIAL
   -------------------------------------------------------------------------- */
.section-solutions {
  background-color: #FAF6F0;
  background-image: 
    radial-gradient(ellipse 70% 50% at 85% 15%, rgba(213, 156, 102, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 45% at 10% 85%, rgba(229, 218, 204, 0.38) 0%, transparent 55%),
    linear-gradient(180deg, #FDFBF7 0%, #FAF6F0 50%, #F5EFE7 100%);
  color: var(--color-bordo-primary);
  padding: clamp(3.4rem, 5vw, 4.8rem) 0 clamp(2.4rem, 3.6vw, 3.4rem);
  position: relative;
  overflow: hidden;
}

/* Marca d'água monumental "SP" em Cormorant Garamond no fundo (CSS puro) */
.solutions-bg-watermark {
  position: absolute;
  top: 48%;
  right: 0;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(280px, 30vw, 500px);
  font-weight: 700;
  line-height: 0.8;
  color: #D59C66;
  opacity: 0.038;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.05em;
  max-width: 100%;
  overflow: hidden;
}

.solutions-inner-container {
  position: relative;
  z-index: 1;
}

/* Abertura Editorial Assimétrica: H2 à esquerda | Textos à direita */
.solutions-editorial-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
  margin-bottom: clamp(1.8rem, 3vw, 2.6rem);
}

.solutions-editorial-title {
  font-family: var(--font-serif);
  font-size: clamp(2.15rem, 1.6rem + 1.9vw, 3.25rem);
  font-weight: 600;
  color: #421209;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0;
}

.solutions-copy-col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.solutions-editorial-lead {
  font-size: clamp(1.02rem, 0.96rem + 0.22vw, 1.125rem);
  color: rgba(66, 18, 9, 0.88);
  line-height: 1.65;
  margin: 0;
  font-weight: 500;
}

.solutions-editorial-sub {
  font-size: clamp(0.92rem, 0.88rem + 0.16vw, 0.98rem);
  color: rgba(66, 18, 9, 0.72);
  line-height: 1.6;
  margin: 0;
}

/* Linha divisória sutil com gradiente champagne */
.solutions-editorial-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, 
    rgba(213, 156, 102, 0.45) 0%, 
    rgba(213, 156, 102, 0.22) 50%, 
    rgba(213, 156, 102, 0.05) 100%
  );
  margin-bottom: clamp(2rem, 3.2vw, 2.8rem);
}

/* Grade Editorial das 4 Soluções */
.solutions-editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 2.2vw, 2.5rem);
  margin-bottom: clamp(2.2rem, 3.6vw, 3.2rem);
}

.solution-editorial-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 0.25rem;
  position: relative;
  transition: transform 0.25s ease;
}

.solution-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 1.5px solid rgba(213, 156, 102, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #421209;
  box-shadow: 0 4px 14px rgba(66, 18, 9, 0.04);
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.solution-editorial-item:hover .solution-icon-circle {
  transform: translateY(-3px) scale(1.04);
  background-color: rgba(213, 156, 102, 0.12);
  border-color: rgba(213, 156, 102, 0.75);
  box-shadow: 0 6px 18px rgba(213, 156, 102, 0.22);
}

.solution-icon-circle svg,
.solution-icon-circle .lucide {
  width: 23px;
  height: 23px;
  stroke-width: 1.75;
}

.solution-text-block h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.05rem + 0.25vw, 1.32rem);
  font-weight: 600;
  color: #421209;
  line-height: 1.25;
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}

.solution-text-block p {
  font-size: clamp(0.88rem, 0.84rem + 0.12vw, 0.94rem);
  color: rgba(66, 18, 9, 0.76);
  line-height: 1.58;
  margin: 0;
}

/* CTA Seção 2 */
.solutions-cta-wrap {
  display: flex;
  justify-content: center;
}

.btn-editorial-bordo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background-color: #421209;
  color: #FAF6F0;
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 0.92rem + 0.15vw, 1.02rem);
  font-weight: 600;
  padding: 0.98rem 2.5rem;
  border-radius: 9999px;
  text-decoration: none;
  border: 1px solid rgba(213, 156, 102, 0.32);
  box-shadow: 0 6px 20px rgba(66, 18, 9, 0.18);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-editorial-bordo:hover {
  background-color: #58180D;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(66, 18, 9, 0.28);
  color: #FAF6F0;
}

.btn-editorial-bordo i,
.btn-editorial-bordo svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  transition: transform 0.25s ease;
}

.btn-editorial-bordo:hover i,
.btn-editorial-bordo:hover svg {
  transform: translateX(4px);
}

/* Responsividade Tablet e Mobile para Seção 2 */
@media (max-width: 991px) {
  .solutions-editorial-split {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.8rem;
  }

  .solutions-editorial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.8rem;
    margin-bottom: 2.4rem;
  }
}

@media (max-width: 640px) {
  .section-solutions {
    padding: 3rem 0 2.2rem;
  }

  .solutions-bg-watermark {
    font-size: 240px;
    right: 0;
    opacity: 0.03;
  }

  .solutions-editorial-split {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .solutions-editorial-title {
    font-size: 1.95rem;
    line-height: 1.2;
  }

  .solutions-editorial-divider {
    margin-bottom: 1.75rem;
  }

  /* No mobile: disposição em 1 coluna onde o ícone fica à esquerda e o texto à direita */
  .solutions-editorial-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    margin-bottom: 2rem;
  }

  .solution-editorial-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.15rem;
    padding: 0;
  }

  .solution-icon-circle {
    width: 48px;
    height: 48px;
  }

  .solution-icon-circle svg,
  .solution-icon-circle .lucide {
    width: 21px;
    height: 21px;
  }

  .solution-text-block h3 {
    font-size: 1.12rem;
    margin-bottom: 0.35rem;
  }

  .solution-text-block p {
    font-size: 0.88rem;
    line-height: 1.52;
  }

  .btn-editorial-bordo {
    width: 100%;
    padding: 0.95rem 1.8rem;
  }
}

/* --------------------------------------------------------------------------
   TRANSIÇÕES VISUAIS ORGÂNICAS
   -------------------------------------------------------------------------- */
.curve-cream-to-bordo-wave {
  background-color: #FAF6F0;
  margin-top: -1px;
}

.curve-cream-to-bordo-wave svg {
  display: block;
  width: 100%;
  height: clamp(54px, 7vw, 100px);
}

.curve-bordo-to-cream-wave {
  background-color: #421209;
  margin-top: -1px;
}

.curve-bordo-to-cream-wave svg {
  display: block;
  width: 100%;
  height: clamp(48px, 6vw, 90px);
}

/* --------------------------------------------------------------------------
   3. SEÇÃO CAMISETAS: ESTAMPARIA QUE VESTE IDEIAS (FUNDO BORDÔ)
   -------------------------------------------------------------------------- */
.section-tshirts-editorial {
  background-color: #421209;
  background: radial-gradient(circle at 50% 18%, #54190D 0%, #421209 55%, #2B0A04 100%);
  color: var(--color-cream-base);
  padding: clamp(4rem, 6.5vw, 6.5rem) 0 clamp(3.5rem, 5vw, 5.5rem);
  position: relative;
  overflow: hidden;
}

.tshirts-editorial-header {
  max-width: 860px;
  margin: 0 auto clamp(2.5rem, 4vw, 3.5rem);
  text-align: center;
}

.tshirts-editorial-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 1.7rem + 1.8vw, 3.4rem);
  font-weight: 600;
  color: #FAF6F0;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: clamp(1rem, 1.5vw, 1.35rem);
}

.tshirts-editorial-copy {
  font-size: clamp(1rem, 0.95rem + 0.28vw, 1.125rem);
  color: rgba(250, 246, 240, 0.8);
  line-height: 1.68;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Asset Visual Principal: Imagem das Camisetas (Referência B) */
.tshirts-visual-hero {
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto clamp(2.5rem, 4vw, 4rem);
  border-radius: clamp(14px, 1.8vw, 22px);
  overflow: hidden;
  background-color: #240803;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(213, 156, 102, 0.16);
}

.tshirts-picture {
  display: block;
  width: 100%;
  line-height: 0;
}

.tshirts-featured-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tshirts-visual-hero:hover .tshirts-featured-img {
  transform: scale(1.015);
}

/* 3 Aplicações Editoriais em Coluna com Separadores */
.tshirts-tri-editorial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.5vw, 3rem);
  max-width: 1120px;
  margin: 0 auto clamp(2.5rem, 4vw, 4rem);
}

.tshirt-app-col {
  position: relative;
  display: flex;
  flex-direction: column;
}

@media (min-width: 900px) {
  .tshirt-app-col:not(:last-child) {
    padding-right: clamp(1.5rem, 2.5vw, 2.5rem);
    border-right: 1px solid rgba(213, 156, 102, 0.18);
  }
}

.tshirt-app-icon {
  margin-bottom: 1rem;
  color: #D59C66;
}

.tshirt-app-icon svg,
.tshirt-app-icon .lucide {
  width: 28px;
  height: 28px;
  stroke-width: 1.75;
}

.tshirt-app-col h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.18rem, 1.1rem + 0.3vw, 1.35rem);
  font-weight: 600;
  color: #FAF6F0;
  line-height: 1.25;
  margin-bottom: 0.65rem;
}

.tshirt-app-col p {
  font-size: clamp(0.9rem, 0.86rem + 0.15vw, 0.96rem);
  color: rgba(250, 246, 240, 0.72);
  line-height: 1.6;
  margin: 0;
}

/* CTA da Seção 3 */
.tshirts-cta-wrap {
  display: flex;
  justify-content: center;
}

.btn-editorial-champagne {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background-color: #D59C66;
  color: #421209;
  font-family: var(--font-sans);
  font-size: clamp(0.98rem, 0.95rem + 0.2vw, 1.05rem);
  font-weight: 600;
  padding: 1.05rem 2.6rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-editorial-champagne:hover {
  background-color: #E2AD78;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(213, 156, 102, 0.25);
  color: #421209;
}

.btn-editorial-champagne i,
.btn-editorial-champagne svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  transition: transform 0.25s ease;
}

.btn-editorial-champagne:hover i,
.btn-editorial-champagne:hover svg {
  transform: translateX(4px);
}

/* Estilos de Apoio Mantidos para Demais Seções */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(2.5rem, 4vw, 4rem);
}

.section-header-left {
  text-align: left;
  margin: 0 0 clamp(2rem, 3.5vw, 3.5rem);
}

.section-title {
  color: var(--color-text-dark);
  font-size: clamp(2rem, 1.8rem + 1.2vw, 2.9rem);
  line-height: 1.18;
}

.section-title-light {
  color: var(--color-cream-base);
}

.section-copy {
  color: var(--color-text-dark-muted);
  font-size: var(--text-base);
  line-height: 1.68;
  margin-top: var(--spacing-sm);
}

.section-copy-light {
  color: var(--color-text-muted);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 2vw, 1.8rem);
  margin-bottom: var(--spacing-2xl);
}

.solutions-cta {
  display: flex;
  justify-content: center;
}

/* Card Visual de Apresentação de Produto */
.product-visual-card {
  position: relative;
  background: linear-gradient(145deg, #421209 0%, #2A0B05 100%);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 3.5vw, 3rem);
  color: var(--color-cream-base);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(213, 156, 102, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  overflow: hidden;
}

.product-visual-card::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(213, 156, 102, 0.2) 0%, transparent 70%);
  border-radius: var(--radius-full);
  pointer-events: none;
}

.visual-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(213, 156, 102, 0.15);
  border: 1px solid rgba(213, 156, 102, 0.35);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-gold-primary);
  width: fit-content;
}

.visual-card-center {
  margin: var(--spacing-xl) 0;
  text-align: center;
}

.visual-symbol {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  border-radius: var(--radius-full);
  background: rgba(213, 156, 102, 0.12);
  border: 1px solid rgba(213, 156, 102, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-primary);
}

.visual-symbol svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.5;
}

.visual-card-title {
  font-size: var(--text-2xl);
  color: var(--color-gold-light);
  margin-bottom: var(--spacing-xs);
}

.visual-card-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 380px;
  margin: 0 auto;
}

.visual-card-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag-pill {
  font-size: var(--text-xs);
  padding: 0.3rem 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  color: var(--color-cream-surface);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* --------------------------------------------------------------------------
   4. SEÇÃO CANECAS (DIREÇÃO EDITORIAL NORTH STAR — CREME QUENTE)
   -------------------------------------------------------------------------- */
.section-mugs-editorial {
  background: radial-gradient(ellipse at 35% 25%, #FFFDF9 0%, #F9F4EB 55%, #F2E9DC 100%);
  color: var(--color-text-dark);
  padding: clamp(3.5rem, 6vw, 6rem) 0 0;
  position: relative;
  overflow: hidden;
}

/* Grid Editorial Principal: 1.15fr (Texto + Canecas) | 0.85fr (Aplicações + CTA) */
.mugs-editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
}

.mugs-grid-left {
  display: flex;
  flex-direction: column;
}

.editorial-eyebrow {
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 0.68rem + 0.15vw, 0.82rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #D59C66;
  display: inline-block;
  margin-bottom: 0.85rem;
}

.mugs-editorial-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 1.8rem + 1.5vw, 3.4rem);
  font-weight: 600;
  color: #421209;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
}

.mugs-editorial-lead {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.94rem + 0.25vw, 1.15rem);
  font-weight: 500;
  color: #4A352F;
  line-height: 1.65;
  margin: 0 0 0.5rem;
}

.mugs-editorial-sub {
  font-family: var(--font-sans);
  font-size: clamp(0.94rem, 0.88rem + 0.2vw, 1.05rem);
  color: #6A564F;
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

/* Composição Visual das Canecas (Asset Real Transparente Integrado) */
.mugs-visual-composition {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.mugs-picture {
  display: block;
  width: 100%;
  max-width: 720px;
}

.mugs-featured-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(66, 18, 9, 0.08));
}

/* Coluna Direita: 3 Aplicações Editoriais + CTA */
.mugs-grid-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(1rem, 3vw, 3.5rem);
}

.mugs-tri-editorial {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
}

.mugs-app-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.mugs-app-icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(213, 156, 102, 0.55);
  background: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D59C66;
  box-shadow: 0 4px 14px rgba(213, 156, 102, 0.12);
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.mugs-app-item:hover .mugs-app-icon-wrap {
  transform: translateY(-2px);
  border-color: #D59C66;
  background: rgba(255, 255, 255, 0.85);
}

.mugs-app-icon-wrap i {
  width: 24px;
  height: 24px;
}

.mugs-app-content {
  flex: 1;
}

.mugs-app-title {
  font-family: var(--font-serif);
  font-size: clamp(1.22rem, 1.12rem + 0.3vw, 1.38rem);
  font-weight: 600;
  color: #421209;
  line-height: 1.25;
  margin: 0 0 0.35rem;
}

.mugs-app-text {
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 0.88rem + 0.2vw, 1.02rem);
  color: #5A453E;
  line-height: 1.6;
  margin: 0;
}

/* Botão CTA Editorial das Canecas */
.mugs-cta-wrap {
  display: flex;
  align-items: center;
}

.btn-editorial-mugs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #D59C66;
  color: #421209;
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  font-weight: 600;
  padding: 0.9rem 1.85rem;
  border-radius: 10px;
  border: 1px solid rgba(213, 156, 102, 0.85);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(213, 156, 102, 0.25);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-editorial-mugs:hover {
  background: #E4B588;
  box-shadow: 0 12px 28px rgba(213, 156, 102, 0.35);
  transform: translateY(-2px);
  color: #421209;
}

.btn-editorial-mugs i {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-editorial-mugs:hover i {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   TRANSIÇÃO CURVA ORGÂNICA: SEÇÃO 4 (CREME) -> SEÇÃO 5 (BORDÔ)
   -------------------------------------------------------------------------- */
.curve-mugs-to-uniforms {
  display: block;
  width: 100%;
  height: clamp(65px, 8vw, 115px);
  background: #F2E9DC;
  margin-top: -1px;
  margin-bottom: -1px;
  position: relative;
  z-index: 3;
  overflow: hidden;
  line-height: 0;
}

.curve-mugs-to-uniforms svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* --------------------------------------------------------------------------
   5. SEÇÃO UNIFORMES (DIREÇÃO EDITORIAL NORTH STAR — BORDÔ NOBRE)
   -------------------------------------------------------------------------- */
.section-uniforms-editorial {
  background: radial-gradient(circle at 65% 45%, #4D150C 0%, #421209 55%, #320C06 100%);
  color: #FAF6F0;
  padding: clamp(3rem, 5vw, 5.5rem) 0 clamp(2.5rem, 4vw, 4rem);
  position: relative;
  overflow: hidden;
}

/* Grid Editorial dos Uniformes: 0.95fr (Texto + Aplicações) | 1.05fr (Composição Visual) */
.uniforms-editorial-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 4.5vw, 5.5rem);
  align-items: center;
}

.uniforms-grid-left {
  display: flex;
  flex-direction: column;
}

.editorial-eyebrow-light {
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 0.68rem + 0.15vw, 0.82rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #D59C66;
  display: inline-block;
  margin-bottom: 0.85rem;
}

.uniforms-editorial-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 1.8rem + 1.5vw, 3.3rem);
  font-weight: 600;
  color: #FAF6F0;
  line-height: 1.16;
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
}

.uniforms-editorial-lead {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.94rem + 0.25vw, 1.15rem);
  font-weight: 500;
  color: rgba(250, 246, 240, 0.92);
  line-height: 1.65;
  margin: 0 0 0.5rem;
}

.uniforms-editorial-sub {
  font-family: var(--font-sans);
  font-size: clamp(0.94rem, 0.88rem + 0.2vw, 1.05rem);
  color: rgba(250, 246, 240, 0.74);
  line-height: 1.65;
  margin: 0 0 clamp(1.5rem, 2.5vw, 2.2rem);
}

/* 3 Aplicações Editoriais Verticais */
.uniforms-tri-editorial {
  display: flex;
  flex-direction: column;
  gap: clamp(1.4rem, 2.2vw, 2rem);
  margin-bottom: clamp(2rem, 3vw, 2.8rem);
}

.uniforms-app-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.uniforms-app-icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(213, 156, 102, 0.6);
  background: rgba(66, 18, 9, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D59C66;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.uniforms-app-item:hover .uniforms-app-icon-wrap {
  transform: translateY(-2px);
  border-color: #E4B588;
  background: rgba(213, 156, 102, 0.18);
}

.uniforms-app-icon-wrap i {
  width: 24px;
  height: 24px;
}

.uniforms-app-content {
  flex: 1;
}

.uniforms-app-title {
  font-family: var(--font-serif);
  font-size: clamp(1.18rem, 1.08rem + 0.3vw, 1.34rem);
  font-weight: 600;
  color: #FAF6F0;
  line-height: 1.25;
  margin: 0 0 0.35rem;
}

.uniforms-app-text {
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 0.88rem + 0.2vw, 1.02rem);
  color: rgba(250, 246, 240, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* Botão CTA Editorial dos Uniformes */
.uniforms-cta-wrap {
  display: flex;
  align-items: center;
}

.btn-editorial-uniforms {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #D59C66;
  color: #421209;
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  font-weight: 600;
  padding: 0.9rem 1.85rem;
  border-radius: 10px;
  border: 1px solid rgba(213, 156, 102, 0.85);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  align-self: flex-start;
}

.btn-editorial-uniforms:hover {
  background: #E4B588;
  box-shadow: 0 12px 28px rgba(213, 156, 102, 0.35);
  transform: translateY(-2px);
  color: #421209;
}

.btn-editorial-uniforms i {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-editorial-uniforms:hover i {
  transform: translateX(4px);
}

.uniforms-bottom-accent {
  margin-top: 1.5rem;
}

.uniforms-accent-line {
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(213, 156, 102, 0.35);
}

/* Coluna Direita: Composição Visual Monumental de Uniformes */
.uniforms-grid-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.uniforms-visual-composition {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.uniforms-picture {
  display: block;
  width: 100%;
  max-width: 820px;
}

.uniforms-featured-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.35));
}

.uniforms-editorial-stamp {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
  opacity: 0.25;
}

.stamp-vertical-bar {
  display: block;
  width: 1px;
  height: 40px;
  background: #D59C66;
}

/* --------------------------------------------------------------------------
   TRANSIÇÃO CURVA ORGÂNICA: SEÇÃO 5 (BORDÔ) -> SEÇÃO 6 (CREME BRINDES)
   -------------------------------------------------------------------------- */
.curve-uniforms-to-gifts {
  display: block;
  width: 100%;
  height: clamp(50px, 6.5vw, 95px);
  background: #320C06;
  margin-top: -1px;
  margin-bottom: -1px;
  position: relative;
  z-index: 3;
  overflow: hidden;
  line-height: 0;
}

.curve-uniforms-to-gifts svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* --------------------------------------------------------------------------
   RESPONSIVIDADE: SEÇÕES 4 E 5 (TABLET & MOBILE)
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .mugs-editorial-grid {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
  }

  .mugs-grid-left,
  .mugs-grid-right {
    display: contents;
  }

  .mugs-editorial-header {
    order: 1;
    width: 100%;
  }

  .mugs-visual-composition {
    order: 2;
    margin: 1.5rem auto 2rem;
    max-width: 520px;
    width: 100%;
  }

  .mugs-tri-editorial {
    order: 3;
    width: 100%;
  }

  .mugs-cta-wrap {
    order: 4;
    width: 100%;
  }

  .btn-editorial-mugs {
    width: 100%;
    min-height: 48px;
  }

  .uniforms-editorial-grid {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
  }

  .uniforms-grid-left,
  .uniforms-grid-right {
    display: contents;
  }

  .uniforms-editorial-header {
    order: 1;
    width: 100%;
  }

  .uniforms-visual-composition {
    order: 2;
    margin: 1.5rem auto 2rem;
    width: 100%;
    max-width: 540px;
  }

  .uniforms-tri-editorial {
    order: 3;
    width: 100%;
  }

  .uniforms-cta-wrap {
    order: 4;
    width: 100%;
  }

  .btn-editorial-uniforms {
    width: 100%;
    min-height: 48px;
  }

  .uniforms-bottom-accent {
    order: 5;
    width: 100%;
  }

  .uniforms-editorial-stamp {
    display: none;
  }
}

@media (max-width: 576px) {
  .mugs-app-icon-wrap,
  .uniforms-app-icon-wrap {
    width: 44px;
    height: 44px;
  }

  .mugs-app-icon-wrap i,
  .uniforms-app-icon-wrap i {
    width: 20px;
    height: 20px;
  }

  .mugs-app-item,
  .uniforms-app-item {
    gap: 1rem;
  }

  .btn-editorial-mugs,
  .btn-editorial-uniforms {
    font-size: 0.95rem;
    padding: 0.85rem 1.25rem;
  }
}

/* --------------------------------------------------------------------------
   6. SEÇÃO BRINDES (DIREÇÃO EDITORIAL NORTH STAR)
   -------------------------------------------------------------------------- */
.section-gifts-editorial {
  background: radial-gradient(circle at 50% 15%, #FFFDF9 0%, #F9F3EA 55%, #F4ECE0 100%);
  color: var(--color-text-dark);
  padding: clamp(4rem, 6vw, 6.5rem) 0 clamp(2rem, 3vw, 3rem);
  position: relative;
}

/* Abertura Editorial Equilibrada: H2 à esquerda, Copy à direita */
.gifts-editorial-header {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.gifts-editorial-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 1.8rem + 1.25vw, 3.1rem);
  font-weight: 600;
  color: #421209;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
}

.gifts-editorial-lead {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.94rem + 0.25vw, 1.15rem);
  font-weight: 500;
  color: #4A352F;
  line-height: 1.65;
  margin: 0 0 0.5rem;
}

.gifts-editorial-sub {
  font-family: var(--font-sans);
  font-size: clamp(0.94rem, 0.88rem + 0.2vw, 1.05rem);
  color: #6A564F;
  line-height: 1.65;
  margin: 0;
}

/* Composição Visual dos Brindes (Asset Real Transparente Integrado) */
.gifts-visual-composition {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto clamp(2.5rem, 4.5vw, 4rem);
  max-width: 1060px;
  width: 100%;
}

.gifts-featured-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 36px rgba(66, 18, 9, 0.08));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gifts-featured-img:hover {
  transform: scale(1.012);
}

/* 3 Blocos Editoriais Secundários (Sem cards independentes) */
.gifts-tri-editorial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.gifts-editorial-col {
  display: flex;
  flex-direction: column;
}

.gifts-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(213, 156, 102, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #421209;
  margin-bottom: 1.1rem;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.gifts-editorial-col:hover .gifts-icon-wrap {
  background-color: rgba(213, 156, 102, 0.35);
  transform: translateY(-2px);
}

.gifts-icon-wrap svg,
.gifts-icon-wrap .lucide {
  width: 24px;
  height: 24px;
  stroke-width: 1.85;
}

.gifts-editorial-col h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.22rem, 1.15rem + 0.3vw, 1.4rem);
  font-weight: 600;
  color: #421209;
  line-height: 1.25;
  margin: 0 0 0.5rem;
}

.gifts-editorial-col p {
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 0.88rem + 0.2vw, 1.02rem);
  color: #5C4740;
  line-height: 1.6;
  margin: 0;
}

/* CTA Seção 6 */
.gifts-cta-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
}

.btn-editorial-bordo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background-color: #421209;
  color: #FFF8F2;
  font-family: var(--font-sans);
  font-size: clamp(0.98rem, 0.95rem + 0.2vw, 1.05rem);
  font-weight: 600;
  padding: 1.05rem 2.8rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(66, 18, 9, 0.22);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-editorial-bordo:hover {
  background-color: #56180C;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(66, 18, 9, 0.32);
  color: #FFF8F2;
}

.btn-editorial-bordo svg,
.btn-editorial-bordo .lucide {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  transition: transform 0.25s ease;
}

.btn-editorial-bordo:hover svg,
.btn-editorial-bordo:hover .lucide {
  transform: translateX(4px);
}

/* Transição Curva 6 para 7 com Filete Champanhe */
.curve-gifts-to-presents {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
  background-color: transparent;
}

.curve-gifts-to-presents svg {
  width: 100%;
  height: clamp(65px, 8vw, 120px);
  display: block;
}

/* --------------------------------------------------------------------------
   7. SEÇÃO PRESENTES ESPECIAIS (DIREÇÃO EDITORIAL BORDÔ NORTH STAR)
   -------------------------------------------------------------------------- */
.section-presents-editorial {
  background: radial-gradient(circle at 65% 35%, #56180C 0%, #421209 60%, #280904 100%);
  color: var(--color-cream-base);
  padding: clamp(3rem, 5vw, 5rem) 0 clamp(3.5rem, 5.5vw, 5.5rem);
  position: relative;
}

.presents-editorial-grid {
  display: grid;
  grid-template-columns: 43fr 57fr;
  grid-template-areas:
    "header asset"
    "details asset"
    ". signature";
  gap: 1.5rem clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}

.presents-header-block {
  grid-area: header;
  display: flex;
  flex-direction: column;
}

.presents-asset-block {
  grid-area: asset;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.presents-details-block {
  grid-area: details;
  display: flex;
  flex-direction: column;
}

.presents-signature-block {
  grid-area: signature;
  width: 100%;
}

.presents-editorial-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 1.8rem + 1.25vw, 3.15rem);
  font-weight: 600;
  color: #FAF6F0;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 1.35rem;
}

.presents-editorial-text p {
  font-family: var(--font-sans);
  font-size: clamp(0.98rem, 0.94rem + 0.2vw, 1.05rem);
  color: rgba(250, 246, 240, 0.82);
  line-height: 1.62;
  margin: 0 0 0.55rem;
}

/* Lista Editorial de Possibilidades */
.presents-possibilities-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.presents-possibilities-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.presents-list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D59C66;
  flex-shrink: 0;
}

.presents-list-icon svg,
.presents-list-icon .lucide {
  width: 20px;
  height: 20px;
  stroke-width: 1.9;
}

.presents-list-text {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 0.92rem + 0.15vw, 1.02rem);
  color: #FAF6F0;
  font-weight: 400;
  line-height: 1.4;
}

.presents-cta-wrap {
  margin-top: 0.25rem;
}

.presents-visual-composition {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.presents-featured-img {
  max-width: 700px;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 42px rgba(0, 0, 0, 0.44));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.presents-featured-img:hover {
  transform: scale(1.015);
}

.presents-signature-phrase {
  width: 100%;
  text-align: right;
  margin-top: 1.75rem;
  padding-right: 1.25rem;
}

.presents-signature-phrase p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.22rem, 1.12rem + 0.4vw, 1.55rem);
  color: #D59C66;
  line-height: 1.35;
  margin: 0;
}

/* Responsividade Mobile e Tablet para Seções 6 e 7 */
@media (max-width: 960px) {
  .gifts-editorial-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .gifts-editorial-sub {
    margin-top: 0.5rem;
  }

  .presents-editorial-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "header"
      "asset"
      "details"
      "signature";
    gap: 2rem;
  }

  .presents-header-block,
  .presents-details-block {
    text-align: center;
    align-items: center;
  }

  .presents-possibilities-list {
    align-items: flex-start;
    display: inline-flex;
    margin: 1.5rem auto 2rem;
  }

  .presents-signature-phrase {
    text-align: center;
    padding-right: 0;
    margin-top: 1.25rem;
  }
}

@media (max-width: 768px) {
  .gifts-tri-editorial {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    text-align: left;
    margin-bottom: 2rem;
  }

  .gifts-editorial-col {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.15rem;
    text-align: left;
  }

  .gifts-icon-wrap {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    margin-bottom: 0;
    margin-top: 2px;
  }

  .gifts-icon-wrap svg,
  .gifts-icon-wrap .lucide {
    width: 22px;
    height: 22px;
  }

  .gifts-col-content {
    flex: 1;
    min-width: 0;
  }

  .gifts-editorial-col h3 {
    font-size: 1.18rem;
    margin: 0 0 0.25rem;
  }

  .gifts-editorial-col p {
    font-size: 0.94rem;
    line-height: 1.55;
  }
}

/* --------------------------------------------------------------------------
   8. SEÇÃO COMUNICAÇÃO VISUAL (DIREÇÃO EDITORIAL NORTH STAR)
   -------------------------------------------------------------------------- */
.section-comm-editorial {
  background: radial-gradient(circle at 50% 15%, #FFFDF9 0%, #F9F3EA 55%, #F4ECE0 100%);
  color: var(--color-text-dark);
  padding: clamp(4rem, 6vw, 6.5rem) 0 clamp(2.5rem, 3.5vw, 3.5rem);
  position: relative;
}

/* Abertura Editorial Desktop: H2 + Copy à esquerda | Asset ilustrativo à direita */
.comm-editorial-hero {
  display: grid;
  grid-template-columns: 46fr 54fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(3rem, 4.5vw, 4.5rem);
}

.comm-hero-content {
  display: flex;
  flex-direction: column;
}

.comm-editorial-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 1.8rem + 1.25vw, 3.1rem);
  font-weight: 600;
  color: #421209;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 1.25rem;
}

.comm-editorial-lead {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.94rem + 0.25vw, 1.15rem);
  font-weight: 400;
  color: #4A352F;
  line-height: 1.65;
  margin: 0 0 1.25rem;
}

.comm-signature-note p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 1.15rem + 0.4vw, 1.55rem);
  color: #8B3A1C;
  line-height: 1.35;
  margin: 0;
}

.comm-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.comm-visual-composition {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.comm-featured-img {
  max-width: 720px;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 36px rgba(66, 18, 9, 0.10));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.comm-featured-img:hover {
  transform: scale(1.015);
}

/* 3 Blocos Informativos Secundários com Ícones Lucide */
.comm-tri-editorial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.comm-editorial-col {
  display: flex;
  flex-direction: column;
}

.comm-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(213, 156, 102, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #421209;
  margin-bottom: 1.1rem;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.comm-editorial-col:hover .comm-icon-wrap {
  background-color: rgba(213, 156, 102, 0.35);
  transform: translateY(-2px);
}

.comm-icon-wrap svg,
.comm-icon-wrap .lucide {
  width: 24px;
  height: 24px;
  stroke-width: 1.85;
}

.comm-editorial-col h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.22rem, 1.15rem + 0.3vw, 1.4rem);
  font-weight: 600;
  color: #421209;
  line-height: 1.25;
  margin: 0 0 0.5rem;
}

.comm-editorial-col p {
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 0.88rem + 0.2vw, 1.02rem);
  color: #5C4740;
  line-height: 1.6;
  margin: 0;
}

/* CTA Seção 8 */
.comm-cta-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.comm-cta-wrap {
  display: flex;
  justify-content: center;
}

.comm-cta-note p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1rem + 0.2vw, 1.22rem);
  color: #8B3A1C;
  margin: 0;
}

/* Transição Curva 8 para 9 com Filete Champanhe */
.curve-comm-to-portfolio {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
  background-color: transparent;
}

.curve-comm-to-portfolio svg {
  width: 100%;
  height: clamp(65px, 8vw, 110px);
  display: block;
}

/* --------------------------------------------------------------------------
   9. SEÇÃO PORTFÓLIO (MOSAICO REAL BORDÔ NORTH STAR)
   -------------------------------------------------------------------------- */
.section-portfolio-editorial {
  background: radial-gradient(circle at 50% 25%, #58180C 0%, #421209 60%, #260803 100%);
  color: var(--color-cream-base);
  padding: clamp(3.5rem, 5vw, 5.5rem) 0 clamp(3.5rem, 5vw, 5.5rem);
  position: relative;
}

.portfolio-editorial-header {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.portfolio-header-left {
  display: flex;
  flex-direction: column;
}

.portfolio-editorial-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 1.8rem + 1.25vw, 3.15rem);
  font-weight: 600;
  color: #FAF6F0;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
}

.portfolio-editorial-lead {
  font-family: var(--font-sans);
  font-size: clamp(0.98rem, 0.94rem + 0.2vw, 1.05rem);
  color: rgba(250, 246, 240, 0.82);
  line-height: 1.62;
  margin: 0;
  max-width: 680px;
}

.portfolio-header-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.portfolio-editorial-signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 1.2rem + 0.5vw, 1.7rem);
  color: #D59C66;
  line-height: 1.35;
  margin: 0;
  text-align: right;
}

/* Mosaico Editorial de 5 Fotos Reais */
.portfolio-mosaic-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 1.25rem;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.mosaic-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(213, 156, 102, 0.22);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
  background-color: #2D0C06;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.mosaic-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.52);
  border-color: rgba(213, 156, 102, 0.45);
}

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

.mosaic-item:hover .mosaic-img {
  transform: scale(1.03);
}

/* Posicionamento Específico no Grid Desktop */
.mosaic-item-tall {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.mosaic-item-cards {
  grid-column: 2;
  grid-row: 1;
}

.mosaic-item-cushion {
  grid-column: 2;
  grid-row: 2;
}

.mosaic-item-mug {
  grid-column: 3;
  grid-row: 1;
}

.mosaic-item-tshirt {
  grid-column: 3;
  grid-row: 2;
}

/* CTA Seção 9 */
.portfolio-cta-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: clamp(2rem, 3.5vw, 3rem);
}

/* Botão Instagram no Portfólio */
.btn-portfolio-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: transparent;
  color: #FAF6F0;
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  font-weight: 600;
  padding: 0.95rem 1.85rem;
  border-radius: 10px;
  border: 1.5px solid rgba(213, 156, 102, 0.75);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.btn-portfolio-instagram:hover {
  background-color: #D59C66;
  border-color: #D59C66;
  color: #421209;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(213, 156, 102, 0.35);
}

.btn-portfolio-instagram:focus-visible {
  outline: 2px solid #D59C66;
  outline-offset: 3px;
}

.btn-portfolio-instagram svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.btn-portfolio-instagram:hover svg {
  transform: scale(1.1);
}

.btn-portfolio-instagram .btn-arrow-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.btn-portfolio-instagram:hover .btn-arrow-icon {
  transform: translate(2px, -2px);
}

/* Transição Curva 9 para 10 */
.curve-portfolio-to-process {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
  background-color: transparent;
}

.curve-portfolio-to-process svg {
  width: 100%;
  height: clamp(50px, 6vw, 85px);
  display: block;
}

/* Responsividade Mobile e Tablet para Seções 8 e 9 */
@media (max-width: 960px) {
  .comm-editorial-hero {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    text-align: center;
  }

  .comm-hero-content {
    align-items: center;
  }

  .portfolio-editorial-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .portfolio-header-right {
    justify-content: center;
  }

  .portfolio-editorial-signature {
    text-align: center;
  }

  .portfolio-mosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }

  .mosaic-item-tall {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 320px;
  }

  .mosaic-item-cards,
  .mosaic-item-cushion,
  .mosaic-item-mug,
  .mosaic-item-tshirt {
    grid-column: auto;
    grid-row: auto;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .comm-tri-editorial {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    text-align: left;
    margin-bottom: 2rem;
  }

  .comm-editorial-col {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.15rem;
    text-align: left;
  }

  .comm-icon-wrap {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    margin-bottom: 0;
    margin-top: 2px;
  }

  .comm-icon-wrap svg,
  .comm-icon-wrap .lucide {
    width: 22px;
    height: 22px;
  }

  .comm-col-content {
    flex: 1;
    min-width: 0;
  }

  .comm-editorial-col h3 {
    font-size: 1.18rem;
    margin: 0 0 0.25rem;
  }

  .comm-editorial-col p {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .portfolio-mosaic-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .mosaic-item-tall {
    height: 260px;
  }

  .mosaic-item-cards,
  .mosaic-item-cushion,
  .mosaic-item-mug,
  .mosaic-item-tshirt {
    height: 160px;
  }
}

/* --------------------------------------------------------------------------
   10. SEÇÃO PROCESSO EDITORIAL (DA SUA IDEIA AO PRODUTO PERSONALIZADO)
   -------------------------------------------------------------------------- */
.section-process-editorial {
  background-color: #FAF6F0;
  color: #2D0B05;
  padding: clamp(2.75rem, 4vw, 4.25rem) 0 clamp(2.5rem, 3.5vw, 3.5rem);
  position: relative;
}

.process-editorial-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(2rem, 3vw, 2.75rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-editorial-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 1.8rem + 1.6vw, 3.4rem);
  font-weight: 600;
  color: #421209;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
}

.process-accent-line {
  width: 54px;
  height: 2.5px;
  background-color: #D59C66;
  margin-bottom: 1.25rem;
  border-radius: 2px;
}

.process-editorial-lead {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.12rem);
  color: #554440;
  line-height: 1.65;
  margin: 0;
}

/* Timeline com 4 Pontos Conectados */
.process-editorial-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  margin-bottom: clamp(2.25rem, 3.5vw, 3.25rem);
  padding: 1rem 0 0;
}

/* Linha Conectora SVG Contínua no Desktop */
.process-track-svg {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
  z-index: 1;
}

.process-track-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Item de Cada Ponto */
.process-step-item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-step-icon-wrap {
  margin-bottom: 1.5rem;
  position: relative;
}

.process-icon-circle {
  width: clamp(66px, 5.5vw, 76px);
  height: clamp(66px, 5.5vw, 76px);
  border-radius: 50%;
  background: linear-gradient(135deg, #F5EAE0 0%, #E8D3C0 100%);
  border: 1.5px solid rgba(213, 156, 102, 0.55);
  box-shadow: 0 8px 20px rgba(66, 18, 9, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #421209;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-step-item:hover .process-icon-circle {
  transform: translateY(-4px) scale(1.04);
  border-color: #D59C66;
  box-shadow: 0 12px 28px rgba(66, 18, 9, 0.14);
}

.process-icon-circle svg,
.process-icon-circle .lucide {
  width: clamp(26px, 2.2vw, 32px);
  height: clamp(26px, 2.2vw, 32px);
  stroke-width: 1.75;
}

.process-step-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 260px;
}

.process-step-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.15rem + 0.3vw, 1.45rem);
  font-weight: 600;
  color: #421209;
  margin: 0 0 0.6rem;
  line-height: 1.25;
}

.process-step-text {
  font-family: var(--font-sans);
  font-size: clamp(0.88rem, 0.84rem + 0.15vw, 0.95rem);
  color: #63524E;
  line-height: 1.55;
  margin: 0;
}

/* CTA Seção 10 */
.process-cta-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.process-cta-wrap {
  display: flex;
  justify-content: center;
}

.process-cta-note p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.02rem, 0.96rem + 0.2vw, 1.18rem);
  color: #7B3318;
  margin: 0;
  text-align: center;
}

/* Transição Curva 10 para 11 */
.curve-process-to-atendimento {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
  background-color: transparent;
}

.curve-process-to-atendimento svg {
  width: 100%;
  height: clamp(65px, 8vw, 105px);
  display: block;
}

/* --------------------------------------------------------------------------
   11. SEÇÃO ATENDIMENTO EM SOROCABA & CONTATO
   -------------------------------------------------------------------------- */
.section-atendimento-editorial {
  background: radial-gradient(circle at 45% 35%, #56180C 0%, #421209 65%, #290A04 100%);
  color: var(--color-cream-base);
  padding: clamp(3.5rem, 5.5vw, 6rem) 0 clamp(4rem, 6vw, 6.5rem);
  position: relative;
}

.atendimento-editorial-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 4.5vw, 5rem);
  align-items: center;
}

.atendimento-editorial-content {
  display: flex;
  flex-direction: column;
}

.atendimento-editorial-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 1.75rem + 1.4vw, 3.2rem);
  font-weight: 600;
  color: #FAF6F0;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
}

.atendimento-accent-line {
  width: 50px;
  height: 2.5px;
  background-color: #D59C66;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.atendimento-editorial-lead {
  font-family: var(--font-sans);
  font-size: clamp(0.98rem, 0.94rem + 0.2vw, 1.08rem);
  color: rgba(250, 246, 240, 0.85);
  line-height: 1.65;
  margin: 0 0 clamp(2rem, 3vw, 2.5rem);
}

/* Lista de Contatos Diretos */
.atendimento-contacts-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.atendimento-contact-row {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease;
}

.atendimento-contact-row:hover {
  transform: translateX(4px);
}

.contact-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(213, 156, 102, 0.18);
  border: 1px solid rgba(213, 156, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D59C66;
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.atendimento-contact-row:hover .contact-icon-circle {
  background: #D59C66;
  color: #421209;
  border-color: #D59C66;
}

.contact-icon-circle svg,
.contact-icon-circle .lucide {
  width: 22px;
  height: 22px;
  stroke-width: 1.75;
}

.contact-text-wrap {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.82rem;
  color: rgba(213, 156, 102, 0.9);
  font-family: var(--font-sans);
  margin-bottom: 0.2rem;
  letter-spacing: 0.02em;
}

.contact-value {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1rem + 0.2vw, 1.25rem);
  font-weight: 600;
  color: #FAF6F0;
  line-height: 1.35;
}

/* CTAs da Seção 11 Lado a Lado */
.atendimento-ctas-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.btn-editorial-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: #FAF6F0;
  border: 1.5px solid #D59C66;
  border-radius: 9999px;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-editorial-outline:hover {
  background: rgba(213, 156, 102, 0.15);
  color: #D59C66;
  border-color: #E6B585;
  transform: translateY(-2px);
}

/* Divisor sutil */
.atendimento-divider {
  width: 100%;
  height: 1px;
  background: rgba(213, 156, 102, 0.2);
  margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
}

/* Faixa de Públicos Atendidos */
.atendimento-audiences-area {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.audiences-title {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: rgba(213, 156, 102, 0.85);
  margin: 0;
}

.audiences-items-row {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.5vw, 3rem);
}

.audience-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #FAF6F0;
}

.audience-item svg,
.audience-item .lucide {
  width: 20px;
  height: 20px;
  color: #D59C66;
  stroke-width: 1.75;
}

.audience-item span {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(250, 246, 240, 0.9);
}

/* Coluna Direita: Moldura da Imagem de Atendimento */
.atendimento-editorial-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.location-editorial-caption {
  display: block;
  width: 100%;
  max-width: 520px;
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 0.7rem + 0.1vw, 0.78rem);
  color: rgba(250, 246, 240, 0.45);
  letter-spacing: 0.04em;
  text-align: right;
  margin-top: 0.5rem;
}

.atendimento-image-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(213, 156, 102, 0.35);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
  background-color: #260803;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.atendimento-image-frame:hover {
  transform: translateY(-4px);
  border-color: rgba(213, 156, 102, 0.55);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.65);
}

.atendimento-featured-img {
  width: 100%;
  height: auto;
  aspect-ratio: 819 / 1024;
  object-fit: cover;
  display: block;
}

/* Transição Curva 11 para FAQ */
.curve-atendimento-to-faq {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
  background-color: transparent;
}

.curve-atendimento-to-faq svg {
  width: 100%;
  height: clamp(50px, 6vw, 85px);
  display: block;
}

/* Transição Curva FAQ para Fechamento Editorial */
.curve-faq-to-closing {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
  background-color: #F8F3ED;
}

.curve-faq-to-closing svg {
  width: 100%;
  height: clamp(55px, 6.5vw, 95px);
  display: block;
}

/* Responsividade Mobile e Tablet para Seções 10 e 11 */
@media (max-width: 960px) {
  .process-editorial-timeline {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding-left: 2rem;
  }

  .process-track-svg {
    display: none;
  }

  .process-editorial-timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    bottom: 36px;
    left: calc(2rem + 35px);
    width: 2px;
    background: linear-gradient(180deg, rgba(213, 156, 102, 0.8) 0%, rgba(213, 156, 102, 0.3) 100%);
    z-index: 1;
  }

  .process-step-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1.5rem;
  }

  .process-step-icon-wrap {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .process-step-body {
    align-items: flex-start;
    max-width: 100%;
  }

  .atendimento-editorial-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .atendimento-image-frame {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .process-editorial-timeline {
    padding-left: 0.5rem;
  }

  .process-editorial-timeline::before {
    left: calc(0.5rem + 30px);
  }

  .process-icon-circle {
    width: 60px;
    height: 60px;
  }

  .atendimento-ctas-row {
    flex-direction: column;
    align-items: stretch;
  }

  .atendimento-ctas-row .btn-editorial-champagne,
  .atendimento-ctas-row .btn-editorial-outline {
    width: 100%;
  }

  .audiences-items-row {
    gap: 1.25rem;
    flex-wrap: wrap;
  }
}

/* ==========================================================================
   12. SEÇÃO FAQ EDITORIAL: DÚVIDAS FREQUENTES SOBRE PERSONALIZADOS
   ========================================================================== */
.section-faq-editorial {
  background-color: #F8F3ED;
  color: #2E0A04;
  padding: clamp(4.5rem, 7vw, 7.5rem) 0 clamp(3.5rem, 5vw, 5rem);
  position: relative;
}

.faq-editorial-grid {
  display: grid;
  grid-template-columns: clamp(320px, 30vw, 400px) 1fr;
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: start;
}

/* Coluna Esquerda: Sidebar */
.faq-editorial-sidebar {
  display: flex;
  flex-direction: column;
}

.faq-sidebar-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.2vw, 3.1rem);
  font-weight: 700;
  line-height: 1.08;
  color: #421209;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
}

.faq-accent-line {
  width: 48px;
  height: 3px;
  background-color: #D59C66;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.faq-sidebar-copy {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: #5C4A45;
  line-height: 1.65;
  margin: 0 0 2.25rem;
  max-width: 320px;
}

/* Card de Contato Direto na Sidebar */
.faq-contact-card {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.faq-contact-icon-bubble {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #DEC1A3;
  color: #421209;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  box-shadow: 0 4px 12px rgba(66, 18, 9, 0.08);
}

.faq-contact-icon-bubble svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.faq-contact-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.4vw, 1.5rem);
  font-weight: 700;
  color: #421209;
  line-height: 1.2;
  margin: 0 0 1.15rem;
}

.btn-faq-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background-color: #421209;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.82rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(66, 18, 9, 0.18);
}

.btn-faq-whatsapp svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.2;
  color: #D59C66;
  transition: transform 0.2s ease;
}

.btn-faq-whatsapp:hover {
  background-color: #5C1A0D;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 18, 9, 0.26);
  color: #FFFFFF;
}

.btn-faq-whatsapp:hover svg:last-child {
  transform: translateX(3px);
}

.faq-contact-note {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: #7C6963;
  margin: 0.85rem 0 0;
  line-height: 1.4;
}

/* Coluna Direita: Accordion Editorial */
.faq-editorial-accordion {
  display: flex;
  flex-direction: column;
}

.faq-editorial-item {
  border-top: 1px solid rgba(66, 18, 9, 0.16);
  transition: background-color 0.25s ease;
}

.faq-editorial-item:last-child {
  border-bottom: 1px solid rgba(66, 18, 9, 0.16);
}

.faq-editorial-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: transparent;
  border: none;
  padding: clamp(1.2rem, 1.8vw, 1.55rem) 0;
  cursor: pointer;
  gap: 1.5rem;
  color: #2E0A04;
  outline: none;
  transition: color 0.2s ease;
}

.faq-editorial-btn:focus-visible {
  outline: 2px solid #D59C66;
  outline-offset: 4px;
  border-radius: 4px;
}

.faq-question-text {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.1rem + 0.35vw, 1.35rem);
  font-weight: 600;
  color: #2E0A04;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.faq-editorial-btn:hover .faq-question-text,
.faq-editorial-item.active .faq-question-text {
  color: #5C1A0D;
}

/* Ícone de Toggle + / - Editorial */
.faq-toggle-icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-toggle-bar {
  position: absolute;
  background-color: #421209;
  border-radius: 1px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, background-color 0.2s ease;
}

.faq-bar-h {
  width: 14px;
  height: 1.75px;
}

.faq-bar-v {
  width: 1.75px;
  height: 14px;
}

.faq-editorial-item.active .faq-bar-v {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-editorial-item.active .faq-bar-h {
  background-color: #D59C66;
}

/* Resposta do FAQ */
.faq-editorial-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}

.faq-editorial-item.active .faq-editorial-ans {
  max-height: 350px;
  opacity: 1;
}

.faq-ans-inner {
  padding: 0 0 clamp(1.2rem, 1.6vw, 1.5rem) 0;
  max-width: 95%;
}

.faq-ans-inner p {
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 0.9rem + 0.15vw, 1.02rem);
  color: #5A4540;
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   13. SEÇÃO FECHAMENTO & CTA FINAL: SUA PRÓXIMA IDEIA PODE COMEÇAR AQUI
   ========================================================================== */
.section-closing-editorial {
  background: radial-gradient(ellipse at 50% 30%, #4D140A 0%, #300A04 55%, #200502 100%);
  color: #F8F3ED;
  padding: clamp(5rem, 8vw, 8.5rem) 0 clamp(4rem, 6vw, 6rem);
  position: relative;
  overflow: hidden;
}

/* Marca D'água Monumental SP */
.closing-watermark-sp {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(14rem, 28vw, 34rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: #D59C66;
  opacity: 0.07;
  user-select: none;
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
}

/* Detalhes Botânicos Dourados */
.closing-botanical-decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.closing-botanical-decor-left {
  top: 10%;
  left: clamp(1rem, 5vw, 6rem);
  width: clamp(80px, 9vw, 130px);
}

.closing-botanical-decor-right {
  bottom: 8%;
  right: clamp(1rem, 5vw, 6rem);
  width: clamp(80px, 9vw, 130px);
}

.closing-editorial-content {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.closing-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-align: center;
  margin: 0 0 1rem;
}

.closing-accent-bar {
  width: 48px;
  height: 3px;
  background-color: #D59C66;
  border-radius: 2px;
  margin: 0.25rem auto 1.5rem;
}

.closing-copy {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.05vw, 1.15rem);
  color: #E6D0C5;
  line-height: 1.7;
  max-width: 660px;
  margin: 0 auto clamp(2.2rem, 3.5vw, 3rem);
  text-align: center;
}

/* CTAs Duplos */
.closing-actions-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.btn-closing-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #E2B07F 0%, #D59C66 100%);
  color: #2B0A04;
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  padding: 0.95rem 2.2rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(213, 156, 102, 0.25);
}

.btn-closing-primary svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.2;
}

.btn-closing-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(213, 156, 102, 0.38);
  filter: brightness(1.05);
  color: #2B0A04;
}

.btn-closing-catalog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: transparent;
  border: 1.5px solid #D59C66;
  color: #F8F3ED;
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  padding: 0.92rem 2.1rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-closing-catalog svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  color: #D59C66;
}

.btn-closing-catalog:hover {
  background: rgba(213, 156, 102, 0.12);
  border-color: #E2B07F;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Faixa de Informações: 3 Colunas Centralizadas */
.closing-info-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 3rem);
  flex-wrap: wrap;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  width: 100%;
}

.closing-info-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: inherit;
  text-align: left;
}

.closing-info-link:hover .closing-info-val {
  color: #D59C66;
}

.closing-info-link:hover .closing-info-icon-badge {
  transform: scale(1.08);
}

.closing-info-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #D59C66;
  color: #2B0A04;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.closing-info-icon-badge svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.2;
}

.closing-info-text {
  display: flex;
  flex-direction: column;
}

.closing-info-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: #D59C66;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
  font-weight: 600;
}

.closing-info-val {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.closing-info-separator {
  width: 1px;
  height: 34px;
  background: rgba(213, 156, 102, 0.22);
}

/* Assinatura Institucional da Marca */
.closing-brand-signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(213, 156, 102, 0.16);
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.closing-signature-title {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 600;
  color: #D59C66;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.95;
}

.closing-signature-tagline {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 500;
  color: #BCA29A;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* Responsividade para Seções 12 e 13 */
@media (max-width: 960px) {
  .faq-editorial-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .faq-editorial-sidebar {
    display: contents;
  }

  .faq-sidebar-title {
    order: 1;
  }

  .faq-accent-line {
    order: 2;
  }

  .faq-sidebar-copy {
    order: 3;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .faq-editorial-accordion {
    order: 4;
    width: 100%;
  }

  .faq-contact-card {
    order: 5;
    margin-top: 2.5rem;
    width: 100%;
    max-width: 440px;
  }

  .closing-watermark-sp {
    font-size: clamp(10rem, 36vw, 18rem);
  }
}

@media (max-width: 640px) {
  .closing-actions-row {
    flex-direction: column;
    width: 100%;
  }

  .btn-closing-primary,
  .btn-closing-catalog {
    width: 100%;
    max-width: 360px;
  }

  .closing-info-strip {
    flex-direction: column;
    gap: 1.25rem;
  }

  .closing-info-separator {
    display: none;
  }

  .closing-info-item {
    width: 100%;
    max-width: 280px;
    justify-content: flex-start;
  }

  .closing-botanical-decor {
    opacity: 0.2;
  }
}

/* ==========================================================================
   16. FOOTER FINAL: NORTH STAR EDITORIAL
   ========================================================================== */
.footer-top-curve {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
  margin-bottom: -1px;
  background-color: #200502;
}

.footer-top-curve svg {
  width: 100%;
  height: clamp(38px, 4.5vw, 62px);
  display: block;
}

.site-footer {
  background: radial-gradient(ellipse at 50% 20%, #461208 0%, #300C06 55%, #1F0502 100%);
  color: #F8F3ED;
  padding: clamp(3.5rem, 5.5vw, 5.5rem) 0 2rem;
  position: relative;
  overflow: hidden;
  font-size: var(--text-sm);
  border-top: none;
}

.site-footer .container {
  max-width: 1380px;
  padding-left: clamp(2rem, 5.5vw, 5.5rem);
  padding-right: clamp(2rem, 5.5vw, 5.5rem);
  position: relative;
  z-index: 2;
}

/* Camada Decorativa dos Ramos Botânicos Dourados (Reutilização de 1 único asset transparente) */
.footer-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 1;
}

.footer-leaf {
  position: absolute;
  pointer-events: none;
  user-select: none;
  line-height: 0;
  z-index: 1;
}

.footer-leaf img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.35));
}

/* Ramo Esquerdo */
.footer-leaf--left {
  top: clamp(22px, 3.5vw, 48px);
  left: clamp(14px, 2vw, 30px);
  width: clamp(130px, 11vw, 190px);
  transform: rotate(8deg);
  opacity: 0.85;
}

/* Ramo Direito (Espelhado com scaleX(-1)) */
.footer-leaf--right {
  top: clamp(22px, 3.5vw, 48px);
  right: clamp(14px, 2vw, 30px);
  width: clamp(130px, 11vw, 190px);
  transform: scaleX(-1) rotate(8deg);
  opacity: 0.85;
}

/* Marca D'água Monumental SP no Fundo */
.footer-watermark-sp {
  position: absolute;
  right: 5%;
  top: 8%;
  font-family: var(--font-serif);
  font-size: clamp(16rem, 28vw, 34rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: #D59C66;
  opacity: 0.045;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  white-space: nowrap;
}

/* Grid Editorial de 4 Colunas */
.footer-editorial-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.85fr 0.95fr 1.25fr;
  gap: clamp(1.8rem, 3vw, 3.5rem);
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
  position: relative;
  z-index: 2;
}

.footer-nav-cols-group {
  display: contents;
}

/* Divisores Verticais Discretos Entre as Colunas */
.footer-col-links,
.footer-col-solutions,
.footer-col-contact {
  border-left: 1px solid rgba(213, 156, 102, 0.14);
  padding-left: clamp(1.5rem, 2.2vw, 2.5rem);
}

/* Coluna 1: Marca */
.footer-col-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand-link {
  display: inline-block;
  margin-bottom: 1.15rem;
  outline: none;
}

.footer-brand-link:focus-visible {
  outline: 2px solid #D59C66;
  outline-offset: 4px;
  border-radius: 4px;
}

.footer-logo-img {
  height: clamp(48px, 5.2vw, 64px);
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand-text {
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 0.95vw, 1rem);
  color: #E6D0C5;
  line-height: 1.65;
  max-width: 380px;
  margin: 0 0 1rem;
}

.footer-brand-accent-line {
  width: 42px;
  height: 2.5px;
  background-color: #D59C66;
  border-radius: 1px;
  margin-bottom: 0.85rem;
}

.footer-brand-tagline {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #D59C66;
  text-transform: uppercase;
  margin: 0 0 1.8rem;
  opacity: 0.95;
}

.footer-brand-ctas {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.btn-footer-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #D59C66;
  color: #421209;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.8rem 1.45rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.btn-footer-primary svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.2;
}

.btn-footer-primary:hover {
  background: #E2B07F;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(213, 156, 102, 0.35);
  color: #2E0A04;
}

.btn-footer-primary:hover svg:last-child {
  transform: translateX(3px);
}

.btn-footer-catalog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: transparent;
  border: 1.5px solid #D59C66;
  color: #F8F3ED;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.76rem 1.35rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-footer-catalog svg {
  width: 17px;
  height: 17px;
  stroke-width: 2;
  color: #D59C66;
}

.btn-footer-catalog:hover {
  background: rgba(213, 156, 102, 0.12);
  border-color: #E2B07F;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Colunas 2 e 3: Títulos e Listas */
.footer-col-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.35vw, 1.45rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}

.footer-title-accent {
  width: 30px;
  height: 2px;
  background-color: #D59C66;
  border-radius: 1px;
  margin-bottom: 1.25rem;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list a {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: #D9C3BA;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.25rem 0;
  transition: color 0.2s ease, transform 0.2s ease;
  outline: none;
}

.footer-nav-list a:hover {
  color: #D59C66;
  transform: translateX(3px);
}

.footer-nav-list a:focus-visible {
  outline: 2px solid #D59C66;
  outline-offset: 3px;
  border-radius: 2px;
}

/* Coluna 4: Contatos e Instagram */
.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  outline: none;
}

.footer-contact-link:focus-visible {
  outline: 2px solid #D59C66;
  outline-offset: 4px;
  border-radius: 4px;
}

.footer-contact-icon-bubble {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #D59C66;
  color: #351008;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer-contact-icon-bubble svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.2;
}

.footer-contact-link:hover .footer-contact-icon-bubble {
  transform: scale(1.08);
}

.footer-contact-link:hover .footer-contact-val {
  color: #D59C66;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
}

.footer-contact-type {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: #D59C66;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.footer-contact-val {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.footer-contact-address .footer-contact-val {
  font-size: 0.84rem;
  font-weight: 400;
  color: #D9C3BA;
  line-height: 1.4;
}

/* Bloco do Instagram */
.footer-instagram-block {
  padding-top: 1.15rem;
  border-top: 1px solid rgba(213, 156, 102, 0.16);
}

.footer-instagram-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  outline: none;
}

.footer-instagram-link:focus-visible {
  outline: 2px solid #D59C66;
  outline-offset: 4px;
  border-radius: 4px;
}

.footer-instagram-icon-box {
  width: 32px;
  height: 32px;
  color: #D59C66;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.25s ease;
}

.footer-instagram-icon-box svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.footer-instagram-link:hover .footer-instagram-icon-box {
  transform: scale(1.12);
  color: #E2B07F;
}

.footer-instagram-meta {
  display: flex;
  flex-direction: column;
}

.footer-instagram-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: #BCA29A;
  line-height: 1.2;
}

.footer-instagram-handle {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.footer-instagram-link:hover .footer-instagram-handle {
  color: #D59C66;
}

/* Linha Divisória e Barra Inferior */
.footer-horizontal-divider {
  width: 100%;
  height: 1px;
  background: rgba(213, 156, 102, 0.16);
  margin-bottom: 1.75rem;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: #BCA29A;
  position: relative;
  z-index: 2;
}

.footer-legal-copy {
  font-family: var(--font-sans);
  color: #BCA29A;
}

.footer-automasix-link {
  margin-left: 0.45rem;
  color: inherit;
  opacity: 0.68;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-automasix-link:hover,
.footer-automasix-link:focus-visible {
  color: #D59C66;
  opacity: 1;
}

.footer-bottom-brand-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.footer-bottom-mini-line {
  width: 32px;
  height: 2px;
  background-color: #D59C66;
  border-radius: 1px;
}

.footer-bottom-brand-badge span {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #D59C66;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-location-indicator {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-sans);
  color: #E6D0C5;
  font-weight: 500;
}

.footer-location-indicator svg {
  width: 15px;
  height: 15px;
  color: #D59C66;
}

/* --------------------------------------------------------------------------
   RESPONSIVIDADE DO FOOTER E SEÇÕES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-editorial-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

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

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

  .product-showcase-layout,
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .features-tri-grid {
    grid-template-columns: 1fr;
  }

  .footer-editorial-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2.5rem;
  }

  .footer-col-links {
    border-left: 1px solid rgba(213, 156, 102, 0.14);
    padding-left: clamp(1.5rem, 2.2vw, 2.5rem);
  }

  .footer-col-solutions {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(213, 156, 102, 0.14);
    padding-top: 2rem;
  }

  .footer-col-contact {
    border-left: 1px solid rgba(213, 156, 102, 0.14);
    padding-left: clamp(1.5rem, 2.2vw, 2.5rem);
    border-top: 1px solid rgba(213, 156, 102, 0.14);
    padding-top: 2rem;
  }

  .footer-watermark-sp {
    font-size: clamp(12rem, 30vw, 20rem);
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 1.15rem;
  }

  .footer-leaf--left,
  .footer-leaf--right {
    width: clamp(110px, 13vw, 150px);
    opacity: 0.65;
  }
}

@media (max-width: 768px) {
  .header-nav,
  .header-actions .btn-primary {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

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

  .pillars-grid,
  .process-grid,
  .portfolio-grid,
  .diff-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 899px) {
  .tshirts-tri-editorial {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .tshirt-app-col:not(:last-child) {
    padding-right: 0;
    padding-bottom: 2rem;
    border-right: none;
    border-bottom: 1px solid rgba(213, 156, 102, 0.18);
  }
}

@media (max-width: 640px) {
  .solutions-cta-wrap,
  .tshirts-cta-wrap {
    width: 100%;
  }

  .btn-editorial-bordo,
  .btn-editorial-champagne,
  .btn-portfolio-instagram {
    width: 100%;
    text-align: center;
    padding: 1.05rem 1.5rem;
  }

  .portfolio-cta-wrap {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .desktop-break {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

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

  .hero-trust-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .hero-trust-bar .trust-separator {
    display: none;
  }

  /* Footer Mobile: Links + Soluções em 2 Colunas Lado a Lado */
  .footer-editorial-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .footer-nav-cols-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    border-top: 1px solid rgba(213, 156, 102, 0.14);
    padding-top: 1.75rem;
  }

  .footer-col-links,
  .footer-col-solutions {
    border-left: none;
    padding-left: 0;
    border-top: none;
    padding-top: 0;
  }

  .footer-col-contact {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(213, 156, 102, 0.14);
    padding-top: 1.75rem;
    width: 100%;
  }

  .footer-brand-ctas {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .btn-footer-primary,
  .btn-footer-catalog {
    width: 100%;
    max-width: 100%;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-top-curve svg {
    height: clamp(26px, 5.5vw, 36px);
  }

  .footer-leaf--left {
    top: clamp(14px, 3vw, 24px);
    left: 8px;
    width: clamp(75px, 19vw, 100px);
    opacity: 0.4;
  }

  .footer-leaf--right {
    top: clamp(14px, 3vw, 24px);
    right: 8px;
    width: clamp(75px, 19vw, 100px);
    opacity: 0.4;
  }
}


