/* ============================================================
   DECORE DESIGN ESSENCE — Landing Page Stylesheet
   Paleta: #F68822 · #F7A01A · #F59817 · #000000 · #FFFFFF
   Fontes: Cormorant Garamond (display) · Montserrat (body)
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --gold-1: #F68822;
  --gold-2: #F7A01A;
  --gold-3: #F59817;
  --black: #000000;
  --dark: #0b0b0b;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #232323;
  --white: #ffffff;
  --gray-1: #f5f3ef;
  --gray-text: #aaaaaa;
  --gray-mid: #555555;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 32px;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.25);
  --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

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

ul {
  list-style: none;
}

/* ── Container ── */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.07);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  color: var(--black);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(246, 136, 34, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(246, 136, 34, 0.5);
}

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

.btn-outline:hover {
  border-color: var(--gold-1);
  color: var(--gold-1);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--black);
  border: 2px solid rgba(0, 0, 0, 0.3);
}

.btn-outline-light:hover {
  border-color: var(--black);
  background: rgba(0, 0, 0, 0.08);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 0.85rem;
}

/* ── Typography Helpers ── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-2);
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--gray-text);
  max-width: 540px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header--light .section-title {
  color: var(--white);
}

.eyebrow--light {
  color: var(--gold-2) !important;
}

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

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

#navbar.scrolled {
  background: rgba(11, 11, 11, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  /* Safari support */
  padding: 12px 0;
  border-bottom: 1px solid rgba(246, 136, 34, 0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-1);
  transition: width var(--transition);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.nav-cta.active {
  color: var(--black) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  color: var(--black) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(246, 136, 34, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  /* Slightly increased gap */
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  /* Better touch target */
}

.nav-toggle span {
  display: block;
  width: 26px;
  /* Slightly wider for better presence */
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 1px;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

#hero:hover .hero-img {
  transform: scale(1.0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.65) 50%,
      rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.hero-text-content {
  max-width: 680px;
  animation: heroFadeUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 20px;
  animation: heroFadeUp 1.2s 0.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  animation: heroFadeUp 1.2s 0.35s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-2);
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 40px;
  animation: heroFadeUp 1.2s 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: heroFadeUp 1.2s 0.65s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-video {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroFadeUp 1.2s 0.65s cubic-bezier(0.4, 0, 0.2, 1) both;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  /* Subtle white border */
}

.hero-video.hide-mobile {
  height: 384px;
  /* Fixed height to match typical text content height */
  width: auto;
  aspect-ratio: 9/16;
  flex-shrink: 0;
}

.hero-video.hide-desktop {
  max-width: 260px;
  aspect-ratio: 9/16;
  margin-top: 10px;
  margin-bottom: 30px;
  display: none;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-1);
  color: var(--black);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(246, 136, 34, 0.4);
  z-index: 5;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--gold-2);
}

.video-play-btn svg {
  width: 40px;
  height: 40px;
  margin-left: 2px;
  /* optical centering for triangle icon */
}

.video-play-btn.playing {
  opacity: 0;
}



/* ============================================================
   BRAND STRIP
   ============================================================ */
.brand-strip {
  background: var(--gold-1);
  padding: 14px 0;
  overflow: hidden;
  /* Garante que o usuário não consiga selecionar o texto (melhora o visual do banner) */
  user-select: none;
}

.strip-inner {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  /* Mais texto significa que leva mais tempo para atravessar a tela. Aumentado para 35s para leitura agradável. */
  animation: marquee 35s linear infinite;
  width: max-content;
}

.strip-inner span {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
}

.strip-inner .sep {
  color: var(--dark);
  opacity: 0.5;
}

/* O conteúdo agora é duplicado perfeitamente no HTML (4 blocos). Ao mover 50%, ele volta sem salto. */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   SOBRE
   ============================================================ */
.section-sobre {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
}

.section-sobre::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246, 136, 34, 0.3), transparent);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-text .section-title {
  margin-bottom: 24px;
}

.sobre-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 16px;
  line-height: 1.8;
}

.sobre-desc strong {
  color: var(--white);
}

.sobre-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 36px 0;
  padding: 28px;
  border: 1px solid rgba(246, 136, 34, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}

