/* ================================================================
   NGOMA ZITA — style.css (Ficheiro Principal Centralizado)
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #1A3C6E;
  --blue-light: #234e8f;
  --yellow: #F5A623;
  --white: #FFFFFF;
  --gray-light: #F5F5F5;
  --gray-dark: #333333;
  --gray-mid: #6B7280;
  --radius-sm: 8px;
  --radius-md: 12px;
  --shadow: 0 4px 24px rgba(26,60,110,0.10);
  --shadow-lg: 0 8px 40px rgba(26,60,110,0.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ================================================================
   NAVBAR — Transparente (home) e Fixa (páginas internas)
   ================================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Navbar transparente (home) — torna-se branca ao rolar */
nav.transparent { background: transparent; }
nav.transparent.scrolled,
nav.solid {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(26,60,110,0.10);
}

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  letter-spacing: -0.5px;
  transition: color 0.3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
  z-index: 10;
}

nav.solid .nav-logo,
nav.transparent.scrolled .nav-logo { color: var(--blue); }

.nav-logo-icon {
  width: 34px;
  height: 34px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-icon img { width: 20px; height: 20px; display: block; }
.nav-logo span { color: var(--yellow); }
nav.solid .nav-logo span,
nav.transparent.scrolled .nav-logo span { color: var(--yellow); }

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.90);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.2s;
}

nav.solid .nav-links a,
nav.transparent.scrolled .nav-links a { color: var(--gray-dark); }

.nav-links a.active {
  background: var(--blue);
  color: var(--white) !important;
}

.nav-links a:hover:not(.active) { background: rgba(255,255,255,0.15); }
nav.solid .nav-links a:hover:not(.active),
nav.transparent.scrolled .nav-links a:hover:not(.active) { background: var(--gray-light); }

/* Botões de idioma */
.nav-lang {
  display: flex;
  gap: 4px;
  align-items: center;
  z-index: 10;
}

.lang-btn {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 4px;
  color: var(--white);
  cursor: pointer;
  background: transparent;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

nav.solid .lang-btn,
nav.transparent.scrolled .lang-btn { border-color: #ddd; color: var(--gray-dark); }
.lang-btn.active-lang { background: var(--yellow); border-color: var(--yellow); color: var(--gray-dark) !important; }
.lang-btn:hover { opacity: 0.8; }

/* ── MENU MOBILE (Hambúrguer) ── */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  font-size: 20px;
  color: var(--white);
  background: transparent;
  border: none;
  z-index: 10;
  transition: all 0.2s;
}

nav.solid .nav-toggle,
nav.transparent.scrolled .nav-toggle { color: var(--gray-dark); }
.nav-toggle:hover { background: rgba(255,255,255,0.15); }
nav.solid .nav-toggle:hover { background: var(--gray-light); }

/* Gaveta Mobile */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  padding: 24px 8%;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

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

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-dark);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid #F0F0F0;
  transition: color 0.2s;
}

.mobile-nav-links a.active { color: var(--blue); }
.mobile-nav-links a:hover { color: var(--yellow); }

.mobile-lang {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.mobile-lang .lang-btn {
  font-size: 14px;
  padding: 8px 16px;
  border-color: #ddd;
  color: var(--gray-dark);
}

/* ================================================================
   SECÇÕES BASE
   ================================================================ */
section { padding: 96px 8%; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--gray-mid);
  line-height: 1.7;
  max-width: 560px;
}

/* ================================================================
   BOTÕES GLOBAIS
   ================================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--gray-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.40); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s;
}

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

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  letter-spacing: 0.3px;
}

.btn-cta:hover {
  background: var(--yellow);
  color: var(--gray-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.35);
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--yellow);
  color: var(--gray-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-download:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.35); }
.btn-download svg { width: 18px; height: 18px; fill: var(--gray-dark); }

/* ================================================================
   PAGE HERO (subpáginas)
   ================================================================ */
.page-hero {
  margin-top: 72px;
  background: linear-gradient(135deg, var(--blue) 0%, #0f2647 100%);
  padding: 80px 8% 88px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  right: -5%; top: -30%;
  width: 480px; height: 480px;
  border: 70px solid rgba(245,166,35,0.08);
  border-radius: 50%;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: 12%; bottom: -40%;
  width: 280px; height: 280px;
  border: 40px solid rgba(255,255,255,0.04);
  border-radius: 50%;
}

.page-hero-inner { position: relative; z-index: 1; max-width: 680px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  margin-bottom: 20px;
}

.breadcrumb a { color: rgba(255,255,255,0.50); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: var(--yellow); font-weight: 600; }

.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.page-hero h1 em { font-style: normal; color: var(--yellow); }

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 560px;
}

/* ================================================================
   HERO (Home)
   ================================================================ */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26,60,110,0.88) 0%, rgba(26,60,110,0.60) 60%, rgba(0,0,0,0.30) 100%),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8%;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 em { font-style: normal; color: var(--yellow); }

.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 720px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* ================================================================
   SERVIÇOS (home)
   ================================================================ */
.services { background: var(--gray-light); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.card:hover::before { transform: scaleX(1); }
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(26, 60, 110, 0.14);
  border-color: rgba(245, 166, 35, 0.3);
}

.card:hover .card-icon {
  background: var(--blue);
  color: var(--yellow);
  transform: scale(1.08) rotate(3deg);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(26, 60, 110, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--blue);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.65;
  margin-bottom: 24px;
}

.card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  transition: gap 0.2s;
}

.card-link:hover { gap: 10px; color: var(--yellow); }

