﻿/*
 * â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
 *  MEGAHPROJ â€” DESIGN SYSTEM
 *  Baseado no Manual de Identidade Visual 2026
 *  Bloco 1.1 â€” design-system.css
 * â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
 */


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   VARIÃVEIS â€” Brand Manual Megahproj 2026
   Regra: â‰¥ 70% branco | BordÃ´ â‰¤ 5%
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  /* Paleta Oficial */
  --megah-white:       #ffffff;   /* Dominante â‰¥ 70% */
  --megah-yellow:      #fde100;   /* Principal (Pantone 107 C) */
  --megah-yellow-alt:  #ffcc00;   /* Principal Alt (Pantone 109 C) */
  --megah-gray:        #5b6770;   /* Neutro (Pantone 424 C) */
  --megah-gray-light:  #a7a9ac;   /* Neutro claro */
  --megah-black:       #111111;   /* Tipografia / Preto Absoluto */
  --megah-burgundy:    #990000;   /* Destaque â€” uso â‰¤ 5% (Pantone 187 C equiv.) */

  /* UI Auxiliares */
  --bg-light:          #f8f9fa;
  --bg-card:           #ffffff;
  --text-muted:        #6c757d;
  --border:            #e9ecef;
  --border-dark:       #dee2e6;

  /* Tipografia */
  --font:              'Montserrat', sans-serif;

  /* Layout */
  --container-width:   1200px;
  --section-y:         80px;

  /* Header */
  --topbar-h:          38px;
  --navbar-h:          68px;
  --header-h:          calc(var(--topbar-h) + var(--navbar-h));

  /* TransiÃ§Ãµes */
  --ease:              0.3s ease;

  /* Sombras */
  --shadow-sm:         0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:         0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:         0 8px 32px rgba(0,0,0,0.18);

  /* Bordas */
  --radius-sm:         3px;
  --radius-md:         6px;
  --radius-lg:         12px;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   RESET MODERNO
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background-color: var(--megah-white);
  color: var(--megah-black);
  line-height: 1.6;
  padding-top: var(--header-h); /* offset para header fixo */
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--ease), opacity var(--ease);
}

ul, ol { list-style: none; }

button {
  cursor: pointer;
  font-family: var(--font);
  border: none;
  background: none;
}

input, select, textarea {
  font-family: var(--font);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   CONTAINER & LAYOUT
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-y) 0;
}

.section--light {
  background-color: var(--bg-light);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   TIPOGRAFIA â€” Brand Manual Megahproj 2026
   Montserrat 900 (Black)     â†’ TÃ­tulos principais
   Montserrat 600 (SemiBold)  â†’ SubtÃ­tulos / BotÃµes
   Montserrat 400 (Regular)   â†’ Texto de Leitura e DescriÃ§Ãµes
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  line-height: 1.2;
  color: var(--megah-black);
}

h1 { font-weight: 900; font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-weight: 600; font-size: clamp(1.1rem, 2vw, 1.6rem); }
h4 { font-weight: 600; font-size: 1.1rem; }
h5 { font-weight: 600; font-size: 1rem; }

p {
  font-weight: 400; /* Regular â€” Brand Manual: Montserrat 400 para texto de leitura */
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

p:last-child { margin-bottom: 0; }

/* TÃ­tulos de seÃ§Ã£o com acento bordÃ´ */
.section-title {
  font-weight: 900;
  color: var(--megah-black);
  text-align: center;
  margin-bottom: 12px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--megah-yellow) 0%, var(--megah-burgundy) 100%);
  border-radius: 2px;
  margin: 12px auto 0;
}

.section-subtitle {
  text-align: center;
  font-weight: 400; /* Regular â€” Brand Manual: texto descritivo usa Montserrat 400 */
  color: var(--text-muted);
  margin-bottom: 48px;
  font-size: 1.05rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   BOTÃ•ES
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--megah-burgundy);
  color: var(--megah-white);
  border-color: var(--megah-burgundy);
}
.btn-primary:hover {
  background: #7a0000;
  border-color: #7a0000;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--megah-yellow);
  color: var(--megah-black);
  border-color: var(--megah-yellow);
}
.btn-secondary:hover {
  background: var(--megah-yellow-alt);
  border-color: var(--megah-yellow-alt);
  transform: translateY(-1px);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   UTILITÃRIOS
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.text-center { text-align: center; }
.text-left   { text-align: left; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SCROLL REVEAL (Intersection Observer)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Delay para animaÃ§Ãµes em sequÃªncia */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   BOTÃƒO WHATSAPP FLUTUANTE
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--megah-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 500;
  transition: transform var(--ease), box-shadow var(--ease);
  animation: whatsapp-pulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50%       { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65); }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   BOTÃƒO SCROLL-TO-TOP
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.scroll-top {
  position: fixed;
  bottom: 96px;
  right: 32px;
  width: 42px;
  height: 42px;
  background: var(--megah-black);
  color: var(--megah-white);
  border: none;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--ease), transform var(--ease), background var(--ease);
  cursor: pointer;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--megah-burgundy);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   RESPONSIVIDADE
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1200px) {
  .container { padding: 0 20px; }
}

@media (max-width: 992px) {
  :root {
    --section-y: 60px;
    --navbar-h:  64px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-y: 48px;
  }
  .section-subtitle { margin-bottom: 32px; }
}

@media (max-width: 480px) {
  :root {
    --topbar-h: 0px; /* topbar oculta em mobile */
    --header-h: var(--navbar-h);
  }
}
/*
 * â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
 *  MEGAHPROJ â€” HEADER
 *  Bloco 1.2 â€” header.css
 *  Fiel ao visual de megahproj.com/wp
 * â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
 */

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SITE HEADER â€” WRAPPER (position: fixed)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* Sombra suave reforÃ§ada ao scroll */
  transition: box-shadow var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   TOPBAR â€” Faixa amarela superior
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.topbar {
  /* Gradiente: Amarelo 109C (#FFCC00) esquerda â†’ Branco direita (conforme WP) */
  background: linear-gradient(to right, #ffcc00 0%, #ffffff 100%);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.topbar .container {
  display: flex;
  justify-content: flex-end;
  /* tudo alinhado Ã  direita */
  align-items: center;
  width: 100%;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--megah-black);
}

.topbar-contact a {
  color: var(--megah-black);
}

.topbar-contact a:hover {
  text-decoration: underline;
}

.topbar-sep {
  color: var(--megah-black);
  opacity: 0.4;
  font-size: 0.85rem;
}

.topbar-socials {
  display: flex;
  align-items: center;
  gap: 5px;
}

.topbar-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background-color: var(--megah-black);
  color: var(--megah-white);
  border-radius: 3px;
  font-size: 0.72rem;
  transition: background-color var(--ease), transform var(--ease);
  flex-shrink: 0;
}

