﻿/*
 * â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
 *  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 â€” HOME STYLES
 *  Bloco 2.2 â€” Barra de Diferenciais e seÃ§Ãµes da Home
 * â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
 */

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   BARRA DE DIFERENCIAIS (BLOCO 2.2)
   Cor de Fundo: --megah-yellow (#FDE100)
   Texto: --megah-black (#111111)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.differentials-bar {
  background-color: var(--megah-yellow);
  color: var(--megah-black);
  padding: 48px 0;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.diff-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: transform var(--ease), background-color var(--ease);
}

/* Efeito de hover no item */
.diff-item:hover {
  transform: translateY(-4px);
  background-color: rgba(255, 255, 255, 0.25);
}

/* Ãcone */
.diff-icon-wrap {
  width: 60px;
  height: 60px;
  background-color: var(--megah-white);
  color: var(--megah-burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), color var(--ease), background-color var(--ease);
}

/* Hover no Ã­cone */
.diff-item:hover .diff-icon-wrap {
  transform: scale(1.08) rotate(5deg);
  background-color: var(--megah-burgundy);
  color: var(--megah-white);
}

/* TÃ­tulo do diferencial */
.diff-title {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--megah-black);
  margin-bottom: 8px;
  line-height: 1.3;
}

/* DescriÃ§Ã£o do diferencial */
.diff-desc {
  font-size: 0.85rem;
  font-weight: 400;
  color: #222222; /* Contraste forte no fundo amarelo */
  margin: 0;
  line-height: 1.5;
}

/* Divisores discretos entre itens (apenas desktop) */
@media (min-width: 993px) {
  .diff-item:not(:last-child) {
    position: relative;
  }
  .diff-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 25%;
    height: 50%;
    width: 1px;
    background-color: rgba(17, 17, 17, 0.15);
  }
}

/* Responsividade */
@media (max-width: 992px) {
  .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .differentials-bar {
    padding: 40px 0;
  }
}