/* ================================================================
   PORQUÊ NÓS (home)
   ================================================================ */
.why {
  background: var(--blue);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  right: -10%; top: -20%;
  width: 500px; height: 500px;
  border: 80px solid rgba(245,166,35,0.08);
  border-radius: 50%;
}

.why::after {
  content: '';
  position: absolute;
  right: 5%; bottom: -30%;
  width: 300px; height: 300px;
  border: 50px solid rgba(255,255,255,0.04);
  border-radius: 50%;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why .section-label { color: var(--yellow); }
.why .section-title { color: var(--white); }
.why .section-sub { color: rgba(255,255,255,0.70); }
.why-text { margin-bottom: 40px; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: background 0.2s;
}

.stat-card:hover { background: rgba(255,255,255,0.12); }

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ================================================================
   PARCEIROS (home)
   ================================================================ */
.partners { background: var(--white); text-align: center; }
.partners-header { margin-bottom: 48px; }

.marquee-wrapper {
  overflow: hidden;
  position: relative;
  padding: 8px 0;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
}

.marquee-wrapper::before { left: 0; background: linear-gradient(to right, white, transparent); }
.marquee-wrapper::after { right: 0; background: linear-gradient(to left, white, transparent); }

.marquee-track {
  display: flex;
  gap: 72px;
  align-items: center;
  animation: marquee 26s linear infinite;
  width: max-content;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-track:hover { animation-play-state: paused; }

.partner-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #94A3B8;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  padding: 10px 20px;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-logo img {
  max-height: 56px;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.65);
  transition: filter 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.partner-logo span {
  color: #94A3B8;
  font-size: 18px;
  transition: color 0.35s ease, transform 0.35s ease;
  display: inline-block;
}

/* Hover: Revela cor original + Zoom suave */
.partner-logo:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.12);
}

.partner-logo:hover span {
  color: var(--blue);
  transform: scale(1.08);
}

/* ================================================================
   LOCALIZAÇÃO (home & sobre)
   ================================================================ */
.location { background: var(--gray-light); }

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

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

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px; height: 44px;
  background: var(--blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.5;
}

.map-wrapper {
  height: 340px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ================================================================
   FORMULÁRIO DE CONTACTO (home)
   ================================================================ */
.contact-form {
  background: var(--blue);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.form-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.form-title-area .section-label { color: var(--yellow); }
.form-title-area .section-title { color: var(--white); }
.form-title-area .section-sub { color: rgba(255,255,255,0.65); margin-bottom: 0; }

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

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.30); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  background: rgba(255,255,255,0.12);
}

.form-group select option { background: var(--blue); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }

.btn-send {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--gray-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.3px;
}

.btn-send:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.35); }
.btn-send:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ================================================================
   PÁGINA SOBRE — Seções específicas
   ================================================================ */
.about-intro { background: var(--white); }

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

.about-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: var(--gray-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text p:last-of-type { margin-bottom: 32px; }

.about-image { position: relative; }

.about-image-main {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #c8d8ee 0%, #a3bcd8 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 13px;
  border: none;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-image-main span { font-size: 40px; }

.about-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--yellow);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
}

.about-badge .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.about-badge .lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  opacity: 0.75;
}

/* MVV */
.mvv { background: var(--gray-light); }
.mvv-header { text-align: center; margin-bottom: 56px; }
.mvv-header .section-sub { margin: 0 auto; text-align: center; }

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

.mvv-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.mvv-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.mvv-card:hover::after { transform: scaleX(1); }

.mvv-icon {
  width: 56px; height: 56px;
  background: rgba(26,60,110,0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}

.mvv-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 12px;
}

.mvv-card p { font-size: 15px; color: var(--gray-mid); line-height: 1.75; }

.values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.5;
}

.values-list li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

/* Team / Board da Empresa */
.team {
  background: var(--white);
  padding: 96px 8%;
  border-top: 1px solid #F1F5F9;
}

.team-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.team-header .section-label {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-header .section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.team-header .section-sub {
  font-size: 16px;
  color: var(--gray-mid);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 640px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
  justify-content: center;
}

.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue);
  box-shadow: 0 16px 36px rgba(26, 60, 110, 0.12);
}

.team-photo {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #1A3C6E 0%, #2563EB 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.06);
}

.team-photo i {
  color: #FFFFFF;
  opacity: 0.85;
  transition: transform 0.3s ease;
}

.team-card:hover .team-photo i {
  transform: scale(1.1);
}

.team-info {
  background: var(--white);
  padding: 24px;
  border-top: 4px solid var(--yellow);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-info h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #D97706;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.team-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.3;
  margin-bottom: 8px;
}

.team-info p {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .team-photo {
    height: 260px;
  }
}

/* CTA portfólio (sobre) */
.portfolio-cta {
  background: var(--blue);
  position: relative;
  overflow: hidden;
}

.portfolio-cta::before {
  content: '';
  position: absolute;
  left: -8%; top: -60%;
  width: 500px; height: 500px;
  border: 80px solid rgba(245,166,35,0.07);
  border-radius: 50%;
}

.portfolio-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.portfolio-cta .section-label { color: var(--yellow); }
.portfolio-cta .section-title { color: var(--white); margin-bottom: 12px; }
.portfolio-cta p { font-size: 16px; color: rgba(255,255,255,0.68); line-height: 1.7; max-width: 560px; }

/* ================================================================
   PÁGINA SERVIÇOS — Seções específicas
   ================================================================ */
.services-nav {
  background: var(--gray-light);
  padding: 0 8%;
  border-bottom: 1px solid #E5E7EB;
  position: sticky;
  top: 72px;
  z-index: 50;
}