.topbar-socials a:hover {
  background-color: var(--megah-burgundy);
  transform: translateY(-1px);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   NAVBAR â€” Barra de navegaÃ§Ã£o principal
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.navbar {
  /* Gradiente espelhado: Branco esquerda â†’ Amarelo 109C (#FFCC00) direita (conforme WP) */
  background: linear-gradient(to right, #ffffff 0%, #ffcc00 100%);
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  border-top: none;
  /* sem borda â€” o gradiente jÃ¡ cria separaÃ§Ã£o visual */
}

.navbar-container {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo â€” sem container, sem border, direto no fundo branco (brand manual) */
.navbar-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 40px;
  width: auto;
  display: block;
  /* Sem background, sem padding, sem border-radius â€” regra brand manual */
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   NAV LINKS
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: flex-start;
}

.nav-link {
  display: block;
  padding: 7px 13px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--megah-black);
  border-radius: var(--radius-sm);
  transition: background-color var(--ease), color var(--ease);
  white-space: nowrap;
  letter-spacing: 0.1px;
}

.nav-link:hover {
  background-color: var(--megah-burgundy);
  color: var(--megah-white);
}

/* Item ativo â€” fundo preto, texto branco (conforme screenshot) */
.nav-link.active {
  background-color: var(--megah-black);
  color: var(--megah-white);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   NAV TOOLS â€” Search + Language
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Search Box */
.search-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #cccccc;
  border-radius: var(--radius-sm);
  height: 32px;
  position: relative; /* Ã¢ncora para o dropdown */
}

.search-input {
  border: none;
  padding: 0 10px;
  font-family: var(--font);
  font-size: 0.8rem;
  width: 130px;
  background: var(--megah-white);
  color: var(--megah-black);
  height: 100%;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.search-input:focus {
  outline: none;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-btn {
  border: none;
  background: var(--megah-black);
  color: var(--megah-white);
  padding: 0 10px;
  height: 100%;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  transition: background var(--ease);
  cursor: pointer;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.search-btn:hover {
  background: var(--megah-burgundy);
}




/* Language Toggle */
.lang-wrap {
  position: relative;
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--megah-black);
  width: 32px;
  height: 32px;
  /* mesma altura da search bar */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  /* Ã­cone ligeiramente maior â€” sem caixa ao redor */
  transition: color var(--ease), transform var(--ease);
  cursor: pointer;
  padding: 0;
  outline: none;
  /* remove outline padrÃ£o do browser */
  -webkit-tap-highlight-color: transparent;
  /* remove flash azul/branco em mobile */
  box-shadow: none;
}

.lang-btn:hover,
.lang-btn[aria-expanded="true"] {
  background: transparent;
  color: var(--megah-burgundy);
  /* preto â†’ cinza escuro ao passar o mouse */
  transform: scale(1.18);
  /* aumenta tamanho ao passar o mouse */
  border: none;
  outline: none;
  box-shadow: none;
}

.lang-btn:focus,
.lang-btn:active,
.lang-btn:focus-visible {
  background: transparent;
  outline: none;
  box-shadow: none;
  border: none;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  background: var(--megah-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: none;
  flex-direction: column;
  z-index: 200;
  min-width: 70px;
  overflow: hidden;
}

.lang-dropdown.open {
  display: flex;
}

.lang-dropdown button {
  border: none;
  background: none;
  padding: 9px 16px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--ease);
  text-align: center;
  color: var(--megah-black);
}

.lang-dropdown button:hover {
  background: var(--megah-yellow);
}

.lang-dropdown button.active {
  background: var(--megah-black);
  color: var(--megah-white);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HAMBURGER â€” Mobile
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: none;
  background: none;
  padding: 6px;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--megah-black);
  border-radius: 2px;
  transition: all var(--ease);
  transform-origin: center;
}

/* AnimaÃ§Ã£o hamburger â†’ X */
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   MOBILE OVERLAY
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   RESPONSIVE
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 992px) {

  /* Esconde contato da topbar no tablet */
  .topbar-contact {
    display: none;
  }

  /* Menu mobile â€” desliza da esquerda */
  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: -100%;
    width: 280px;
    height: calc(100vh - var(--header-h));
    background: var(--megah-white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 16px 0;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    transition: left var(--ease);
    overflow-y: auto;
  }

  .nav-links.open {
    left: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 14px 24px;
    border-radius: 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .hamburger {
    display: flex;
  }

  /* Esconde search no tablet (simplifica) */
  .search-wrap {
    display: none;
  }
}

@media (max-width: 480px) {

  /* Topbar oculta no mobile */
  .topbar {
    display: none;
  }
  
  .navbar-container {
    gap: 12px;
    padding: 0 16px;
    justify-content: space-between;
  }

  .navbar-logo img {
    height: 28px;
  }
}
/*
 * â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
 *  MEGAHPROJ â€” HERO SECTIONS
 *  Bloco 1.5 â€” heroes.css
 *  PadrÃ£o visual: 2 colunas (texto | imagem) em todas as pÃ¡ginas
 * â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
 */

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   FADE-IN HERO â€” AnimaÃ§Ã£o de entrada lenta para
   tÃ­tulos, subtÃ­tulos e textos das seÃ§Ãµes hero
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Classe base da animaÃ§Ã£o â€” aplicada aos elementos da hero */
.hero-text .hero-headline,
.hero-text .hero-tagline,
.hero-text .hero-body,
.hero-text .hero-ctas,
.hero-text .expertise-title,
.hero-text .expertise-body,
.hero-text .social-bar {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

/* â”€â”€ Delays escalonados â€” efeito cascata â”€â”€ */
.hero-text .hero-headline     { animation-delay: 0.15s; }
.hero-text .hero-tagline      { animation-delay: 0.40s; }
.hero-text .hero-body         { animation-delay: 0.60s; }
.hero-text .hero-ctas         { animation-delay: 0.80s; }
.hero-text .expertise-title   { animation-delay: 0.90s; }
.hero-text .expertise-body    { animation-delay: 1.10s; }
.hero-text .social-bar        { animation-delay: 1.30s; }

/* Acessibilidade â€” respeita preferÃªncia por menos movimento */
@media (prefers-reduced-motion: reduce) {
  .hero-text .hero-headline,
  .hero-text .hero-tagline,
  .hero-text .hero-body,
  .hero-text .hero-ctas,
  .hero-text .expertise-title,
  .hero-text .expertise-body,
  .hero-text .social-bar {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HERO BASE â€” padrÃ£o compartilhado entre todas as pÃ¡ginas
   Layout: coluna esquerda (branca, texto) + coluna direita (imagem)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 50/50 base */
  min-height: 480px;
  background-color: var(--megah-white);
  overflow: hidden;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px 60px max(24px, calc((100vw - var(--container-width)) / 2 + 24px));
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
}

/* Coluna de imagem (direita) */
.hero-image {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Headline padrÃ£o â€” tÃ­tulo principal da hero: Montserrat 900 (Black) conforme Brand Manual */
.hero-headline {
  font-family: var(--font);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  /* Black â€” Brand Manual: tÃ­tulos principais */
  line-height: 1.2;
  color: var(--megah-black);
  text-align: right;
  margin-bottom: 10px;
}

/* SubtÃ­tulo / tagline abaixo do headline principal */
.hero-tagline {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--megah-black);
  text-align: right;
  margin-bottom: 20px;
}

/* Corpo de texto â€” Montserrat 400 (Regular) conforme Brand Manual */
.hero-body {
  font-size: 0.9rem;
  font-weight: 400;
  /* Regular â€” Brand Manual: texto de leitura usa Montserrat 400 */
  color: var(--megah-black);
  text-align: right;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
}

/* CTAs (botÃµes) */
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-bottom: 28px;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   BARRA SOCIAL â€” "Confira nossas redes sociais"
   PadrÃ£o em: Home, Produtos, ServiÃ§os
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.social-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* Centraliza todo o conteÃºdo internamente */
  gap: 50px;
  /* EspaÃ§o entre o texto e o grupo de Ã­cones */
  background-color: var(--megah-yellow);
  border-radius: 12px;
  padding: 10px 24px;
  width: 100%;
  max-width: 460px;
  margin-top: 14px;
  flex-wrap: wrap; /* Garante que elementos filhos (texto/Ã­cones) nÃ£o ultrapassem o limite de tela */
  box-sizing: border-box;
}

.social-bar__label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--megah-black);
  flex-shrink: 0;
  line-height: 1.3;
}

.social-bar__icons {
  display: flex;
  align-items: center;
  gap: 30px;
  /* EspaÃ§amento de exatamente 10px entre os Ã­cones */
}

.social-bar__icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--megah-black);
  font-size: 1.5rem;
  transition: transform var(--ease), color var(--ease);
}