@media (max-width: 576px) {
  .differentials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .differentials-bar {
    padding: 32px 0;
  }
  .diff-item {
    padding: 12px 8px;
  }
  .diff-icon-wrap {
    margin-bottom: 12px;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SOBRE NÃ“S RESUMIDO (BLOCO 2.3)
   Cor de Fundo: Preto/Cinza Escuro (#111111)
   Texto: Branco (#FFFFFF)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.home-about {
  background-color: #111111;
  color: var(--megah-white);
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.home-about-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start; /* Alinha os blocos juntos Ã  direita */
  gap: 0; /* EspaÃ§o Ã© controlado via padding nos elementos */
  width: 100%;
}

/* Watermark */
.home-about-watermark {
  flex: 0 0 20%;
  max-width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: auto; /* Empurra o header e o body para a direita, separando a marca d'Ã¡gua */
}

.home-about-watermark-img {
  width: 100%;
  max-width: 160px;
  height: auto;
  opacity: 0.25;
}

/* TÃ­tulo */
.home-about-header {
  flex: 0 0 30%;
  max-width: 30%;
  border-right: 3px solid var(--megah-burgundy); /* Barra vertical na borda da div do tÃ­tulo */
  padding-right: 45px; /* EspaÃ§o de 45px entre o tÃ­tulo e a barra */
}

.home-about-title {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--megah-white);
  text-align: right !important; /* ForÃ§a o alinhamento Ã  direita das linhas internas */
  margin: 0;
}

/* Corpo de texto */
.home-about-body {
  flex: 0 0 45%;
  max-width: 45%;
  padding-left: 45px; /* EspaÃ§o de 45px entre a barra e o parÃ¡grafo (simÃ©trico!) */
}

.home-about-body p {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.65;
  color: #dddddd;
  text-align: justify;
  margin: 0;
}

/* Responsividade */
@media (max-width: 992px) {
  .home-about {
    padding: 60px 0;
  }
  .home-about-container {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  .home-about-watermark {
    flex: 0 0 auto;
    max-width: 120px;
    margin-right: 0;
  }
  .home-about-header {
    flex: 0 0 auto;
    max-width: 100%;
    border-right: none;
    padding-right: 0;
    border-bottom: 3px solid var(--megah-burgundy);
    padding-bottom: 16px;
  }
  .home-about-title {
    text-align: center !important;
    display: inline-block;
  }
  .home-about-body {
    flex: 0 0 auto;
    max-width: 100%;
    padding-left: 0;
  }
  .home-about-body p {
    text-align: center;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   NOSSOS SEGMENTOS (BLOCO 2.4)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.home-segments {
  background-color: var(--bg-light);
  position: relative;
  z-index: 5;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.segment-card {
  background-color: var(--megah-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Linha inferior de cor como detalhe do card */
.segment-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--megah-yellow);
  transition: background-color var(--ease);
  z-index: 3;
}

/* Hover no card */
.segment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.segment-card:hover::after {
  background-color: var(--megah-burgundy);
}

/* Imagem do card */
.segment-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.segment-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.segment-card:hover .segment-card-image img {
  transform: scale(1.06);
}

/* Overlay sutil para escurecer imagens claras */
.segment-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
}

/* ConteÃºdo de texto do card */
.segment-card-content {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.segment-card-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--megah-black);
  margin-bottom: 14px;
  line-height: 1.2;
}

.segment-card-desc {
  font-weight: 400; /* Regular â€” Brand Manual */
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Link / Call-to-action no card */
.segment-card-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--megah-burgundy);
  transition: color var(--ease), gap var(--ease);
}

.segment-card-link i {
  font-size: 0.8rem;
  transition: transform var(--ease);
}

.segment-card:hover .segment-card-link {
  color: var(--megah-black);
}

.segment-card:hover .segment-card-link i {
  transform: translateX(4px);
}

/* Responsividade */
@media (max-width: 992px) {
  .segments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .segments-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .segment-card-image {
    height: 200px;
  }
  .segment-card-content {
    padding: 24px 20px;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   PROJETOS EM DESTAQUE (BLOCO 2.5)
   Cor de Fundo: #f8f9fa
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.home-projects {
  background-color: #f8f9fa;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.projects-carousel-wrapper {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 40px;
}

.projects-carousel-track-container {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-md);
}

.projects-carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.project-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 4px; /* Evita clipping de shadow */
  box-sizing: border-box;
}

/* Card Estilo Split */
.project-card {
  display: flex;
  flex-direction: row;
  background-color: var(--megah-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Imagem e Badge */
.project-card-image {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  height: 420px;
  overflow: hidden;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-card:hover .project-card-image img {
  transform: scale(1.04);
}

.project-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(17,17,17,0.2) 0%, rgba(17,17,17,0.5) 100%);
  pointer-events: none;
}

.project-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background-color: var(--megah-yellow);
  color: var(--megah-black);
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.725rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  z-index: 5;
  box-shadow: var(--shadow-sm);
  transition: background-color var(--ease), color var(--ease);
}

.project-card:hover .project-badge {
  background-color: var(--megah-burgundy);
  color: var(--megah-white);
}

/* ConteÃºdo */
.project-card-content {
  flex: 1;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: var(--megah-white);
}

.project-card-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.65rem;
  color: var(--megah-black);
  margin-bottom: 16px;
  line-height: 1.25;
}

.project-card-desc {
  font-family: var(--font-primary);
  font-weight: 400; /* Regular â€” Brand Manual */
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
  text-align: justify;
}

.project-card .btn-outline {
  align-self: flex-start;
  padding: 12px 28px;
  border: 2px solid var(--megah-gray-dark);
  color: var(--megah-gray-dark);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.825rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  background-color: transparent;
  transition: all var(--ease);
  text-decoration: none;
}

.project-card .btn-outline:hover {
  background-color: var(--megah-burgundy);
  border-color: var(--megah-burgundy);
  color: var(--megah-white);
}

/* Setas de NavegaÃ§Ã£o */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background-color: var(--megah-white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--megah-gray-dark);
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.carousel-arrow:hover {
  background-color: var(--megah-burgundy);
  color: var(--megah-white);
  border-color: var(--megah-burgundy);
  box-shadow: var(--shadow-md);
}

.carousel-arrow.prev {
  left: -16px;
}

.carousel-arrow.next {
  right: -16px;
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

/* Indicadores (Dots) */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.carousel-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(91, 103, 112, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.carousel-bullet.active {
  background-color: var(--megah-burgundy);
  width: 24px;
  border-radius: 5px;
}

/* Responsividade */
@media (max-width: 992px) {
  .projects-carousel-wrapper {
    padding: 0 20px;
  }
  
  .project-card {
    flex-direction: column;
  }
  
  .project-card-image {
    flex: 0 0 auto;
    max-width: 100%;
    height: 280px;
  }
  
  .project-card-content {
    padding: 32px 24px;
  }
  
  .carousel-arrow {
    width: 48px;
    height: 48px;
    font-size: 0.95rem;
  }
  
  .carousel-arrow.prev {
    left: 4px;
  }

  .carousel-arrow.next {
    right: 4px;
  }
}

@media (max-width: 576px) {
  .home-projects {
    padding: 60px 0;
  }
  
  .project-card-image {
    height: 200px;
  }
  
  .project-card-content {
    padding: 24px 16px;
  }
  
  .project-card-title {
    font-size: 1.35rem;
  }
  
  .carousel-arrow {
    display: none; /* Em mobile puro, ocultamos as setas e usamos swipe + dots */
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   POR QUE A MEGAHPROJ? (BLOCO 2.6)
   Cor de Fundo: Branco (#FFFFFF)
   Texto: Montserrat
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.home-why {
  background-color: var(--megah-white);
  padding: 80px 0;
  position: relative;
  z-index: 5;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 24px;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  background-color: var(--megah-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
              border-color 0.4s ease;
}

/* Linha amarela que aparece no hover */
.why-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

/* Hover no card */
.why-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(153, 0, 0, 0.25);
}

.why-item:hover::after {
  background-color: var(--megah-yellow);
}

/* Wrapper do Ãcone */
.why-icon-wrap {
  font-size: 2.25rem;
  color: var(--megah-gray-dark);
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.4s ease;
}

.why-item:hover .why-icon-wrap {
  transform: scale(1.1) rotate(5deg);
  color: var(--megah-burgundy);
}

/* NÃºmero EstatÃ­stico */
.why-number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--megah-burgundy);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

/* TÃ­tulo do Card */
.why-title {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--megah-black);
  margin-bottom: 10px;
  line-height: 1.3;
}

/* DescriÃ§Ã£o do Card */
.why-desc {
  font-family: var(--font-primary);
  font-weight: 400; /* Regular â€” Brand Manual */
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Responsividade */
@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .home-why {
    padding: 60px 0;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .why-item {
    padding: 28px 16px;
  }
  .why-number {
    font-size: 2.25rem;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   CTA BANNER (BLOCO 2.7)
   Imagem de fundo industrial com overlay escuro
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.home-cta {
  position: relative;
  background-image: url('../assets/images/cta-banner.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll; /* Scroll standard, compatibilidade mobile */
  padding: 100px 0;
  color: var(--megah-white);
  overflow: hidden;
}

@media (max-width: 768px) {
  .home-cta {
    background-image: url('../assets/images/cta-banner-480w.webp');
  }
}

@media (min-width: 993px) {
  .home-cta {
    background-attachment: fixed; /* Parallax suave para desktop */
  }
}

.home-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.65); /* Overlay escuro de acordo com o Brand Manual */
  z-index: 1;
}

.home-cta-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.home-cta-title {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(1.8rem, 2.75vw, 2.6rem);
  color: var(--megah-white);
  margin-bottom: 16px;
  line-height: 1.25;
}

.home-cta-subtitle {
  font-family: var(--font-primary);
  font-weight: 400; /* Regular â€” Brand Manual: texto de leitura */
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #dddddd;
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.home-cta .btn-secondary {
  box-shadow: var(--shadow-sm);
}

.home-cta .btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   CLIENTES (BLOCO 2.8)
   Fundo: Branco (--megah-white)
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.home-clients {
  background-color: var(--megah-white);
  padding: 80px 0;
  position: relative;
  z-index: 5;
}

.clients-carousel-wrapper {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 50px;
}

.clients-carousel-track-container {
  overflow: hidden;
  width: 100%;
}

.clients-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  align-items: center;
}

.clients-carousel-item {
  flex: 0 0 33.333%; /* 3 por slide em desktop, conforme imagem */
  width: 33.333%;
  box-sizing: border-box;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90px;
}

.clients-carousel-item img {
  max-width: 100%;
  max-height: 55px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.clients-carousel-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

/* Responsividade */
@media (max-width: 768px) {
  .home-clients {
    padding: 60px 0;
  }
  .clients-carousel-wrapper {
    padding: 0 20px;
  }
  .clients-carousel-item {
    flex: 0 0 50%; /* 2 por slide em mobile */
    width: 50%;
    padding: 0 12px;
  }
  .clients-carousel-item img {
    max-height: 45px;
  }
}

@media (max-width: 480px) {
  .clients-carousel-item {
    flex: 0 0 100%; /* 1 por slide em mobile pequeno */
    width: 100%;
  }
}


/*
 * â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
 *  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;
  }
}