.services-nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
}

.services-nav-inner::-webkit-scrollbar { display: none; }

.snav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-mid);
  text-decoration: none;
  padding: 18px 24px;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.snav-link i { font-size: 13px; }
.snav-link:hover { color: var(--blue); border-bottom-color: rgba(26,60,110,0.2); }
.snav-link.active { color: var(--blue); border-bottom-color: var(--yellow); }

.service-block { padding: 96px 8%; }
.service-block:nth-child(even) { background: var(--gray-light); }
.service-block:nth-child(odd) { background: var(--white); }

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

.service-block:nth-child(even) .service-inner { direction: rtl; }
.service-block:nth-child(even) .service-content { direction: ltr; }
.service-block:nth-child(even) .service-visual { direction: ltr; }

.service-icon-lg {
  width: 64px; height: 64px;
  background: rgba(26,60,110,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--blue);
  margin-bottom: 24px;
}

.service-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.service-content > p {
  font-size: 16px;
  color: var(--gray-mid);
  line-height: 1.8;
  margin-bottom: 28px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.5;
}

.feat-dot {
  width: 22px; height: 22px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.feat-dot svg { width: 11px; height: 11px; fill: var(--blue); }

.service-visual { position: relative; }

.service-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.service-img:hover img { transform: scale(1.04); }

.service-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--blue);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.service-badge .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}

.service-badge .lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  margin-top: 4px;
}

/* CTA Final */
.cta-final {
  background: var(--blue);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  left: 50%; top: -60%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border: 80px solid rgba(245,166,35,0.07);
  border-radius: 50%;
}

.cta-final-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-final .section-label { color: var(--yellow); }
.cta-final .section-title { color: var(--white); margin-bottom: 16px; }
.cta-final p { font-size: 17px; color: rgba(255,255,255,0.68); line-height: 1.7; margin-bottom: 40px; }

/* ================================================================
   PÁGINA PORTFÓLIO — Seções específicas
   ================================================================ */
.stats-bar {
  background: var(--yellow);
  padding: 24px 8%;
}

.stats-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.stat-item { text-align: center; }

.stat-item .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.stat-item .lbl {
  font-size: 13px;
  font-weight: 600;
  color: rgba(26,60,110,0.70);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(26,60,110,0.18);
}

.portfolio-section {
  padding: 80px 8% 96px;
  background: var(--white);
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

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

.filter-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 100px;
  border: 2px solid #E5E7EB;
  background: transparent;
  color: var(--gray-mid);
  cursor: pointer;
  transition: all 0.22s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.active { background: var(--blue); border-color: var(--blue); color: var(--white); }

.filter-count {
  font-size: 11px;
  background: rgba(255,255,255,0.22);
  padding: 1px 7px;
  border-radius: 100px;
  font-weight: 600;
}

.filter-btn:not(.active) .filter-count { background: var(--gray-light); color: var(--gray-mid); }

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

.portfolio-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.3s ease;
  position: relative;
}

.portfolio-item.hidden { display: none; }
.portfolio-item.fade-out { opacity: 0; transform: scale(0.96); }
.portfolio-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.portfolio-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  font-size: 42px;
}