.social-bar__icons a:hover {
  transform: scale(1.25);
  color: var(--megah-burgundy);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HERO â€” HOME (index.html)
   2 seÃ§Ãµes verticais na coluna esquerda:
   1. Headline + subtÃ­tulo + CTAs
   2. "Expertise" + texto + barra social
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-home {
  grid-template-columns: 55% 45%;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 35%, rgba(255, 255, 255, 0) 75%),
    url('../assets/images/hero-home.webp');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  min-height: 940px;
  /* Alinhado ao min-height do WP */
}

.hero-home .hero-text {
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 80px;
  gap: 0;
}

/* Bloco superior */
.hero-home__upper {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--megah-burgundy);
  /* Linha divisÃ³ria em bordÃ´ */
  margin-bottom: 36px;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-home__upper .hero-headline {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900;
  /* Black â€” Brand Manual: tÃ­tulos principais */
  text-align: left;
  margin-bottom: 14px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-home__upper .hero-body {
  text-align: left;
  margin: 0 0 24px 0;
  font-size: 0.92rem;
  font-weight: 400;
  max-width: 100%;
  overflow-wrap: break-word;
}

.hero-home__upper .hero-ctas {
  justify-content: flex-start;
  /* CTAs alinhados Ã  esquerda */
  gap: 14px;
}

/* Bloco inferior â€” Expertise */
.hero-home__lower {
  max-width: 100%;
  box-sizing: border-box;
}

.hero-home__lower .expertise-title {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--megah-black);
  text-align: left;
  margin-bottom: 14px;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-home__lower .expertise-body {
  text-align: left;
  margin: 0 0 24px;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--megah-black);
  max-width: 100%;
  overflow-wrap: break-word;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HERO â€” QUEM SOMOS (quem-somos.html)
   Texto Ã  esquerda (maior), imagem Ã  direita
   Sem barra social nesta pÃ¡gina
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-about {
  grid-template-columns: 58% 42%;
  min-height: 420px;
}

.hero-about .hero-text {
  padding: 50px 56px 50px 0;
}

.hero-about .hero-headline {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  /* Black â€” Brand Manual: tÃ­tulos principais */
  text-align: right;
  margin-bottom: 24px;
}

.hero-about .hero-body {
  text-align: right;
  margin: 0 0 20px auto;
  font-size: 0.88rem;
}

.hero-about .hero-ctas {
  justify-content: flex-end;
  margin-top: 8px;
}

/* Imagem Quem Somos â€” fotografia real, cor natural */
.hero-about .hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 45px;
  /* afastamento de 45px das bordas */
  background: var(--megah-white);
}

.hero-about .hero-image img {
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
  /* mantÃ©m proporÃ§Ã£o inteira (1:1) sem corte */
  box-shadow: var(--shadow-lg);
  display: block;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HERO â€” PRODUTOS (produtos.html)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-products {
  grid-template-columns: 58% 42%;
}

.hero-products .hero-text {
  padding: 50px 48px 50px 0;
}

.hero-products .hero-headline {
  text-align: right;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  /* Black â€” Brand Manual: tÃ­tulos principais */
}

.hero-products .hero-tagline {
  text-align: right;
  font-weight: 600;
  color: var(--megah-black);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.hero-products .hero-body {
  text-align: right;
  margin: 0 0 24px auto;
}

.hero-products .social-bar {
  align-self: flex-end;
  /* Alinha a barra de redes sociais Ã  direita */
}

/* Imagem Produtos â€” padrÃ£o visual Quem Somos */
.hero-products .hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 45px;
  /* afastamento de 45px das bordas (direita e topo) */
  background: var(--megah-white);
}

.hero-products .hero-image img {
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-lg);
  display: block;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HERO â€” SERVIÃ‡OS (servicos.html)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-services {
  grid-template-columns: 58% 42%;
}

.hero-services .hero-text {
  padding: 50px 48px 50px 0;
}

.hero-services .hero-headline {
  text-align: right;
}

.hero-services .hero-tagline {
  text-align: right;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 24px;
}

.hero-services .hero-body {
  text-align: right;
  margin: 0 0 24px auto;
}

.hero-services .social-bar {
  align-self: flex-end;
  /* Alinha a barra de redes sociais Ã  direita */
}

/* Imagem ServiÃ§os â€” padrÃ£o visual Quem Somos */
.hero-services .hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 45px;
  /* afastamento de 45px das bordas (direita e topo) */
  background: var(--megah-white);
}

.hero-services .hero-image img {
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-lg);
  display: block;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HERO â€” DOWNLOADS (downloads.html)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-downloads {
  grid-template-columns: 58% 42%;
}

.hero-downloads .hero-text {
  padding: 50px 48px 50px 0;
}

.hero-downloads .hero-headline {
  text-align: right;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  /* Black â€” Brand Manual: tÃ­tulos principais */
}

.hero-downloads .hero-tagline {
  text-align: right;
  font-weight: 600;
  color: var(--megah-black);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.hero-downloads .hero-body {
  text-align: right;
  margin: 0 0 24px auto;
}

.hero-downloads .social-bar {
  align-self: flex-end;
  /* Alinha a barra de redes sociais Ã  direita */
}

/* Imagem Downloads â€” padrÃ£o visual Quem Somos */
.hero-downloads .hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 45px;
  /* afastamento de 45px das bordas (direita e topo) */
  background: var(--megah-white);
}

.hero-downloads .hero-image img {
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-lg);
  display: block;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HERO â€” CONTATO (contato.html)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-contact {
  grid-template-columns: 58% 42%;
}

.hero-contact .hero-text {
  padding: 50px 48px 50px 0;
}

.hero-contact .hero-headline {
  text-align: right;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  /* Black â€” Brand Manual: tÃ­tulos principais */
}

