/* 
 * Urb Engenharia — Design System
 * Cores, tipografia e classes estruturais baseadas no manual de marca oficial.
 */

/* --- Importação de Fontes --- */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600;700&family=Jost:wght@300;400;500;600;700&family=Oswald:wght@500;600;700&display=swap');

/* --- Variáveis Globais (Media Kit) --- */
:root {
  --primary: #131B33;      /* Azul Corporativo (Solidez e Engenharia) */
  --accent: #2E6BA8;       /* Azul Aço (Ações e Links) */
  --text: #23262E;         /* Grafite (Corpo do Texto) */
  --bg: #F8F7F9;           /* Papel (Fundo Principal) */
  --border: #E0DFE3;       /* Cinza de Borda (Divisores e Bordas) */
  --white: #FFFFFF;
  --success: #25D366;      /* Verde WhatsApp */
  --shadow-sm: 0 2px 8px rgba(35, 38, 46, 0.05);
  --shadow-md: 0 8px 24px rgba(19, 27, 51, 0.08);
  --shadow-lg: 0 16px 48px rgba(19, 27, 51, 0.12);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-title: 'Jost', sans-serif;
  --font-company: 'Oswald', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* --- Reset --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- Tipografia --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--primary);
  font-weight: 600;
  line-height: 1.25;
}

p {
  font-family: var(--font-body);
  color: var(--text);
}

.font-mono {
  font-family: var(--font-mono);
}

/* --- Layout Estrutural --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  text-align: center;
  position: relative;
  padding-bottom: 16px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent);
}

.section-subtitle {
  font-family: var(--font-title);
  font-size: 1.15rem;
  text-align: center;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 48px;
}

/* --- Navbar com Transição Suave de Cor no Scroll --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(248, 247, 249, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 80px;
  display: flex;
  align-items: center;
  transition: background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
              border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
              height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.navbar .nav-link {
  color: var(--text);
  transition: color 0.3s ease;
}

.navbar .nav-link:hover {
  color: var(--accent);
}

.navbar .logo-img {
  filter: none;
  transition: filter 0.3s ease;
}

.navbar .nav-toggle-bar {
  background-color: var(--primary);
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.2s ease;
}

.navbar.scrolled {
  height: 70px;
  background-color: rgba(19, 27, 51, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.88);
}

.navbar.scrolled .nav-link:hover {
  color: var(--white);
}

.navbar.scrolled .logo-img {
  filter: invert(1);
}

.navbar.scrolled .nav-toggle-bar {
  background-color: var(--white);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 44px;
  width: auto;
  transition: var(--transition);
}

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

.nav-cta {
  padding: 10px 20px;
}

/* --- Botões de Ação na Navbar Interna (WhatsApp CTA) --- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  background: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(46, 107, 168, 0.35);
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}

.btn-nav-whatsapp:hover {
  background: #24588d;
  box-shadow: 0 6px 18px rgba(46, 107, 168, 0.5);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .navbar {
    height: 68px;
  }
  .navbar.scrolled {
    height: 60px;
  }
  .navbar-container {
    padding: 0 16px;
  }
  .logo-img {
    height: 38px;
  }
}

@media (max-width: 600px) {
  .btn-nav-whatsapp {
    padding: 8px 13px;
    font-size: 0.84rem;
    gap: 6px;
  }
  .logo-img {
    height: 35px;
    max-width: 140px;
  }
}

@media (max-width: 400px) {
  .btn-nav-whatsapp {
    padding: 7px 10px;
    font-size: 0.78rem;
    gap: 5px;
  }
  .btn-nav-whatsapp svg {
    width: 15px;
    height: 15px;
  }
  .logo-img {
    height: 32px;
    max-width: 125px;
  }
}

/* --- Botão hambúrguer (oculto no desktop) --- */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 6px;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease, background-color 0.3s ease;
  transform-origin: center;
}

.navbar.scrolled .nav-toggle-bar {
  background-color: var(--white);
}