.stat {
  text-align: center;
  flex: 1;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold-1);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
  line-height: 1.4;
}

.stat-div {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
}

.sobre-image-wrap {
  position: relative;
}

.sobre-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}

.sobre-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(246, 136, 34, 0.2);
}

.sobre-img-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.sobre-img-frame:hover img {
  transform: scale(1.03);
}

.sobre-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(246, 136, 34, 0.4);
}

.badge-line1,
.badge-line2 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

/* ============================================================
   PRODUTOS
   ============================================================ */
.section-produtos {
  padding: 120px 0;
  background: var(--dark-2);
}

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

.produto-card {
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

.produto-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(246, 136, 34, 0.25);
}

.produto-card.destaque {
  border-color: rgba(246, 136, 34, 0.3);
}

.produto-badge-destaque {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-xl);
}

.produto-img-wrap {
  position: relative;
  overflow: hidden;
  height: auto;
  aspect-ratio: 9/16;
  width: 100%;
  margin: 0px auto 0;
  border-radius: var(--radius-md);
  /* Added small radius for inner video container */
}

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

.produto-card:hover .produto-img-wrap video {
  transform: scale(1.06);
}

.produto-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 10;
  pointer-events: none;
  /* Let clicks pass to the video/button by default */
}

.produto-overlay .btn-produto-cta {
  pointer-events: auto;
  /* Re-enable for the actual button */
}

/* Stop scaling while video is playing */
.video-playing video {
  transform: scale(1) !important;
}

.video-playing video {
  transform: scale(1) !important;
}

.btn-produto-cta {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: transform 0.2s;
}

.btn-produto-cta:hover {
  transform: scale(1.04);
}

.produto-info {
  padding: 24px;
}

.produto-cat {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 8px;
}

.produto-nome {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

.produto-desc {
  font-size: 0.82rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.produto-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.produto-tags span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(246, 136, 34, 0.3);
  color: rgba(246, 136, 34, 0.8);
  border-radius: var(--radius-xl);
}

.produtos-cta-wrap {
  text-align: center;
  margin-top: 52px;
}

/* ============================================================
   MATERIAIS
   ============================================================ */
.section-materiais {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.materiais-bg {
  position: absolute;
  inset: 0;
}

.materiais-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.materiais-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.8) 100%);
}

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

.materiais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.material-card {
  padding: 32px 24px;
  border: 1px solid rgba(246, 136, 34, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  /* Safari support */
}

.material-card:hover {
  background: rgba(246, 136, 34, 0.08);
  border-color: rgba(246, 136, 34, 0.5);
  transform: translateY(-6px);
}

.material-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.material-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.material-card p {
  font-size: 0.82rem;
  color: var(--gray-text);
  line-height: 1.75;
}

/* ============================================================
   CONSULTORIA
   ============================================================ */
.section-consultoria {
  padding: 120px 0;
  background: var(--dark);
}

.consultoria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.consultoria-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.consultoria-img-wrap.hero-video {
  max-width: 300px;
  aspect-ratio: 9/16;
  width: 100%;
  margin: 0 auto;
}

.consultoria-img-wrap.hero-video video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.consultoria-img-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.consultoria-img-wrap:hover img {
  transform: scale(1.03);
}

.consultoria-img-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), transparent);
}

.consultoria-img-badge p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.4;
}

.consultoria-img-badge em {
  color: var(--gold-2);
  font-style: italic;
}

.consultoria-text {
  padding-right: 20px;
}

.consultoria-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.85;
  margin-bottom: 32px;
}

.consultoria-lista {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.consultoria-lista li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.lista-icon {
  color: var(--gold-1);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 4px;
}


/* ============================================================
   CTA BANNER
   ============================================================ */
.section-cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-3) 100%);
  position: relative;
  overflow: hidden;
}

.section-cta-banner::before {
  content: '"';
  position: absolute;
  font-family: var(--font-display);
  font-size: 30rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.05);
  top: -80px;
  right: -20px;
  line-height: 1;
  pointer-events: none;
}

.cta-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 12px;
}

.cta-banner-text h2 em {
  font-style: italic;
}