.hero-contact .hero-tagline {
  text-align: right;
  font-weight: 600;
  color: var(--megah-black);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.hero-contact .hero-body {
  text-align: right;
  margin: 0 0 24px auto;
}

.hero-contact .social-bar {
  align-self: flex-end;
  /* Alinha a barra de redes sociais Ã  direita */
}

/* Imagem Contato â€” padrÃ£o visual Quem Somos */
.hero-contact .hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 45px;
  /* afastamento de 45px das bordas (direita e topo) */
  background: var(--megah-white);
}

.hero-contact .hero-image img {
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-lg);
  display: block;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   RESPONSIVE â€” Heroes
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 992px) {

  .page-hero,
  .hero-home,
  .hero-about,
  .hero-products,
  .hero-services,
  .hero-downloads,
  .hero-contact {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-home {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%),
      url('../assets/images/hero-home.webp');
    background-size: cover;
    background-position: center;
  }

  /* Imagem vai para cima no mobile */
  .hero-image {
    order: -1;
    min-height: 260px;
    padding: 0 !important;
  }

  .hero-text {
    padding: 40px 24px !important;
  }

  .hero-headline,
  .hero-tagline,
  .hero-body,
  .hero-home__upper .hero-headline,
  .hero-home__lower .expertise-title {
    text-align: left !important;
  }

  .hero-body,
  .hero-home__upper .hero-body {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero-ctas,
  .hero-home__upper .hero-ctas {
    justify-content: flex-start !important;
  }

  .hero-about .hero-image {
    align-items: flex-start;
  }

  .hero-about .hero-image img {
    height: 260px;
    border-radius: 0;
  }
}

@media (max-width: 600px) {
  .hero-text {
    padding: 32px 20px !important;
  }

  .hero-image {
    min-height: 220px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 10px;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .social-bar {
    flex-wrap: wrap;
    gap: 12px;
  }
}
/*
 * â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
 *  MEGAHPROJ â€” ESTILOS DE PÃGINAS INTERNAS
 *  PÃ¡ginas: Quem Somos, SoluÃ§Ãµes, Downloads, Contato
 *  Bloco 2.10 â€” pages.css
 * â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
 */

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SEÃ‡ÃƒO HISTÃ“RIA & TIMELINE (Quem Somos)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-history {
  background-color: var(--megah-white);
  position: relative;
  overflow: hidden;
}

.history-intro {
  max-width: 800px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.history-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--megah-gray);
  font-weight: 400;
  /* Regular â€” Brand Manual */
}

/* Timeline Container */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0 auto;
  padding: 20px 0;
}

/* Linha Central */
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--border);
  transform: translateX(-50%);
  z-index: 1;
}

/* Item da Timeline */
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* Marcador Circular */
.timeline-marker {
  grid-column: 2;
  width: 20px;
  height: 20px;
  border: 4px solid var(--megah-burgundy);
  background-color: var(--megah-white);
  border-radius: 50%;
  justify-self: center;
  position: relative;
  z-index: 2;
  transition: transform var(--ease), border-color var(--ease), background-color var(--ease), box-shadow var(--ease);
}

.timeline-item:hover .timeline-marker {
  transform: scale(1.35);
  border-color: var(--megah-yellow-alt);
  background-color: var(--megah-burgundy);
  box-shadow: 0 0 0 6px rgba(153, 0, 0, 0.15);
}

/* InformaÃ§Ãµes / Ano */
.timeline-info {
  position: relative;
  z-index: 2;
}

.timeline-year {
  font-family: var(--font);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--megah-gray-light);
  line-height: 1;
  transition: color var(--ease), transform var(--ease);
  display: inline-block;
}

.timeline-item:hover .timeline-year {
  color: var(--megah-burgundy);
  transform: scale(1.05);
}

/* Card de ConteÃºdo */
.timeline-card {
  background-color: var(--bg-light);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background-color var(--ease);
  border-left: 4px solid var(--border-dark);
  position: relative;
  z-index: 2;
}

.timeline-item:hover .timeline-card {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--megah-burgundy);
  background-color: var(--megah-white);
}

.timeline-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--megah-black);
  margin-bottom: 10px;
  transition: color var(--ease);
}

.timeline-item:hover .timeline-title {
  color: var(--megah-burgundy);
}