/* Vira "X" quando aberto */
.nav-toggle.is-active .nav-toggle-bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.nav-toggle.is-active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(19, 27, 51, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.nav-backdrop[hidden] {
  display: none;
}

/* Trava o scroll do fundo com o menu aberto */
body.nav-aberto {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.nav-link {
  font-family: var(--font-title);
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

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

/* --- Botões --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  letter-spacing: 0.02em;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(46, 107, 168, 0.25);
}

.btn-primary:hover {
  background-color: #24588d;
  border-color: #24588d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 107, 168, 0.4);
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-outline:hover {
  background-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(46, 107, 168, 0.3);
}

.hero-btn-primary {
  padding: 15px 30px;
  font-size: 1rem;
}

.hero-btn-outline {
  padding: 15px 30px;
  font-size: 1rem;
  background: rgba(19, 27, 51, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  color: var(--white);
}

.btn-icon, .btn-arrow {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.hero-btn-primary:hover .btn-icon,
.service-btn-more:hover .btn-arrow,
.service-cta:hover .btn-arrow {
  transform: translateX(5px);
}

/* Botão WhatsApp */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 4px 16px rgba(18, 140, 126, 0.28), 0 2px 4px rgba(37, 211, 102, 0.2);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #20BA5A 0%, #0d6e63 100%) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(18, 140, 126, 0.38), 0 4px 10px rgba(37, 211, 102, 0.25);
  color: #FFFFFF !important;
}

.btn-whatsapp:active {
  transform: scale(0.98);
}

/* Grupo de Botões dos Blocos de Serviços */
.service-btn-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.service-btn-wa {
  padding: 13px 26px;
  font-size: 0.95rem;
  border-radius: 8px;
}

.service-btn-wa .btn-wa-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-btn-wa:hover .btn-wa-icon {
  transform: scale(1.15) rotate(-6deg);
}

.service-btn-more {
  padding: 13px 24px;
  font-size: 0.95rem;
  border-radius: 8px;
  background: #FFFFFF !important;
  border: 1.5px solid var(--accent) !important;
  color: var(--accent) !important;
  box-shadow: 0 2px 8px rgba(46, 107, 168, 0.08);
}

.service-btn-more:hover {
  background: var(--accent) !important;
  color: #FFFFFF !important;
  border-color: var(--accent) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 107, 168, 0.28);
}

.btn-submit-quote {
  width: 100%;
  padding: 15px 24px;
  font-size: 1.05rem;
  background: #25D366;
  border-color: #25D366;
  color: #FFFFFF;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-submit-quote:hover {
  background: #20BA5A;
  border-color: #20BA5A;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-wa-icon {
  flex-shrink: 0;
}

.btn-white {
  background-color: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background-color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

/* --- Hero Section (100% Estático, Imóvel e sem Repaint no Mobile) --- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  padding: 80px 0 40px 0;
  text-align: center;
  contain: paint layout;
}

.hero-media-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-static-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-static-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
    rgba(19, 27, 51, 0.40) 0%,
    rgba(19, 27, 51, 0.65) 50%,
    rgba(19, 27, 51, 0.88) 100%);
  pointer-events: none;
}

.hero-bg-img,
.hero-color-filter,
.hero-overlay,
.hero-overlay-gradient {
  display: none !important;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 24px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  max-width: 950px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.hero-title {
  color: var(--white);
  font-family: var(--font-company);
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.hero-sub {
  font-family: var(--font-mono);
  font-size: clamp(0.78rem, 1.15vw, 0.95rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 34px;
  line-height: 1.5;
  max-width: 850px;
  text-align: center;
  text-wrap: balance;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.hero .hero-btn-primary,
.hero .hero-btn-outline {
  width: auto;
  padding: 14px 28px;
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 24px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  max-width: 950px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.hero-title {
  color: var(--white);
  font-family: var(--font-company);
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.hero-sub {
  font-family: var(--font-mono);
  font-size: clamp(0.78rem, 1.15vw, 0.95rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 34px;
  line-height: 1.5;
  max-width: 850px;
  text-align: center;
  text-wrap: balance;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}


/* --- Placa do logotipo (seção Diferenciais) --- */
.why-us-placa {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 380px;
  overflow: hidden; /* trava de segurança: a logo nunca vaza da placa */
}

/*
 * A logo era ampliada com transform: scale(2.8) sobre um max-width de 90%,
 * o que a fazia estourar a placa e gerar rolagem horizontal em toda a página.
 * Agora o tamanho vem da própria largura, que respeita o container.
 */
.why-us-logo {
  width: min(78%, 380px);
  height: auto;
  object-fit: contain;
}

/* ==========================================================================
   SEÇÃO DE SERVIÇOS & ATUAÇÃO TÉCNICA (GRID DE CARDS PREMIUM)
   ========================================================================== */
.services-section {
  padding: 100px 0;
  background-color: #F4F3F6;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.services-section .container {
  max-width: 1140px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(19, 27, 51, 0.08);
  border-top: 4px solid var(--accent);
  border-radius: 12px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(19, 27, 51, 0.06);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(19, 27, 51, 0.12);
  border-color: var(--accent);
}

.service-card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-mono-num {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.service-title-block {
  font-family: var(--font-title);
  font-size: 1.55rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.25;
}

.service-desc-block {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 22px;
}

.service-specialties {
  list-style: none;
  padding: 0;
  margin: 0 0 26px 0;
}

.service-specialties li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.4;
}

.service-specialties li svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
}

.service-card .service-btn-group {
  display: flex;
  gap: 12px;
  margin-top: auto;
  width: 100%;
}

.service-card .service-btn-group .btn {
  flex: 1;
  justify-content: center;
  font-size: 0.92rem;
  padding: 13px 18px;
}

/* Responsividade da Seção de Serviços */
@media (max-width: 900px) {
  .services-grid {
    gap: 20px;
  }
  .service-card {
    padding: 28px 22px;
  }
  .service-card .service-btn-group {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 680px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service-card {
    padding: 26px 18px;
  }
  .services-section {
    padding: 60px 0;
  }
  .service-card .service-btn-group {
    flex-direction: column;
    gap: 10px;
  }
}


/* Placeholder Sketchfab (Lazy-load 3D) */
.ratio-16-9 {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.ratio-inner {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.js-sketchfab-placeholder {
  cursor: pointer;
  background-color: var(--bg);
}

.sketchfab-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(19, 27, 51, 0.7);
  color: var(--white);
  padding: 24px;
  transition: var(--transition);
}

.sketchfab-overlay svg {
  margin-bottom: 12px;
  transition: var(--transition);
}

.sketchfab-overlay span {
  font-family: var(--font-title);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.js-sketchfab-placeholder:hover .sketchfab-overlay {
  background: rgba(19, 27, 51, 0.8);
}

.js-sketchfab-placeholder:hover .sketchfab-overlay svg {
  transform: scale(1.15);
}

.js-sketchfab-placeholder.is-loaded .sketchfab-overlay {
  display: none;
}

/* --- Diferenciais / Placa (Fundo Escuro Corporativo em Alto Contraste) --- */
.why-us {
  padding: 110px 0;
  background-color: var(--primary);
  background: radial-gradient(circle at 85% 30%, #1a2544 0%, #131B33 75%);
  color: var(--white);
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.why-us-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-us-tag {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: #5BA2E6;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.why-us-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.why-us-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.why-us-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(91, 162, 230, 0.4);
  transform: translateX(6px);
}

.why-us-num {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: #5BA2E6;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-us-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.why-us-text p {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

/* Placa de Engenharia Arquitetural (Branco Puro em Alto Contraste sobre fundo escuro) */
.why-us-placa {
  background-color: var(--white);
  border: 3px solid var(--primary);
  border-radius: 12px;
  padding: 48px 36px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
  position: relative;
}

.why-us-placa::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(19, 27, 51, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.why-us-logo {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
}

.why-us-placa-crea {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--primary);
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  border-top: 2px solid var(--primary);
  padding-top: 16px;
  width: 85%;
}

/* --- FAQ / Dúvidas Frequentes acordeão --- */
.faq {
  padding: 100px 0;
  background-color: #F4F3F6;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-container details {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(19, 27, 51, 0.04);
  transition: var(--transition);
}

.faq-container details:hover {
  box-shadow: 0 8px 24px rgba(19, 27, 51, 0.08);
  border-color: rgba(46, 107, 168, 0.4);
}

.faq-container details[open] {
  border-color: var(--accent);
  box-shadow: 0 8px 28px rgba(19, 27, 51, 0.1);
}

.faq-container summary {
  list-style: none;
  cursor: pointer;
  padding: 24px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-container summary::-webkit-details-marker {
  display: none;
}

.faq-container summary::after {
  content: '+';
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
  transition: var(--transition);
  font-weight: 500;
}

.faq-container details[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 24px 24px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  border-top: 1px solid rgba(224, 223, 227, 0.5);
  padding-top: 16px;
}

/* --- Contato / Rodapé --- */
.footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 100px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
  height: 48px;
  align-self: flex-start;
  filter: invert(1);
}

.footer-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact-item svg {
  color: var(--accent);
}

.footer-form-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 40px;
}

.footer-form-title {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.footer-form-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-control:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--font-title);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --- WhatsApp Botão Flutuante --- */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background-color: var(--success);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
  color: var(--white);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* ==========================================================================
   RESPONSIVIDADE MOBILE PROFISSIONAL (SMARTPHONES & TABLETS)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero {
    height: 100svh !important;
    min-height: 100svh !important;
    max-height: 100svh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 85px 0 35px 0 !important;
    overflow: hidden !important;
  }
  .hero-bg-img {
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  .hero-content-wrapper {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 0;
  }
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  .hero-btns {
    justify-content: center;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  /* Espaçamentos e títulos */
  section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 1.85rem;
    margin-bottom: 12px;
    padding-bottom: 12px;
    text-wrap: balance;
    text-align: center;
  }
  .section-title::after {
    width: 45px;
    height: 3px;
  }
  .section-subtitle {
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    margin-bottom: 32px;
    padding: 0 8px;
    text-wrap: balance;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Navbar mobile com transição suave de cor no scroll */
  .navbar {
    height: 70px !important;
    background-color: rgba(248, 247, 249, 0.90) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid var(--border) !important;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
  }
  .navbar .logo-img {
    filter: none !important;
    transition: filter 0.3s ease !important;
  }
  .navbar .nav-toggle-bar {
    background-color: var(--primary) !important;
    transition: background-color 0.3s ease !important;
  }
  .navbar.scrolled {
    height: 70px !important;
    background-color: rgba(19, 27, 51, 0.96) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
  }
  .navbar.scrolled .logo-img {
    filter: invert(1) !important;
  }
  .navbar.scrolled .nav-toggle-bar {
    background-color: var(--white) !important;
  }
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    width: min(85vw, 320px);
    height: 100%;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 85px 24px calc(24px + env(safe-area-inset-bottom));
    background-color: var(--primary);
    box-shadow: -8px 0 32px rgba(19, 27, 51, 0.35);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu.is-open {
    transform: translateX(0);
  }

  .nav-menu .nav-link {
    display: flex;
    align-items: center;
    min-height: 52px;
    width: 100%;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar.scrolled .nav-menu .nav-link {
    color: rgba(255, 255, 255, 0.92);
  }

  .nav-menu .nav-link::after {
    display: none;
  }

  .nav-menu .nav-cta {
    justify-content: center;
    margin-top: 24px;
    padding: 16px 20px;
    font-size: 1rem;
    text-align: center;
    border-bottom: 0;
  }

  /* Hero Section Mobile — 100% Imóvel, Intacta e Firme na Primeira Dobra */
  .hero {
    position: relative !important;
    width: 100% !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    background-color: var(--primary) !important;
    background-image: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 85px 20px 35px 20px !important;
    text-align: center !important;
    overflow: hidden !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    contain: paint layout !important;
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    text-align: center !important;
  }
  .hero-image-card {
    height: 260px !important;
  }
  .hero-content-wrapper {
    position: relative !important;
    z-index: 3 !important;
    width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
  }
  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }
  .hero-title {
    font-size: clamp(2.4rem, 11vw, 3.8rem);
    line-height: 1.08;
    margin-bottom: 16px;
    text-wrap: balance;
    text-align: center;
  }
  .hero-sub {
    font-size: clamp(0.68rem, 2.6vw, 0.82rem);
    letter-spacing: 0.06em;
    margin-bottom: 26px;
    text-wrap: balance;
    word-break: normal;
    text-align: center;
    max-width: 480px;
    line-height: 1.55;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
  }
  .hero-btn-primary,
  .hero-btn-outline {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    text-align: center;
    padding: 14px 20px;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  /* Serviços Cards */
  .services-section {
    padding: 60px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 28px;
  }
  .service-card {
    padding: 28px 20px;
    border-radius: 10px;
  }
  .service-mono-num {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }
  .service-title-block {
    font-size: 1.4rem;
    margin-bottom: 12px;
    text-wrap: balance;
    line-height: 1.25;
  }
  .service-desc-block {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 18px;
    text-wrap: pretty;
  }
  .service-specialties {
    margin-bottom: 22px;
  }
  .service-specialties li {
    font-size: 0.88rem;
    margin-bottom: 10px;
    line-height: 1.4;
    text-wrap: pretty;
  }
  .service-card .service-btn-group {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .service-card .service-btn-group .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    padding: 13px 18px;
    font-size: 0.92rem;
  }

  /* Diferenciais / Placa */
  .why-us {
    padding: 60px 0;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .why-us-title {
    font-size: 1.6rem;
    line-height: 1.25;
    text-wrap: balance;
    text-align: center;
  }
  .why-us-item {
    gap: 14px;
    padding: 16px;
    align-items: flex-start;
  }
  .why-us-num {
    font-size: 1.5rem;
    flex-shrink: 0;
  }
  .why-us-text h3 {
    font-size: 1.1rem;
    text-wrap: balance;
  }
  .why-us-text p {
    font-size: 0.9rem;
    line-height: 1.55;
    text-wrap: pretty;
  }
  .why-us-placa {
    padding: 32px 20px;
    gap: 18px;
  }
  .why-us-logo {
    max-width: 210px;
  }

  /* Dúvidas / FAQ */
  .faq {
    padding: 60px 0;
  }
  .faq-container {
    gap: 12px;
  }
  .faq-container summary {
    padding: 18px 16px;
    font-size: 0.98rem;
    gap: 12px;
    text-wrap: balance;
  }
  .faq-container summary::after {
    font-size: 1.3rem;
  }
  .faq-content {
    padding: 0 16px 18px;
    padding-top: 12px;
    font-size: 0.9rem;
    line-height: 1.6;
    text-wrap: pretty;
  }

  /* Rodapé & Contato */
  .footer {
    padding: 60px 0 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 40px;
  }
  .footer-logo {
    height: 40px;
  }
  .footer-info p {
    font-size: 0.9rem;
    text-wrap: pretty;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .btn-submit-quote {
    width: 100%;
    padding: 15px 20px;
    font-size: 0.95rem;
    justify-content: center;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding-top: 28px;
  }

  /* Botão Flutuante WhatsApp */
  .whatsapp-float {
    bottom: calc(20px + env(safe-area-inset-bottom));
    right: 20px;
    width: 54px;
    height: 54px;
    z-index: 998;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* Evita zoom indesejado no iOS Safari ao tocar em inputs (exige >= 16px) */
@media (max-width: 768px) {
  input,
  select,
  textarea,
  .form-control {
    font-size: 16px !important;
  }
}

/* Telas ultra-compactas (iPhone SE / Galaxy Fold < 360px) */
@media (max-width: 360px) {
  .hero-title {
    font-size: 2.1rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .service-card {
    padding: 22px 14px;
  }
}

/* --- Trava global contra rolagem horizontal --- */
html,
body {
  overflow-x: clip;
  max-width: 100vw;
}

/* --- Respeita quem pediu menos animação no sistema --- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   MOBILE UX & RESPONSIVIDADE ULTRA-POLIDA (320px - 768px)
   ========================================================================== */

/* Ajustes da Barra de Navegação */
@media (max-width: 600px) {
  .navbar {
    height: 60px !important;
  }
  .navbar-container {
    padding: 0 14px !important;
  }
  .logo-img {
    height: 32px !important;
    max-width: 110px !important;
  }
  .btn-nav-whatsapp {
    padding: 7px 12px !important;
    font-size: 0.82rem !important;
    gap: 5px !important;
  }
  .btn-nav-whatsapp svg {
    width: 15px !important;
    height: 15px !important;
  }
}

@media (max-width: 360px) {
  .btn-nav-whatsapp span {
    font-size: 0.78rem !important;
  }
  .btn-nav-whatsapp {
    padding: 6px 9px !important;
  }
}

/* Hero Section Mobile */
@media (max-width: 768px) {
  .hero {
    min-height: 85vh !important;
    min-height: 85svh !important;
    padding: 75px 16px 30px 16px !important;
  }
  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.6rem) !important;
    letter-spacing: 0.04em !important;
    margin-bottom: 12px !important;
  }
  .hero-sub {
    font-size: clamp(0.72rem, 3vw, 0.95rem) !important;
    letter-spacing: 0.06em !important;
    line-height: 1.4 !important;
    margin-bottom: 22px !important;
    padding: 0 4px !important;
  }
  .hero-btns {
    width: 100% !important;
    max-width: 340px !important;
    margin: 0 auto !important;
  }
  .hero-btns .btn {
    width: 100% !important;
    padding: 13px 18px !important;
    font-size: 0.92rem !important;
    min-height: 48px !important;
  }

  /* Cards de Banner de Preview (LPs de Serviços) */
  .portfolio-banner-card {
    padding: 28px 18px !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 20px !important;
    border-radius: 10px !important;
  }
  .portfolio-banner-card h2 {
    font-size: 1.4rem !important;
    margin-bottom: 10px !important;
  }
  .portfolio-banner-card p {
    font-size: 0.9rem !important;
  }
  .portfolio-banner-card .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Filtros nos Portfólios */
  .cases-filter-section {
    top: 60px !important;
    padding: 10px 0 !important;
  }
  .cases-filter-bar {
    gap: 8px !important;
    padding: 0 16px 4px 16px !important;
    -webkit-overflow-scrolling: touch;
  }
  .filter-btn {
    padding: 6px 12px !important;
    font-size: 0.82rem !important;
    border-radius: 5px !important;
  }

  /* Cards de Casos Reais nos Portfólios */
  .case-card {
    grid-template-columns: 1fr !important;
    border-radius: 10px !important;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.05) !important;
  }
  .case-visual-wrapper {
    padding: 14px !important;
    border-radius: 10px 10px 0 0 !important;
  }
  .case-main-img-container {
    height: clamp(200px, 52vw, 290px) !important;
  }
  .case-content {
    padding: 22px 16px !important;
  }
  .case-title {
    font-size: 1.25rem !important;
    margin-bottom: 12px !important;
  }
  .case-block {
    padding: 12px 14px !important;
    margin-bottom: 14px !important;
  }
  .case-block p {
    font-size: 0.86rem !important;
    line-height: 1.5 !important;
  }
  .case-specs-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    padding: 10px !important;
    margin-bottom: 18px !important;
  }
  .spec-item {
    font-size: 0.78rem !important;
  }
  .spec-item strong {
    font-size: 0.7rem !important;
  }
  .case-footer {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    padding-top: 14px !important;
  }
  .case-badge-art {
    justify-content: center !important;
    font-size: 0.75rem !important;
  }
  .case-footer .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 12px !important;
  }

  /* Lightbox Mobile */
  .lightbox-modal {
    padding: 12px !important;
  }
  .lightbox-close {
    top: 14px !important;
    right: 14px !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 24px !important;
  }
  .lightbox-img-wrapper {
    max-width: 96vw !important;
  }
  .lightbox-img {
    max-height: 65vh !important;
  }
  .lightbox-caption {
    font-size: 0.78rem !important;
    padding: 8px 12px !important;
    max-width: 94vw !important;
    line-height: 1.35 !important;
  }

  /* Página de Perfil do Engenheiro (/engenheiroviniciusurbanek) */
  .profile-hero {
    padding: 75px 0 35px 0 !important;
  }
  .profile-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    text-align: center !important;
  }
  .profile-hero-title {
    font-size: clamp(1.75rem, 6.5vw, 2.3rem) !important;
    margin-bottom: 8px !important;
  }
  .profile-hero-role {
    justify-content: center !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
  }
  .profile-hero-desc {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    margin: 0 auto 20px auto !important;
  }
  .profile-cta-group {
    justify-content: center !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
  }
  .profile-cta-group .btn {
    width: 100% !important;
    justify-content: center !important;
  }
  .profile-photo-wrapper {
    order: -1;
    display: flex;
    justify-content: center;
  }
  .profile-photo-card {
    max-width: 220px !important;
    border-radius: 12px !important;
  }
  .profile-stats-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    margin-top: 24px !important;
  }
  .stat-pill {
    padding: 10px 8px !important;
  }
  .stat-pill svg {
    width: 20px !important;
    height: 20px !important;
  }
  .stat-pill-text strong {
    font-size: 0.9rem !important;
  }
  .stat-pill-text span {
    font-size: 0.7rem !important;
  }
  .profile-grid-main {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .profile-sidebar {
    position: static !important;
  }
}

@media (max-width: 440px) {
  .profile-stats-grid {
    grid-template-columns: 1fr !important;
  }
}