.portfolio-thumb.bg-1 { background: linear-gradient(135deg, #b8cce4 0%, #7aaad0 100%); }
.portfolio-thumb.bg-2 { background: linear-gradient(135deg, #c4d4b0 0%, #8aad6e 100%); }
.portfolio-thumb.bg-3 { background: linear-gradient(135deg, #d4c4b0 0%, #c09070 100%); }
.portfolio-thumb.bg-4 { background: linear-gradient(135deg, #c4b8d4 0%, #9070c0 100%); }
.portfolio-thumb.bg-5 { background: linear-gradient(135deg, #b8d4d0 0%, #60a8a0 100%); }
.portfolio-thumb.bg-6 { background: linear-gradient(135deg, #d4d0b8 0%, #c0b060 100%); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,60,110,0.90) 0%, rgba(26,60,110,0.20) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.overlay-content { color: var(--white); }

.overlay-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.overlay-content p { font-size: 13px; color: rgba(255,255,255,0.72); }

.overlay-icon {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.portfolio-item:hover .overlay-icon { opacity: 1; transform: scale(1); }

.portfolio-info {
  padding: 18px 20px 20px;
  background: var(--white);
  border-top: 3px solid transparent;
  transition: border-color 0.2s;
}

.portfolio-item:hover .portfolio-info { border-top-color: var(--yellow); }

.portfolio-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 6px;
}

.portfolio-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}

.portfolio-info p { font-size: 13px; color: var(--gray-mid); }

.portfolio-item.featured { grid-column: span 2; }

.portfolio-item.featured .portfolio-thumb {
  aspect-ratio: 16/7;
  font-size: 64px;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 0;
  display: none;
}

.no-results.visible { display: block; }
.no-results p { font-size: 16px; color: var(--gray-mid); margin-top: 12px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,20,40,0.92);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-inner {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 860px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  transform: scale(0.96);
  transition: transform 0.3s ease;
}

.lightbox.open .lightbox-inner { transform: scale(1); }

.lightbox-carousel-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}

.lightbox-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.lightbox-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(15, 38, 71, 0.6);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.carousel-nav-btn:hover {
  background: var(--yellow);
  color: var(--gray-dark);
  transform: translateY(-50%) scale(1.08);
}

.carousel-nav-btn.prev {
  left: 20px;
}

.carousel-nav-btn.next {
  right: 20px;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active {
  background: var(--yellow);
  transform: scale(1.2);
}

.lightbox-body { padding: 28px 32px 32px; }

.lightbox-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}

.lightbox-body h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
}

.lightbox-body p {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

.lightbox-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid #E5E7EB;
}

.meta-item { display: flex; flex-direction: column; gap: 3px; }

.meta-item span:first-child {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.meta-item span:last-child {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: background 0.2s, transform 0.2s;
  color: var(--gray-dark);
}

.lightbox-close:hover { background: var(--yellow); transform: scale(1.08); }

/* Download CTA (portfólio) */
.download-cta {
  background: var(--gray-light);
  padding: 72px 8%;
  text-align: center;
}

.download-cta-inner { max-width: 600px; margin: 0 auto; }

/* ================================================================
   PÁGINA CONTACTO — Seções específicas
   ================================================================ */
.quick-channels {
  background: var(--yellow);
  padding: 0 8%;
}

.channels-inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 32px 22px 0;
  flex: 1;
  min-width: 200px;
  text-decoration: none;
  color: var(--blue);
  border-right: 1px solid rgba(26,60,110,0.12);
  transition: opacity 0.2s;
}

.channel-item:last-child { border-right: none; padding-right: 0; }
.channel-item:not(:first-child) { padding-left: 32px; }
.channel-item:hover { opacity: 0.75; }

.channel-icon {
  width: 44px; height: 44px;
  background: rgba(26,60,110,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--blue);
  flex-shrink: 0;
}

.channel-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(26,60,110,0.60);
  margin-bottom: 3px;
}

.channel-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
}

.contact-main {
  padding: 96px 8%;
  background: var(--white);
}

.contact-main-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info-col { position: sticky; top: 96px; }

.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--gray-light);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: box-shadow 0.2s;
}

.contact-card:hover { box-shadow: var(--shadow); }

.contact-card-icon {
  width: 38px; height: 38px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
}

.contact-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 4px;
}

.contact-card p { font-size: 15px; color: var(--gray-dark); font-weight: 500; line-height: 1.5; }
.contact-card a { font-size: 15px; color: var(--blue); font-weight: 600; text-decoration: none; }
.contact-card a:hover { color: var(--yellow); }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--gray-mid);
  padding: 6px 0;
  border-bottom: 1px solid #F0F0F0;
}

.hour-row span:last-child { font-weight: 600; color: var(--gray-dark); }

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.contact-info-col .social-btn {
  color: var(--blue);
  border-color: rgba(26, 60, 110, 0.2);
}

.contact-info-col .social-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* Formulário (página contacto — estilo claro) */
.form-col {}

.form-header {
  background: var(--blue);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding: 28px 32px;
}

.form-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.form-header p { font-size: 14px; color: rgba(255,255,255,0.65); }

.form-body {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow);
}

/* Form fields (versão clara — usada na página contacto) */
.form-col .form-group { display: flex; flex-direction: column; gap: 7px; }
.form-col .form-group.full { grid-column: 1 / -1; }

.form-col .form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.form-col .form-group input,
.form-col .form-group select,
.form-col .form-group textarea {
  background: var(--gray-light);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--gray-dark);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}

.form-col .form-group input::placeholder,
.form-col .form-group textarea::placeholder { color: #BBBBBB; }

.form-col .form-group input:focus,
.form-col .form-group select:focus,
.form-col .form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
}

.form-col .form-group input.error,
.form-col .form-group select.error,
.form-col .form-group textarea.error { border-color: #E53E3E; }

.form-col .form-group .error-msg {
  font-size: 12px;
  color: #E53E3E;
  display: none;
}

.form-col .form-group.has-error .error-msg { display: block; }
.form-col .form-group select { cursor: pointer; }
.form-col .form-group select option { background: var(--white); color: var(--gray-dark); }
.form-col .form-group textarea { resize: vertical; min-height: 120px; }

/* Pills */
.request-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill-input { display: none; }

.pill-label {
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 100px;
  border: 2px solid #E5E7EB;
  color: var(--gray-mid);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Montserrat', sans-serif;
  user-select: none;
}

.pill-input:checked + .pill-label {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.pill-label:hover { border-color: var(--blue); color: var(--blue); }

/* Botão de envio (página contacto — full width) */
.btn-send-full {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--gray-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  width: 100%;
  margin-top: 8px;
  letter-spacing: 0.3px;
}

.btn-send-full:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.40); }
.btn-send-full:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Validação Visual de Erro Moderna */
.form-group input.error,
.form-group textarea.error,
.form-group select.error,
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #EF4444 !important;
  background-color: #FEF2F2 !important;
  animation: fieldShake 0.35s ease-in-out;
}

.form-group .error-msg {
  display: none;
  font-size: 12px;
  color: #EF4444;
  font-weight: 600;
  margin-top: 4px;
}

.form-group.has-error .error-msg {
  display: block;
}

@keyframes fieldShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-5px); }
  40%, 80% { transform: translateX(5px); }
}

/* Sucesso formulário */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
}

.form-success.visible { display: block; }

.success-icon {
  width: 72px; height: 72px;
  background: #D1FAE5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
}

.form-success p { font-size: 15px; color: var(--gray-mid); line-height: 1.7; }

.map-section { background: var(--gray-light); padding: 0; }

/* ================================================================
   RODAPÉ
   ================================================================ */
footer {
  background: #0F2647;
  padding: 64px 8% 32px;
  color: rgba(255,255,255,0.65);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand h3 span { color: var(--yellow); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }

.social-links { display: flex; gap: 10px; }

.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.2s;
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
}