.timeline-desc {
  font-family: var(--font);
  font-weight: 400;
  /* Regular â€” Brand Manual */
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   ALINHAMENTO ESQUERDA / DIREITA (Alternado)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Ãmpares: Card Ã  Esquerda, Ano Ã  Direita */
.timeline-item:nth-child(odd) .timeline-card {
  grid-column: 1;
  text-align: right;
  border-left: none;
  border-right: 4px solid var(--border-dark);
}

.timeline-item:nth-child(odd):hover .timeline-card {
  border-right-color: var(--megah-burgundy);
}

.timeline-item:nth-child(odd) .timeline-info {
  grid-column: 3;
  justify-self: start;
  text-align: left;
}

/* Pares: Ano Ã  Esquerda, Card Ã  Direita */
.timeline-item:nth-child(even) .timeline-card {
  grid-column: 3;
  text-align: left;
  border-left: 4px solid var(--border-dark);
}

.timeline-item:nth-child(even) .timeline-info {
  grid-column: 1;
  justify-self: end;
  text-align: right;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   RESPONSIVIDADE (Tablets e Dispositivos MÃ³veis)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 992px) {
  .timeline {
    max-width: 100%;
  }

  .timeline-item {
    grid-template-columns: 80px 1fr;
    margin-bottom: 50px;
  }

  .timeline-line {
    left: 40px;
    transform: none;
  }

  .timeline-marker {
    grid-column: 1;
  }

  /* Reset de alinhamento para todos os itens no tablet/mobile */
  .timeline-item:nth-child(odd) .timeline-card,
  .timeline-item:nth-child(even) .timeline-card {
    grid-column: 2;
    text-align: left;
    border-right: none;
    border-left: 4px solid var(--border-dark);
  }

  .timeline-item:nth-child(odd):hover .timeline-card,
  .timeline-item:nth-child(even):hover .timeline-card {
    border-left-color: var(--megah-burgundy);
    border-right-color: transparent;
  }

  .timeline-item:nth-child(odd) .timeline-info,
  .timeline-item:nth-child(even) .timeline-info {
    grid-column: 2;
    justify-self: start;
    text-align: left;
    margin-bottom: 12px;
  }

  /* Ajusta a ordem para que o Ano fique acima do Card */
  .timeline-info {
    grid-row: 1;
  }

  .timeline-card {
    grid-row: 2;
  }

  .timeline-year {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .timeline-line {
    left: 20px;
  }

  .timeline-item {
    grid-template-columns: 40px 1fr;
    margin-bottom: 40px;
  }

  .timeline-marker {
    width: 16px;
    height: 16px;
    border-width: 3px;
  }

  .timeline-item:nth-child(odd) .timeline-card,
  .timeline-item:nth-child(even) .timeline-card {
    padding: 20px;
  }

  .timeline-year {
    font-size: 1.6rem;
  }

  .timeline-title {
    font-size: 1.15rem;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SEÃ‡ÃƒO MISSÃƒO, VISÃƒO E VALORES (Bloco 2.11)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-mvv {
  background-color: var(--bg-light);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.mvv-card {
  background-color: var(--bg-card);
  padding: 45px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  border-top: 4px solid var(--border-dark);
}

.mvv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--megah-burgundy);
}

.mvv-icon {
  width: 72px;
  height: 72px;
  background-color: rgba(253, 225, 0, 0.12);
  /* Fundo amarelo suave */
  color: var(--megah-yellow-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  margin: 0 auto 28px auto;
  transition: transform var(--ease), background-color var(--ease), color var(--ease);
}

.mvv-card:hover .mvv-icon {
  transform: scale(1.08);
  background-color: var(--megah-yellow);
  color: var(--megah-black);
}

.mvv-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--megah-black);
  margin-bottom: 16px;
  transition: color var(--ease);
}

.mvv-card:hover .mvv-title {
  color: var(--megah-burgundy);
}

.mvv-desc {
  font-family: var(--font);
  font-weight: 400;
  /* Regular â€” Brand Manual */
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .mvv-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mvv-card {
    padding: 35px 24px;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SEÃ‡ÃƒO O QUE NOS MOVE? (Bloco 2.12)
   Layout split: foto (esq.) + texto numerado (dir.)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-drive {
  background-color: var(--megah-white);
  overflow: hidden;
}

/* Container split 50/50 */
.about-drive-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 80px;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

/* â”€â”€ Coluna Imagem â”€â”€ */
.drive-image-col {
  position: relative;
}

.drive-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background-color: var(--border);
  max-width: 380px;
  margin: 0 auto;
}

.drive-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.drive-image-wrapper:hover .drive-image {
  transform: scale(1.03);
}

/* â”€â”€ Coluna Texto â”€â”€ */
.drive-text-col {
  position: relative;
  padding: 0 0 20px 0;
}

/* Watermark "M" decorativo: Ã­cone Megahproj posicionado como bg */
.drive-watermark {
  position: absolute;
  right: -40px;
  bottom: -30px;
  width: 340px;
  height: auto;
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  display: block;
}

.drive-title {
  font-family: var(--font);
  font-weight: 900;
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  color: var(--megah-black);
  line-height: 1.15;
  margin-top: 0;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.drive-intro {
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--megah-gray);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

/* Itens numerados */
.drive-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.drive-item:last-child {
  margin-bottom: 0;
}

.drive-number {
  font-family: var(--font);
  font-weight: 900;
  font-size: 3.6rem;
  line-height: 1;
  color: var(--megah-gray-light);
  transition: color var(--ease), transform var(--ease);
  padding-top: 4px;
}

.drive-item:hover .drive-number {
  color: var(--megah-burgundy);
  transform: scale(1.06);
}

.drive-item-text {
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--megah-gray);
  padding-top: 6px;
  border-top: 2px solid var(--border);
  transition: border-color var(--ease);
}

.drive-item:hover .drive-item-text {
  border-top-color: var(--megah-burgundy);
}

.drive-item-text strong {
  font-weight: 700;
  color: var(--megah-black);
}

/* â”€â”€ Responsividade â”€â”€ */
@media (max-width: 1024px) {
  .about-drive-container {
    gap: 50px;
  }

  .drive-watermark {
    width: 260px;
  }
}

@media (max-width: 768px) {
  .about-drive-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .drive-image-wrapper {
    aspect-ratio: 4 / 5;
  }

  .drive-watermark {
    width: 200px;
    right: -10px;
    bottom: -10px;
  }

  .drive-title {
    font-size: clamp(1.6rem, 5vw, 2rem);
  }

  .drive-number {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .drive-item {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .drive-number {
    font-size: 2.2rem;
  }
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SEÃ‡ÃƒO CTA CONTATO (Bloco 2.13)
   Imagem de fundo industrial com overlay escuro/bordÃ´ e parallax
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-cta {
  position: relative;
  background-image: url('../assets/images/fundo_industria.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  padding: 100px 0;
  color: var(--megah-white);
  overflow: hidden;
}

@media (max-width: 768px) {
  .about-cta {
    background-image: url('../assets/images/fundo_industria-480w.webp');
  }
}

@media (min-width: 993px) {
  .about-cta {
    background-attachment: fixed;
    /* Parallax suave para desktop */
  }
}

.about-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.85) 0%, rgba(153, 0, 0, 0.4) 100%);
  z-index: 1;
}

.about-cta-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.about-cta-title {
  font-family: var(--font);
  font-weight: 900;
  font-size: clamp(1.8rem, 2.75vw, 2.6rem);
  color: var(--megah-white);
  margin-bottom: 36px;
  line-height: 1.3;
}

.about-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.about-cta-buttons .btn {
  box-shadow: var(--shadow-sm);
  min-width: 220px;
}

.about-cta-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 576px) {
  .about-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .about-cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SEÃ‡ÃƒO DOWNLOADS (Bloco 2.15) - VersÃ£o Tabela
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.downloads-section {
  background-color: var(--bg-light);
  padding: var(--section-y) 0;
}

/* â”€â”€ Filtros: Menu Underline â”€â”€ */
.download-filters-nav {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-bottom: 2px solid #d9d9d9;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.dl-tab {
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 14px 28px 12px;
  border: none;
  background-color: transparent;
  color: var(--megah-gray);
  cursor: pointer;
  position: relative;
  border-radius: 0;
  transition: color var(--ease);
  /* Barra de underline via ::after */
}

.dl-tab::after {
  content: '';
  position: absolute;
  bottom: -2px;
  /* alinha sobre a borda cinza do nav */
  left: 0;
  width: 100%;
  height: 2px;
  background-color: transparent;
  transition: background-color var(--ease);
}

/* Hover: barra bordÃ´ */
.dl-tab:hover {
  color: var(--megah-black);
}

.dl-tab:hover::after {
  background-color: var(--megah-burgundy);
}

/* Ativo: texto bordÃ´, barra bordÃ´ persistente */
.dl-tab.active {
  color: var(--megah-burgundy);
  font-weight: 700;
}

.dl-tab.active::after {
  background-color: var(--megah-burgundy);
}

/* Tabela Container */
.download-table-container {
  width: 100%;
  background-color: var(--megah-white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
  overflow: hidden;
  margin-top: 20px;
}

.download-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

/* AnimaÃ§Ã£o fade-in nas linhas */
.download-row.fade-in {
  animation: fadeInRow 0.4s ease forwards;
}

@keyframes fadeInRow {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CabeÃ§alho */
.download-table th {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--megah-gray);
  background-color: var(--megah-white);
  padding: 20px 24px;
  border-bottom: 2px solid #eaeaea;
  letter-spacing: 0.8px;
}

/* Linhas e CÃ©lulas */
.download-table td {
  padding: 22px 24px;
  border-bottom: 1px solid #eaeaea;
  font-family: var(--font);
  font-size: 0.92rem;
  vertical-align: middle;
}

.download-table tbody tr:last-child td {
  border-bottom: none;
}

/* DefiniÃ§Ã£o de Larguras e Alinhamento das Colunas */
.col-file {
  width: 30%;
}

.col-type {
  width: 10%;
  text-align: center;
}

.col-desc {
  width: 40%;
}

.col-size {
  width: 10%;
  text-align: left;
}

.col-action {
  width: 10%;
  text-align: left;
}

/* Ajuste especÃ­fico de th centralizado */
th.col-type {
  text-align: center;
}

/* Arquivo (Nome) */
.col-file strong {
  font-weight: 700;
  color: var(--megah-black);
  font-size: 0.95rem;
  display: block;
}

/* Tipo (Badge PDF) */
.badge-type {
  display: inline-block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--megah-gray);
  background-color: #f1f3f5;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  border: none;
  letter-spacing: 0.5px;
}

/* DescriÃ§Ã£o */
.col-desc {
  color: var(--megah-gray);
  font-weight: 400;
  /* Regular â€” Brand Manual */
  line-height: 1.6;
}

/* Tamanho */
.col-size {
  color: var(--megah-black);
  font-weight: 500;
  white-space: nowrap;
}

/* Link de Download (BordÃ´) */
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--megah-burgundy);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  transition: transform var(--ease), opacity var(--ease);
  white-space: nowrap;
}

.btn-download i {
  font-size: 1.05rem;
}

.btn-download:hover {
  transform: translateY(-1px);
  opacity: 0.85;
}

/* Responsividade Mobile (TransformaÃ§Ã£o em blocos) */
@media (max-width: 768px) {
  .download-filters-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .dl-tab {
    padding: 12px 18px 10px;
    flex: 0 0 auto;
    font-size: 0.8rem;
  }

  .download-table thead {
    display: none;
    /* Oculta cabeÃ§alho original */
  }

  .download-table,
  .download-table tbody,
  .download-table tr,
  .download-table td {
    display: block;
    width: 100%;
  }

  .download-table tr {
    border-bottom: 2px solid var(--border);
    padding: 16px 0;
  }

  .download-table tr:last-child {
    border-bottom: none;
  }

  .download-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 24px;
    border: none;
    text-align: right;
    width: 100% !important;
  }

  .download-table td::before {
    content: attr(data-label);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: left;
    margin-right: 15px;
  }

  .col-desc {
    max-width: 100%;
    justify-content: flex-end;
  }

  .col-type {
    justify-content: space-between;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SEÃ‡ÃƒO CONTATO â€” BLOCO 2.17
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-section {
  background-color: var(--bg-light);
  padding-top: 50px;
  padding-bottom: 50px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 48px;
  align-items: start;
}

/* Coluna Esquerda: InformaÃ§Ãµes */
.contact-info-col {
  padding-right: 20px;
}

.contact-title {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--megah-black);
  margin-bottom: 12px;
}

.contact-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--megah-gray);
  margin-bottom: 32px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: var(--megah-white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--megah-burgundy);
  /* Destaque da marca */
  transition: transform var(--ease), box-shadow var(--ease);
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #fff9f9;
  border: 1px solid rgba(153, 0, 0, 0.15);
  color: var(--megah-burgundy);
  border-radius: 50%;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card-content h3 {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--megah-black);
  margin-bottom: 6px;
}