.cta-banner-text p {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.65);
}

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

.cta-banner-actions .btn-primary {
  background: var(--black);
  color: var(--gold-1);
  border-color: var(--black);
  box-shadow: none;
}

.cta-banner-actions .btn-primary:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cta-banner-actions .btn-outline-light {
  color: var(--black);
  border-color: rgba(0, 0, 0, 0.35);
}

/* ============================================================
   LOCALIZAÇÃO
   ============================================================ */
.section-contato {
  padding: 120px 0;
  background: var(--dark);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contato-dados {
  margin: 32px 0;
}

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

.dado-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.dado-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 4px;
}

.dado-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.dado-item a {
  color: var(--gold-2);
  transition: color var(--transition);
}

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

.contato-mapa {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(246, 136, 34, 0.15);
  box-shadow: var(--shadow-card);
}

.contato-mapa iframe {
  width: 100%;
  height: 440px;
  border: none;
  display: block;
  filter: grayscale(60%) invert(90%) hue-rotate(175deg);
  opacity: 0.85;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--black);
  border-top: 1px solid rgba(246, 136, 34, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 100px 0 80px;
}

.footer-brand .logo-decore {
  font-size: 1.6rem;
}

.footer-brand .logo-design {
  font-size: 0.7rem;
}

.footer-tagline {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--gray-text);
  line-height: 1.7;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold-1);
  color: var(--gold-1);
  transform: translateY(-2px);
}

.footer-links h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.82rem;
  color: var(--gray-text);
  transition: color var(--transition);
}

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

.footer-contato h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 20px;
}

.footer-contato p {
  font-size: 0.82rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(246, 136, 34, 0.1);
  border: 1px solid rgba(246, 136, 34, 0.3);
  border-radius: var(--radius-sm);
  color: var(--gold-1);
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}

.footer-wa-btn:hover {
  background: rgba(246, 136, 34, 0.2);
  border-color: var(--gold-1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: var(--gray-text);
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: floatPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.6);
}

@keyframes floatPulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.7);
  }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.hide-sm {
  display: initial;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sobre-image-wrap {
    order: -1;
  }

  .sobre-img-frame img {
    height: 380px;
  }

  .consultoria-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .consultoria-img-wrap img {
    height: 360px;
  }

  .consultoria-text {
    padding-right: 0;
  }

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

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

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

@media (max-width: 768px) {
  #hero {
    height: auto;
    min-height: 100vh;
    padding-top: 100px;
    /* Clear fixed navbar */
    padding-bottom: 60px;
    display: flex;
    align-items: center;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 15px;
    /* Increased gap between items */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 11, 11, 0.98);
    padding: 40px 20px;
    /* Increased vertical padding */
    border-top: 1px solid rgba(246, 136, 34, 0.2);
    width: 100%;
    left: 0;
    transform: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 16px 0;
    /* Increased padding for better separation */
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
    text-align: center;
    /* Centering text for mobile */
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-cta {
    margin-top: 24px;
    display: inline-flex;
    justify-content: center;
    width: fit-content;
    padding: 14px 48px !important;
    border-bottom: none !important;
  }

  .nav-links li:last-child {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  #navbar {
    position: relative;
  }

  .container,
  .hero-content {
    width: 100%;
    padding: 0 5%;
    margin-top: 0;
    gap: 20px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-video.hide-mobile {
    display: none;
  }

  .hero-video.hide-desktop,
  .consultoria-img-wrap.hero-video {
    display: flex;
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hide-sm {
    display: none;
  }

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


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

  .sobre-stats {
    flex-direction: column;
    gap: 16px;
  }

  .stat-div {
    width: 80%;
    height: 1px;
  }

  /* Centralizar botões específicos no Mobile */
  .sobre-text,
  .consultoria-text,
  .produtos-cta-wrap {
    text-align: center;
  }

  #sobre-cta,
  #produtos-cta-catalogo,
  #consultoria-cta {
    margin: 0 auto;
    display: inline-flex;
    justify-content: center;
  }

  .cta-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-actions {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    /* Slightly increased gap */
    padding: 80px 5% 60px;
    /* Increased vertical padding and added horizontal margin */
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }

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