.social-btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--gray-dark); }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--yellow); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

.dev-credit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.40);
}

.dev-logo {
  background: var(--yellow);
  color: var(--gray-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* ================================================================
   TOAST NOTIFICATION
   ================================================================ */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--blue);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: #16a34a; }
.toast.error { background: #dc2626; }
.toast i { font-size: 18px; }

/* ================================================================
   MEDIA QUERIES — RESPONSIVIDADE
   ================================================================ */
@media (max-width: 954px) {
  section, .service-block { padding: 64px 6%; }
  .contact-main { padding: 64px 6%; }

  /* Desktop nav links e botões de idioma ocultos → mostrar toggle */
  .nav-links { display: none !important; }
  .nav-lang { display: none !important; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }

  /* Ajustes de tipografia globais para evitar sobreposição */
  .section-title { font-size: clamp(24px, 3.2vw, 34px); }
  .hero h1 { font-size: clamp(32px, 5vw, 54px); }
  .hero p { font-size: 15px; margin-bottom: 28px; }

  /* Grids comuns a 1 coluna */
  .why-inner,
  .location-inner,
  .form-inner,
  .about-intro-inner,
  .contact-main-inner { grid-template-columns: 1fr; gap: 40px; }

  .contact-info-col { position: static; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .mvv-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; max-width: 100%; gap: 24px; }
  .portfolio-cta-inner { grid-template-columns: 1fr; gap: 24px; }

  /* Services */
  .service-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-block:nth-child(even) .service-inner { direction: ltr; }
  .service-visual { order: -1; max-width: 100%; }
  .service-badge { bottom: -12px; right: 12px; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .portfolio-item.featured { grid-column: span 2; }
  
  /* Ajuste das estatísticas do Portfólio */
  .stats-bar-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
  }
  .stat-divider { display: none; }

  /* Canais Rápidos em Grid 2x2 */
  .channels-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px 0;
  }
  .channel-item {
    border-right: none;
    border-bottom: 1px solid rgba(26,60,110,0.12);
    padding: 16px 0 !important;
    min-width: unset;
    flex: unset;
  }
  .channel-item:nth-child(3),
  .channel-item:nth-child(4) {
    border-bottom: none;
  }
  .channel-item:not(:first-child) {
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  section, .service-block { padding: 48px 5%; }
  .hero h1 { font-size: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .about-badge { bottom: -16px; left: 12px; }
  .service-badge { display: none; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.featured { grid-column: span 1; }
  .portfolio-item.featured .portfolio-thumb { aspect-ratio: 4/3; font-size: 42px; }
  .filters { gap: 6px; }
  .filter-btn { font-size: 12px; padding: 7px 14px; }
  .lightbox-body { padding: 20px; }
  
  /* Canais rápidos em 1 coluna */
  .channels-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 0;
  }
  .channel-item {
    border-bottom: 1px solid rgba(26,60,110,0.12) !important;
    padding: 16px 0 !important;
  }
  .channel-item:last-child {
    border-bottom: none !important;
  }
  .hours-grid { grid-template-columns: 1fr; }
  .toast { left: 16px; right: 16px; bottom: 16px; }
}

/* Oculta o selo flutuante padrão do reCAPTCHA v3 para evitar sobreposição no canto inferior direito.
   A informação legal foi colocada no rodapé (footer) de acordo com as regras da Google. */
.grecaptcha-badge,
div[style*="grecaptcha"],
.grecaptcha-logo {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
  pointer-events: none !important;
}

/* ================================================================
   WIDGET FLUTUANTE DE WHATSAPP COMERCIAL
   ================================================================ */
.whatsapp-float-btn {
  position: fixed !important;
  bottom: 28px !important;
  right: 28px !important;
  width: 60px !important;
  height: 60px !important;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: #FFFFFF !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 34px !important;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5) !important;
  z-index: 999999 !important;
  text-decoration: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  animation: waPulse 2.5s infinite !important;
}

.whatsapp-float-btn i {
  color: #FFFFFF !important;
  font-size: 34px !important;
  line-height: 1 !important;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.7) !important;
  color: #FFFFFF !important;
}

.whatsapp-float-tooltip {
  position: absolute !important;
  right: 74px !important;
  background: #1E293B !important;
  color: #FFFFFF !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 8px 16px !important;
  border-radius: 20px !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
  transform: translateX(10px) !important;
  pointer-events: none !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  font-family: 'Inter', sans-serif !important;
}

.whatsapp-float-btn:hover .whatsapp-float-tooltip {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(0) !important;
}

@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 600px) {
  .whatsapp-float-btn {
    bottom: 20px !important;
    right: 20px !important;
    width: 54px !important;
    height: 54px !important;
    font-size: 30px !important;
  }
  .whatsapp-float-btn i {
    font-size: 30px !important;
  }
  .whatsapp-float-tooltip {
    display: none !important;
  }
}

/* ================================================================
   SECÇÃO FAQ — PERGUNTAS FREQUENTES (ACORDEÃO INTERATIVO)
   ================================================================ */
.faq-section {
  background: var(--white);
  padding: 96px 8%;
}

.faq-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

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

.faq-item {
  border: 1px solid var(--gray-border, #E2E8F0);
  border-radius: 12px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.active {
  border-color: var(--blue, #1A3C6E);
  box-shadow: 0 8px 24px rgba(26, 60, 110, 0.08);
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--blue, #1A3C6E);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #2563EB;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(26, 60, 110, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--blue, #1A3C6E);
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--blue, #1A3C6E);
  color: var(--yellow, #F5A623);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 22px 24px;
  transition: max-height 0.4s ease-in-out, padding 0.3s ease;
}

/* ================================================================
   NOVA ESTRUTURA PARA FALE CONNOSCO (CONTACTO.PHP) & CARDS DE REDES
   ================================================================ */
.hours-grid-clean {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  width: 100%;
}

.hour-item-clean {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: #F8FAFC;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  font-size: 13px;
}

.hour-day {
  font-weight: 600;
  color: var(--blue, #1A3C6E);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hour-time {
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 0.3px;
}

.badge-open { background: rgba(16, 185, 129, 0.12); color: #059669; border: 1px solid rgba(16, 185, 129, 0.2); }
.badge-half { background: rgba(245, 158, 11, 0.12); color: #D97706; border: 1px solid rgba(245, 158, 11, 0.2); }
.badge-closed { background: rgba(239, 68, 68, 0.12); color: #DC2626; border: 1px solid rgba(239, 68, 68, 0.2); }

/* GRID DE CARDS DE REDES SOCIAIS */
.social-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin-top: 10px;
  width: 100%;
}

.social-card-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-card-item:hover {
  transform: translateY(-3px);
  border-color: var(--blue, #1A3C6E);
  box-shadow: 0 6px 18px rgba(26, 60, 110, 0.08);
}

.social-card-item i {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #FFFFFF;
  flex-shrink: 0;
}

.social-fb { background: linear-gradient(135deg, #1877F2 0%, #0B5ED7 100%); }
.social-ig { background: linear-gradient(135deg, #E1306C 0%, #C13584 100%); }
.social-tt { background: linear-gradient(135deg, #000000 0%, #25F4EE 100%); }

.social-card-info {
  display: flex;
  flex-direction: column;
}

.social-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue, #1A3C6E);
  line-height: 1.2;
}

.social-handle {
  font-size: 11px;
  color: var(--gray-mid, #64748B);
  margin-top: 2px;
}

/* ================================================================
   HEADER ROW DOS SERVIÇOS (TÍTULO E ÍCONE NA MESMA LINHA)
   ================================================================ */
.service-header-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.service-header-row h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0 !important;
}

.service-header-row .service-icon-lg {
  margin-bottom: 0 !important;
}

/* CARDS DINÂMICOS DE FAQ COM HOVER E INDICADOR DE DESTAQUE */
.faq-item {
  position: relative;
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26, 60, 110, 0.08);
  border-color: rgba(26, 60, 110, 0.25);
}

.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #1A3C6E, #2563EB);
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item.active::before {
  opacity: 1;
}

/* REMOVER BORDAS TRACEJADAS EM QUEM SOMOS */
.about-image, .about-image-main {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.about-image-main::before, .about-image-main::after {
  display: none !important;
}

/* MELHORIA VISUAL DE ONDE ESTAMOS */
.location-card-modern {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 10px 30px rgba(26,60,110,0.06);
  border: 1px solid var(--gray-border, #E2E8F0);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

@media (max-width: 768px) {
  .location-card-modern {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }
}

/* ================================================================
   GRID DE CARDS INTERATIVOS PARA FAQ (DÚVIDAS FREQUENTES)
   ================================================================ */
.faq-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .faq-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .faq-cards-grid {
    grid-template-columns: 1fr;
  }
}

.faq-card-interactive {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.faq-card-interactive:hover {
  transform: translateY(-4px);
  border-color: #1A3C6E;
  box-shadow: 0 12px 32px rgba(26, 60, 110, 0.08);
}

.faq-card-interactive.active {
  border-color: #1A3C6E;
  background: #FFFFFF;
  box-shadow: 0 14px 36px rgba(26, 60, 110, 0.1);
}

.faq-card-interactive::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #1A3C6E;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-card-interactive:hover::before,
.faq-card-interactive.active::before {
  opacity: 1;
}

.faq-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.faq-card-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #F1F5F9;
  color: #1A3C6E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-card-interactive.active .faq-card-icon-box,
.faq-card-interactive:hover .faq-card-icon-box {
  background: #1A3C6E;
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(26, 60, 110, 0.2);
}

.faq-card-title-wrap {
  flex: 1;
}

.faq-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #2563EB;
  background: rgba(37, 99, 235, 0.08);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.faq-card-question-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1E293B;
  line-height: 1.4;
  margin: 0;
  transition: color 0.2s ease;
}

.faq-card-interactive:hover .faq-card-question-text {
  color: #1A3C6E;
}

.faq-card-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #64748B;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-card-interactive.active .faq-card-toggle-icon {
  transform: rotate(180deg);
  background: #1A3C6E;
  color: #FFD700;
}

.faq-card-body-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), margin-top 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  font-size: 14px;
  color: #64748B;
  line-height: 1.7;
  padding-top: 0;
}

.faq-card-interactive.active .faq-card-body-text {
  max-height: 300px;
  opacity: 1;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed #E2E8F0;
}

@media (max-width: 768px) {
  .faq-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ================================================================
   AJUSTES SOLICITADOS: NAVBAR, HISTÓRIA, HORÁRIOS COMPACTOS E REDES
   ================================================================ */
/* Navbar com fundo branco sólido e alto contraste ao rolar na Home */
body #navbar.scrolled,
body #navbar.is-scrolled-white,
body nav.scrolled,
body nav.transparent.scrolled,
body nav.transparent.is-scrolled-white,
body nav.solid {
  background-color: #FFFFFF !important;
  background: #FFFFFF !important;
  box-shadow: 0 4px 20px rgba(26, 60, 110, 0.15) !important;
  border-bottom: 1px solid #E2E8F0 !important;
}

body #navbar.scrolled .nav-logo,
body #navbar.is-scrolled-white .nav-logo,
body nav.scrolled .nav-logo,
body nav.transparent.scrolled .nav-logo {
  color: #1A3C6E !important;
}

body #navbar.scrolled .nav-links a:not(.active),
body #navbar.is-scrolled-white .nav-links a:not(.active),
body nav.scrolled .nav-links a:not(.active),
body nav.transparent.scrolled .nav-links a:not(.active) {
  color: #1E293B !important;
}

body #navbar.scrolled .nav-links a:hover:not(.active),
body #navbar.is-scrolled-white .nav-links a:hover:not(.active),
body nav.scrolled .nav-links a:hover:not(.active),
body nav.transparent.scrolled .nav-links a:hover:not(.active) {
  background: #F1F5F9 !important;
  color: #1A3C6E !important;
}

body #navbar.scrolled .lang-btn:not(.active-lang),
body #navbar.is-scrolled-white .lang-btn:not(.active-lang),
body nav.scrolled .lang-btn:not(.active-lang),
body nav.transparent.scrolled .lang-btn:not(.active-lang) {
  border-color: #CBD5E1 !important;
  color: #1E293B !important;
}

body #navbar.scrolled .nav-toggle,
body #navbar.is-scrolled-white .nav-toggle,
body nav.scrolled .nav-toggle,
body nav.transparent.scrolled .nav-toggle {
  color: #1A3C6E !important;
}

/* Cor amarela para "A Nossa História" na página Quem Somos */
.about-intro .section-label,
.about-text .section-label {
  color: #F5A623 !important;
}

/* Grelha de 2 colunas para Telemóvel e Email lado a lado */
.contact-row-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

@media (max-width: 600px) {
  .contact-row-two-cols {
    grid-template-columns: 1fr;
  }
}

/* Horários de Atendimento Compactos (Sem caixas brancas internas e sem ícone de calendário) */
.hours-compact-list {
  display: flex;
  gap: 18px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.hour-compact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hour-compact-item .day-lbl {
  font-size: 11px;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hour-compact-item .time-lbl {
  font-size: 12px;
  font-weight: 700;
  color: #1E293B;
}

/* Redes Sociais: Apenas o título e os botões com ícone e @ (Sem o ícone azul principal à esquerda) */
.social-card-compact {
  padding: 18px 20px;
}

.social-clean-handles-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.social-handle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 8px 14px;
  border-radius: 20px;
  text-decoration: none;
  color: #1A3C6E;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.social-handle-btn:hover {
  background: #1A3C6E;
  color: #FFFFFF;
  border-color: #1A3C6E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 60, 110, 0.15);
}

.social-handle-btn i {
  font-size: 14px;
  color: #F5A623;
  transition: color 0.2s ease;
}

.social-handle-btn:hover i {
  color: #FFFFFF;
}

/* HORÁRIOS: DIA POR CIMA, HORA POR BAIXO (SEM CAIXA BRANCA, EM LINHA ÚNICA HORIZONTAL) */
.hours-row-no-box {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  width: 100%;
}

.hour-col-clean {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.hour-col-clean .day-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue, #1A3C6E);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.hour-col-clean .hour-time-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

@media (max-width: 540px) {
  .hours-row-no-box {
    flex-direction: column;
    gap: 10px;
  }
}

/* ONDE ESTAMOS — NOVO DESIGN LADO A LADO SEM OBJETO BRANCO E MAPA EM ALTURA TOTAL */
.location-clean-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 20px;
}

.location-map-col {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26, 60, 110, 0.08);
  border: 1px solid #E2E8F0;
}

.location-map-col iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .location-clean-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .location-map-col {
    min-height: 340px;
  }
}

/* GRELHA 2X2 PARA CONTACTOS NA LOCALIZAÇÃO DA HOME */
.contact-cards-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

@media (max-width: 600px) {
  .contact-cards-2x2 {
    grid-template-columns: 1fr;
  }
}

/* HORÁRIOS: DIA DA SEMANA E HORÁRIO NA MESMA LINHA ÚNICA */
.hours-same-line-list {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.hour-same-line-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hour-same-line-item .day-title-inline {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue, #1A3C6E);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.hour-same-line-item .hour-badge-inline {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ================================================================
   MELHORIAS VISUAIS DE ALTO NÍVEL: CONTACT-CARD (HOME & CONTACTO)
   ================================================================ */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 4px 16px rgba(26, 60, 110, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(26, 60, 110, 0.09);
  border-color: rgba(37, 99, 235, 0.3);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1A3C6E 0%, #2563EB 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
  transition: transform 0.25s ease;
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.06);
  background: linear-gradient(135deg, #F5A623 0%, #E67E22 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(245, 166, 35, 0.3);
}

.contact-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
}

.contact-card p,
.contact-card a {
  font-size: 14px;
  font-weight: 600;
  color: #1E293B;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* RESTAURAR ÍCONES E ESTILOS ORIGINAIS DA PÁGINA DE CONTACTO */
.contact-main .contact-card-icon {
  width: 38px !important;
  height: 38px !important;
  background: var(--blue, #1A3C6E) !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  color: #FFFFFF !important;
  flex-shrink: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

.contact-main .contact-card:hover .contact-card-icon {
  background: var(--blue, #1A3C6E) !important;
  color: #FFFFFF !important;
  transform: none !important;
  box-shadow: none !important;
}

/* ================================================================
   SECÇÃO DE DEPOIMENTOS DE CLIENTES (HOME & PROVA SOCIAL)
   ================================================================ */
.testimonials {
  background: #F8FAFC;
  padding: 96px 8%;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-header .section-label {
  color: var(--yellow, #F5A623);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.testimonials-header .section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  color: var(--blue, #1A3C6E);
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.testimonials-header .section-sub {
  font-size: 16px;
  color: var(--gray-mid, #64748B);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 640px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(26, 60, 110, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(26, 60, 110, 0.3);
  box-shadow: 0 16px 36px rgba(26, 60, 110, 0.1);
}

.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-rating {
  color: #F5A623;
  font-size: 15px;
  display: flex;
  gap: 4px;
}

.testimonial-quote-icon {
  font-size: 24px;
  color: rgba(245, 166, 35, 0.3);
}

.testimonial-text {
  font-size: 15px;
  color: #334155;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 28px;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid #F1F5F9;
}

.author-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #F5A623;
}

.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-avatar-fallback {
  width: 100%;
  height: 100%;
  background: var(--blue, #1A3C6E);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.author-info h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--blue, #1A3C6E);
  margin-bottom: 2px;
}

.author-info p {
  font-size: 12px;
  font-weight: 600;
  color: #64748B;
  margin: 0;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonials {
    padding: 64px 5%;
  }
  .testimonial-card {
    padding: 24px 20px;
  }
}

/* ================================================================
   CICLO DE METODOLOGIA & PROCESSO DE TRABALHO EM 4 PASSOS (SOBRE)
   ================================================================ */
.methodology {
  background: var(--white, #FFFFFF);
  padding: 96px 8%;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.methodology-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.methodology-header .section-label {
  color: var(--yellow, #F5A623);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.methodology-header .section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  color: var(--blue, #1A3C6E);
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.methodology-header .section-sub {
  font-size: 16px;
  color: var(--gray-mid, #64748B);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 640px;
}

.methodology-cycle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.methodology-step-card {
  background: #F8FAFC;
  border-radius: 20px;
  padding: 36px 24px 32px;
  border: 1px solid #E2E8F0;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, background 0.35s ease;
  display: flex;
  flex-direction: column;
}

.methodology-step-card:hover {
  transform: translateY(-8px);
  background: #FFFFFF;
  border-color: var(--blue, #1A3C6E);
  box-shadow: 0 16px 36px rgba(26, 60, 110, 0.1);
}

.step-badge {
  position: absolute;
  top: -16px;
  left: 24px;
  background: linear-gradient(135deg, #1A3C6E 0%, #2563EB 100%);
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  letter-spacing: 0.5px;
}

.methodology-step-card:hover .step-badge {
  background: linear-gradient(135deg, #F5A623 0%, #E67E22 100%);
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

.step-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(26, 60, 110, 0.08);
  color: var(--blue, #1A3C6E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.methodology-step-card:hover .step-icon {
  background: var(--blue, #1A3C6E);
  color: #FFFFFF;
  transform: scale(1.06);
}

.methodology-step-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--blue, #1A3C6E);
  line-height: 1.35;
  margin-bottom: 12px;
}

.methodology-step-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

.step-connector-arrow {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--blue, #1A3C6E);
  z-index: 5;
}

@media (max-width: 1024px) {
  .methodology-cycle-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  .step-connector-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .methodology-cycle-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .methodology {
    padding: 64px 5%;
  }
}

/* ================================================================
   SECÇÃO DE OBRAS EM CURSO & NOTÍCIAS DO ESTALEIRO (PORTFÓLIO)
   ================================================================ */
.ongoing-section {
  background: #F8FAFC;
  padding: 80px 8%;
  border-bottom: 1px solid #E2E8F0;
}

.ongoing-header {
  margin-bottom: 48px;
  max-width: 760px;
}

.ongoing-header .section-label {
  color: var(--yellow, #F5A623);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ongoing-header .section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--blue, #1A3C6E);
  line-height: 1.25;
  margin-bottom: 12px;
}

.ongoing-header .section-sub {
  font-size: 15px;
  color: #64748B;
  line-height: 1.65;
}

.ongoing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.ongoing-card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(26, 60, 110, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.ongoing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(26, 60, 110, 0.25);
  box-shadow: 0 12px 28px rgba(26, 60, 110, 0.09);
}

.ongoing-card-image {
  position: relative;
  height: 175px;
  overflow: hidden;
  background: #1E293B;
}

.ongoing-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ongoing-card:hover .ongoing-card-image img {
  transform: scale(1.05);
}

.ongoing-badge-live {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  color: #10B981;
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.8px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.live-dot {
  width: 7px;
  height: 7px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
  animation: pulse-live 1.8s infinite;
}

@keyframes pulse-live {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.ongoing-category-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--yellow, #F5A623);
  color: #1E293B;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 5px;
}

.ongoing-card-content {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ongoing-location {
  font-size: 11.5px;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ongoing-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--blue, #1A3C6E);
  line-height: 1.3;
  margin-bottom: 8px;
}

.ongoing-card-desc {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}

.ongoing-progress-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 0;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
}

.progress-info strong {
  color: #10B981;
}

.progress-bar-bg {
  width: 100%;
  height: 6px;
  background: #E2E8F0;
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #10B981 0%, #059669 100%);
  border-radius: 3px;
  transition: width 1s ease-in-out;
}

@media (max-width: 900px) {
  .ongoing-grid {
    grid-template-columns: 1fr;
  }
  .ongoing-section {
    padding: 56px 5%;
  }
}