.contact-card-content p {
  font-size: 0.9rem;
  color: var(--megah-gray);
  line-height: 1.5;
  margin: 0;
}

.contact-card-content a {
  color: var(--megah-gray);
  transition: color var(--ease);
}

.contact-card-content a:hover {
  color: var(--megah-burgundy);
}

/* Coluna Direita: FormulÃ¡rio */
.contact-form-col {
  width: 100%;
}

.contact-form-container {
  background-color: var(--megah-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-title {
  font-family: var(--font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--megah-black);
  margin-bottom: 24px;
}

.contact-form .form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--megah-black);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  background-color: var(--megah-white);
  color: var(--megah-black);
  transition: border-color var(--ease), box-shadow var(--ease);
  width: 100%;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--megah-burgundy);
  box-shadow: 0 0 0 3px rgba(153, 0, 0, 0.1);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .error-msg {
  font-size: 0.8rem;
  color: var(--megah-burgundy);
  margin-top: 5px;
  display: none;
  font-weight: 600;
}

.contact-form .form-group.has-error input,
.contact-form .form-group.has-error select,
.contact-form .form-group.has-error textarea {
  border-color: var(--megah-burgundy);
  background-color: #fffcfc;
}

.contact-form .form-group.has-error .error-msg {
  display: block;
}

/* Checkbox de Consentimento */
.contact-form .form-group--checkbox {
  flex-direction: row !important;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.contact-form .form-group--checkbox input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  margin: 0;
  cursor: pointer;
}

.contact-form .form-group--checkbox label {
  margin-bottom: 0 !important;
  text-transform: none;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--megah-gray);
  cursor: pointer;
  letter-spacing: 0;
}

/* BotÃ£o de Envio */
.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  font-family: var(--font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(153, 0, 0, 0.2);
}

.form-submit-btn:active {
  transform: translateY(0);
}

/* Mensagem de Status */
.form-status-msg {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
  text-align: center;
  line-height: 1.5;
}

.form-status-msg.success {
  display: block;
  background-color: #d1e7dd;
  color: #0f5132;
  border: 1px solid #badbcc;
}

.form-status-msg.error {
  display: block;
  background-color: #f8d7da;
  color: #842029;
  border: 1px solid #f5c2c7;
}

.form-status-msg.loading {
  display: block;
  background-color: #e2e3e5;
  color: #41464b;
  border: 1px solid #d3d6d8;
}

/* Responsividade */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info-col {
    padding-right: 0;
  }

  .contact-form-container {
    padding: 30px 24px;
  }
}

@media (max-width: 576px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form .form-row .form-group {
    margin-bottom: 20px;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   PÃGINA PRODUTOS â€” INTRODUÃ‡ÃƒO E QUALIDADE
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.products-intro {
  background-color: var(--megah-white);
  padding: var(--section-y) 0;
}

.products-intro-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  gap: 60px;
}

.products-intro-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.products-intro-image {
  max-width: 100%;
  height: auto;
  opacity: 0.2;
}

.products-intro-text-wrapper {
  display: flex;
  flex-direction: column;
}

.products-intro-text-wrapper .section-title.text-left::after {
  margin: 12px 0 0 0;
}

.products-intro-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--megah-gray);
  font-weight: 400;
  /* Regular â€” Brand Manual */
  margin-top: 24px;
}

@media (max-width: 992px) {
  .products-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .products-intro-image-wrapper {
    max-width: 320px;
    margin: 0 auto;
  }

  .products-intro-text-wrapper .section-title {
    text-align: center;
  }

  .products-intro-text-wrapper .section-title::after {
    margin: 12px auto 0 auto;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   PÃGINA PRODUTOS â€” NOVO LAYOUT DE DUAS COLUNAS (Fase 2.21 / 2.22)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --sidebar-w: 280px;
  --sidebar-gap: 50px;
  --sticky-offset: calc(var(--header-h) + 30px);
}

/* Container do Grid Principal */
.products-layout-grid {
  display: grid;
  grid-template-columns: var(--sidebar-w) minmax(0, 1fr);
  gap: var(--sidebar-gap);
  align-items: start;
  padding: 60px 0 var(--section-y) 0;
  max-width: 100%;
}

.products-sidebar-col {
  min-width: 0;
}

/* Coluna da Sidebar */
.products-sidebar-col {
  position: sticky;
  top: var(--sticky-offset);
  z-index: 90;
}

.products-sidebar {
  background-color: var(--megah-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
}

.sidebar-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--megah-black);
  margin-bottom: 24px;
  text-transform: capitalize;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar-link {
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--megah-gray);
  padding: 8px 0 8px 16px;
  border-left: 2px solid transparent;
  transition: color var(--ease), border-color var(--ease), padding-left var(--ease);
  display: block;
}

.sidebar-link:hover {
  color: var(--megah-burgundy);
  padding-left: 20px;
}

.sidebar-link.active {
  color: var(--megah-burgundy);
  font-weight: 700;
  border-left-color: var(--megah-burgundy);
  /* detalhe de acento â‰¤ 5% */
  padding-left: 18px;
}

/* Coluna de ConteÃºdo Principal */
.products-content-col {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

/* SeÃ§Ãµes de Categorias */
.product-category-section {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.category-header {
  margin-bottom: 45px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.category-title {
  font-family: var(--font);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--megah-black);
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--megah-yellow-alt);
  /* Detalhe amarelo principal da marca */
}

.category-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--megah-gray);
  font-weight: 400;
  /* Regular â€” Brand Manual */
  margin-top: 15px;
  max-width: 800px;
}

/* Grid de Produtos dentro de cada Categoria */
.products-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
  /* espaÃ§o generoso entre produtos */
}

/* Linha do Produto Alternada */
.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* AlternÃ¢ncia AutomÃ¡tica */
.product-row:nth-child(even) {
  direction: rtl;
  /* Inverte a ordem visual */
}

/* Corrige alinhamento de texto que herda do rtl */
.product-row:nth-child(even) .product-text-box {
  direction: ltr;
  text-align: left;
}

.product-row:nth-child(even) .product-image-box {
  direction: ltr;
}

/* Box da Imagem (Cinza Claro) */
.product-image-box {
  background-color: #f8f9fa;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  transition: transform var(--ease), box-shadow var(--ease);
}

.product-image-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-image-box img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

/* Modificador: container de foto real (ex: Equipamentos Engenheirados)
   â€” mais alto, padding uniforme, imagem preenche com espaÃ§amento igual */
.product-image-box--photo {
  aspect-ratio: 5 / 6;
  padding: 40px;
}

.product-image-box--photo img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* Caixa de Texto */
.product-text-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* Badge (tipo do produto) */
.product-badge {
  display: inline-block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--megah-burgundy);
  /* detalhe de acento â‰¤ 5% */
  border: 1px solid var(--megah-burgundy);
  border-radius: 50px;
  padding: 6px 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Nome do Produto */
.product-name {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  color: var(--megah-black);
  line-height: 1.1;
  margin: 0;
}

.product-description {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--megah-gray);
  font-weight: 400;
  /* Regular â€” Brand Manual */
  margin: 0;
}

/* Lista de Diferenciais */
.product-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0;
}

.product-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--megah-black);
  font-weight: 500;
}

.product-feature-item i {
  color: var(--megah-yellow-alt);
  /* checkmark amarelo */
  font-size: 1rem;
  margin-top: 3px;
}

/* BotÃ£o Download Folheto */
.product-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--megah-black);
  border: 1.5px solid var(--megah-black);
  background-color: transparent;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
}

.product-download-btn:hover {
  background-color: var(--megah-burgundy);
  border-color: var(--megah-burgundy);
  color: var(--megah-white);
  transform: translateY(-2px);
}

/* BotÃ£o SÃ³lido de Contato */
.product-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--megah-white) !important;
  border: none;
  background-color: var(--megah-burgundy);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity var(--ease), transform var(--ease);
}

.product-contact-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: var(--megah-white) !important;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   RESPONSIVIDADE (Telas menores)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 992px) {
  .products-layout-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    padding-top: 40px;
    max-width: 100%;
  }

  .products-sidebar-col {
    position: sticky;
    top: var(--header-h);
    z-index: 150;
    margin: 0 -20px;
    min-width: 0;
  }

  .products-sidebar {
    border-radius: 0;
    border-left: none;
    border-right: none;
    padding: 12px 20px;
    box-shadow: var(--shadow-sm);
    width: 100%;
    box-sizing: border-box;
  }

  .sidebar-title {
    display: none;
    /* Oculta o tÃ­tulo "Produtos" no mobile/tablet */
  }

  .sidebar-menu {
    flex-direction: row;
    overflow-x: auto;
    gap: 20px;
    padding: 2px 0;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    box-sizing: border-box;
  }

  .sidebar-link {
    white-space: nowrap;
    padding: 6px 0;
    border-left: none;
    border-bottom: 2px solid transparent;
  }

  .sidebar-link:hover {
    padding-left: 0;
  }

  .sidebar-link.active {
    border-left-color: transparent;
    border-bottom-color: var(--megah-burgundy);
    padding-left: 0;
  }

  .product-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-row:nth-child(even) {
    direction: ltr;
    /* Desativa reversÃ£o no mobile */
  }

  .product-image-box {
    aspect-ratio: 16 / 9;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .product-image-box {
    aspect-ratio: 4 / 3;
  }

  .product-badge {
    font-size: 0.68rem;
    padding: 5px 12px;
  }

  .product-name {
    font-size: 1.6rem;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   PÃGINA SERVIÃ‡OS (Fase 2.25)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services-intro {
  background-color: var(--megah-white);
  padding: var(--section-y) 0;
}

.services-intro-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  gap: 60px;
}

.services-intro-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-intro-image {
  max-width: 100%;
  height: auto;
}

.services-intro-text-wrapper {
  display: flex;
  flex-direction: column;
}

.services-intro-text-wrapper .section-title.text-left::after {
  margin: 12px 0 0 0;
}

.services-intro-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--megah-gray);
  font-weight: 400;
  /* Regular â€” Brand Manual */
  margin-top: 24px;
}

.services-grid-section {
  background-color: var(--bg-light);
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: var(--megah-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--border-dark);
  transition: background-color var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(153, 0, 0, 0.15);
}

.service-card:hover::before {
  background-color: var(--megah-burgundy);
}

.service-card-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: rgba(253, 225, 0, 0.1);
  color: var(--megah-yellow-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: transform var(--ease), background-color var(--ease), color var(--ease);
}

.service-card:hover .service-card-icon-wrapper {
  transform: scale(1.08);
  background-color: var(--megah-yellow-alt);
  color: var(--megah-black);
}

.service-card-title {
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--megah-black);
  margin: 0;
  transition: color var(--ease);
}

.service-card:hover .service-card-title {
  color: var(--megah-burgundy);
}

.service-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--megah-gray);
  font-weight: 400;
  /* Regular â€” Brand Manual */
  margin: 0;
  flex-grow: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--megah-black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color var(--ease);
  margin-top: 10px;
}

.service-card-link i {
  font-size: 0.95rem;
  transition: transform var(--ease);
}

.service-card-link:hover {
  color: var(--megah-burgundy);
}

.service-card-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .services-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .services-intro-image-wrapper {
    max-width: 320px;
    margin: 0 auto;
  }

  .services-intro-text-wrapper .section-title {
    text-align: center;
  }

  .services-intro-text-wrapper .section-title::after {
    margin: 12px auto 0 auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-card {
    padding: 30px 24px;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   DETALHAMENTO DOS SERVIÃ‡OS (Fase 2.26)
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services-details-section {
  background-color: var(--megah-white);
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
}

.services-details-wrapper {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.service-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  scroll-margin-top: calc(var(--header-h) + 30px);
}

/* AlternÃ¢ncia Visual */
.service-detail-row:nth-child(even) {
  direction: rtl;
}

.service-detail-row:nth-child(even) .service-detail-text-box {
  direction: ltr;
  text-align: left;
}

.service-detail-row:nth-child(even) .service-detail-image-box {
  direction: ltr;
}

/* Box da Imagem */
.service-detail-image-box {
  background-color: #f8f9fa;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}

.service-detail-image-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-detail-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-detail-image-box:hover img {
  transform: scale(1.05);
}

/* Caixa de Texto */
.service-detail-text-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.service-detail-badge {
  display: inline-block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--megah-burgundy);
  border: 1px solid var(--megah-burgundy);
  border-radius: 50px;
  padding: 6px 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.service-detail-name {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  color: var(--megah-black);
  line-height: 1.1;
  margin: 0;
}

.service-detail-description {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--megah-gray);
  font-weight: 400;
  /* Regular â€” Brand Manual */
  margin: 0;
}

/* Lista de Diferenciais */
.service-detail-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 8px 0;
}

.service-detail-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--megah-black);
  font-weight: 500;
}

.service-detail-feature-item i {
  color: var(--megah-yellow-alt);
  font-size: 1rem;
  margin-top: 3px;
}

.service-detail-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--megah-white) !important;
  border: none;
  background-color: var(--megah-burgundy);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity var(--ease), transform var(--ease);
  margin-top: 8px;
  text-decoration: none;
}

.service-detail-contact-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .services-details-wrapper {
    gap: 70px;
  }

  .service-detail-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-detail-row:nth-child(even) {
    direction: ltr;
  }

  .service-detail-image-box {
    aspect-ratio: 16 / 9;
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .service-detail-image-box {
    aspect-ratio: 4 / 3;
  }

  .service-detail-badge {
    font-size: 0.68rem;
    padding: 5px 12px;
  }

  .service-detail-name {
    font-size: 1.6rem;
  }
}
/*
 * â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
 *  MEGAHPROJ â€” FOOTER
 *  Bloco 1.3 â€” footer.css
 *  Fiel ao visual de megahproj.com/wp
 * â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
 */

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SITE FOOTER
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-footer {
  background-color: var(--megah-black);
  color: var(--megah-white);
  font-family: var(--font);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   FOOTER MAIN â€” 3 colunas
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer-main {
  padding: 56px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

/* â”€â”€ Coluna 1: Logo + Newsletter (lado a lado) â”€â”€ */
.footer-col--brand {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-logo {
  display: block;
  flex-shrink: 0;
  margin-bottom: 0;
}

.footer-logo img {
  height: 85px;
  width: auto;
  /* Sem container, sem border â€” brand manual */
}

/* Div wrapper da newsletter */
.footer-newsletter {
  display: flex;
  flex-direction: column;
  max-width: 320px;
  width: 100%;
}

.footer-newsletter-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--megah-white);
  margin-bottom: 5px;
}

.footer-newsletter-subtitle {
  font-size: 0.8rem;
  font-weight: 400; /* Regular â€” Brand Manual */
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* FormulÃ¡rio de newsletter */
.footer-newsletter-form {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.footer-email-input {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-right: none;
  background: rgba(255, 255, 255, 0.06);
  color: var(--megah-white);
  padding: 10px 14px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 400; /* Regular â€” Brand Manual */
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  transition: border-color var(--ease), background var(--ease);
  min-width: 0;
}
.footer-email-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.footer-email-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.footer-submit-btn {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--megah-white);
  padding: 10px 18px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.footer-submit-btn:hover {
  background: var(--megah-white);
  color: var(--megah-black);
  border-color: var(--megah-white);
}

/* â”€â”€ Coluna 2: Links Sociais â”€â”€ */
.footer-col--social {
  padding-top: 2px;
}

.footer-social-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 98px; /* Altura ajustada para alinhar com a newsletter */
}

.footer-social-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 400; /* Regular â€” Brand Manual */
  transition: color var(--ease);
  line-height: 1;
}
.footer-social-list a:hover {
  color: var(--megah-yellow);
}

/* Caixinha do Ã­cone social â€” sem borda, fundo branco, Ã­cone preto (conforme screenshot) */
.footer-social-list i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: var(--megah-white);
  color: var(--megah-black);
  border: none;
  border-radius: 4px;
  font-size: 0.82rem;
  flex-shrink: 0;
  transition: background var(--ease), color var(--ease);
}
.footer-social-list a:hover i {
  background: var(--megah-yellow);
  color: var(--megah-black);
}

/* â”€â”€ Coluna 3: CitaÃ§Ã£o â”€â”€ */
.footer-col--quote {
  padding-top: 4px;
}

.footer-quote {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--megah-white);
}

.footer-quote-mark {
  font-family: Georgia, serif;
  font-size: 3.2rem;
  line-height: 0.7;
  color: var(--megah-white); /* aspas brancas */
  opacity: 0.95;
  user-select: none;
}

.footer-quote-mark--open {
  margin-top: -6px;
}

.footer-quote-mark--close {
  align-self: flex-end;
  margin-bottom: -18px;
}

.footer-quote blockquote {
  border: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.footer-quote blockquote p {
  font-size: 0.88rem;
  font-weight: 400; /* Regular â€” Brand Manual */
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 12px;
  font-style: italic;
}

.footer-quote blockquote cite {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--megah-white);
  font-style: normal;
  letter-spacing: 0.5px;
  display: block;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   FOOTER BOTTOM â€” Copyright + Links legais
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Links de privacidade/termos em bordÃ´ (conforme screenshot) */
.footer-legal a {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--megah-burgundy);
  transition: opacity var(--ease);
}
.footer-legal a:hover {
  opacity: 0.75;
  text-decoration: underline;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  transition: color var(--ease);
}
.footer-credit a:hover {
  color: var(--megah-yellow);
}

/* Assinatura do desenvolvedor em Thai */
.footer-credit-sig {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.68rem;
  margin-left: 2px;
  letter-spacing: 0.5px;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   RESPONSIVE
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  
  .footer-col--brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .footer-logo {
    display: none; /* Oculta o logotipo em tablets e celulares conforme solicitado */
  }

  .footer-newsletter {
    max-width: 100%;
  }

  /* Quote vai para baixo e ocupa toda a largura */
  .footer-col--quote {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-col--quote {
    grid-column: auto;
  }

  .footer-social-list {
    height: auto;
    gap: 14px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
