/* ==============================================
   PALETA
   charcoal #484d50 | yellow #e69b00 | ice #edf4f5
   ============================================== */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; background: #fff; color: #1a1a1a; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* LAYOUT */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--dark { background: #484d50; color: #edf4f5; }
.section--ice  { background: #f5f7f8; }

/* TIPOGRAFIA */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e69b00;
  margin-bottom: 12px;
}

/* BOTÕES */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-primary             { background: #e69b00; color: #1a1a1a; border-color: #e69b00; }
.btn-primary:hover       { background: #d48f00; border-color: #d48f00; }
.btn-outline             { background: transparent; color: #1a1a1a; border-color: #1a1a1a; }
.btn-outline:hover       { background: #1a1a1a; color: #fff; }
.btn-outline-light       { background: transparent; color: #edf4f5; border-color: #edf4f5; }
.btn-outline-light:hover { background: #edf4f5; color: #1a1a1a; }

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #484d50;
  border-bottom: 3px solid #e69b00;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img  { height: 80px; width: auto; object-fit: contain; }
.logo-name { color: #edf4f5; font-size: 1.1rem; font-weight: 800; letter-spacing: 0.12em; }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  color: rgba(237,244,245,0.7);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.main-nav a:hover  { color: #edf4f5; }
.main-nav a.active { color: #edf4f5; border-bottom: 2px solid #e69b00; padding-bottom: 2px; }
.main-nav .nav-cta {
  background: #e69b00;
  color: #1a1a1a;
  padding: 8px 20px;
  font-weight: 700;
  border-bottom: none;
}
.main-nav .nav-cta:hover { background: #d48f00; color: #1a1a1a; }

/* ---- LANGUAGE SWITCHER ---- */
.lang-switcher { position: relative; }
.lang-btn {
  background: transparent;
  border: 1px solid rgba(237,244,245,0.35);
  color: rgba(237,244,245,0.8);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 11px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.lang-btn:hover { border-color: rgba(237,244,245,0.8); color: #edf4f5; }
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #3a3f42;
  border: 1px solid rgba(237,244,245,0.15);
  border-top: 2px solid #e69b00;
  min-width: 160px;
  z-index: 300;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.lang-dropdown.is-open { display: block; }
.lang-dropdown button {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  color: rgba(237,244,245,0.7);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 11px 16px;
  text-align: left;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
.lang-dropdown button:hover  { background: rgba(230,155,0,0.15); color: #e69b00; }
.lang-dropdown button.active { color: #e69b00; font-weight: 700; }

/* ---- FOOTER LOGO ---- */
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-img  { height: 80px; width: auto; object-fit: contain; }

/* ---- HERO ---- */
.hero {
  background: #484d50;
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: #e69b00;
  opacity: 0.04;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 620px; }
.hero h1      { color: #edf4f5; margin-bottom: 24px; }
.hero h1 span { color: #e69b00; }
.hero p       { color: rgba(237,244,245,0.72); font-size: 1.125rem; margin-bottom: 40px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid rgba(237,244,245,0.12);
}
.stat-item .stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: #e69b00;
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.7rem;
  color: rgba(237,244,245,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ---- ANIMAÇÃO DA CAIXA ---- */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-animation-wrap {
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Fundo geométrico decorativo */
.box-animation-wrap::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border: 2px solid rgba(230,155,0,0.15);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotate(45deg);
}
.box-animation-wrap::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(230,155,0,0.05);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotate(45deg);
}

.box-svg-wrap {
  position: relative;
  z-index: 2;
  animation: boxFloat 3.2s ease-in-out infinite;
}

@keyframes boxFloat {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-14px); }
  100% { transform: translateY(0px); }
}

.pin-svg-wrap {
  position: absolute;
  top: 24px;
  right: 44px;
  z-index: 3;
  animation: pinPulse 3.2s ease-in-out infinite;
}

@keyframes pinPulse {
  0%   { transform: translateY(0px) scale(1); }
  50%  { transform: translateY(-8px) scale(1.08); }
  100% { transform: translateY(0px) scale(1); }
}

/* ---- SECTION HEADER ---- */
.section-header          { margin-bottom: 48px; }
.section-header h2       { margin-top: 8px; }

/* ---- CARDS GRID ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  background: #d0d5d8;
}
.card { background: #fff; padding: 40px 32px; }
.card .card-icon { width: 48px; height: 4px; background: #e69b00; margin-bottom: 24px; }
.card h3         { margin-bottom: 12px; }
.card p          { color: #5a6472; font-size: 0.9rem; line-height: 1.65; }
.card .card-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e69b00;
  border-bottom: 1px solid #e69b00;
  padding-bottom: 2px;
  transition: color 0.15s;
}
.card .card-link:hover { color: #d48f00; }

/* Cards em section--dark */
.section--dark .card {
  background: rgba(255,255,255,0.07);
  border-top: 3px solid #e69b00;
}
.section--dark .card h3 { color: #edf4f5; }
.section--dark .card p  { color: rgba(237,244,245,0.65); }

/* Número do processo */
.card .step-number {
  font-size: 2rem;
  font-weight: 900;
  color: #e69b00;
  margin-bottom: 16px;
  line-height: 1;
}

/* ---- EXPERIÊNCIA DESTAQUE ---- */
.experience-band {
  background: #e69b00;
  padding: 56px 0;
}
.experience-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.exp-number {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1;
  letter-spacing: -0.04em;
}
.exp-number span { display: block; font-size: 1.1rem; font-weight: 600; letter-spacing: 0.02em; margin-top: 8px; }
.exp-text h3 { font-size: 1.4rem; color: #1a1a1a; margin-bottom: 12px; }
.exp-text p  { color: rgba(26,26,26,0.75); font-size: 1rem; line-height: 1.7; }

/* ---- SPLIT SECTION ---- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}
.split-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-content h2 { margin-bottom: 20px; }
.split-content p  { color: #5a6472; margin-bottom: 32px; }
.split-visual {
  background: #484d50;
  position: relative;
  min-height: 300px;
}
.split-visual::before {
  content: '';
  position: absolute;
  top: 32px; left: 32px;
  width: 120px; height: 120px;
  border: 6px solid rgba(237,244,245,0.08);
}
.split-visual::after {
  content: '';
  position: absolute;
  bottom: 32px; right: 32px;
  width: 80px; height: 80px;
  background: #e69b00;
  opacity: 0.85;
}

/* ---- PROJECTS GRID ---- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #d0d5d8;
}
.project-card {
  background: #484d50;
  aspect-ratio: 4/3;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26,26,26,0.8) 100%);
}
.project-card:nth-child(even) { background: #5c6366; }
.project-card .project-tag {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e69b00;
  margin-bottom: 8px;
}
.project-card h3 { position: relative; z-index: 1; color: #edf4f5; font-size: 1rem; }

/* ---- CTA BAND ---- */
.cta-band { background: #e69b00; padding: 60px 0; }
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band-inner h2 { color: #1a1a1a; margin: 0; font-size: 1.75rem; }

/* ---- CLIENTES / LOGOS ---- */
.clients-row { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.client-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  min-width: 110px;
  padding: 0 12px;
}
.client-logo-wrap img {
  max-height: 44px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: opacity 0.2s, filter 0.2s;
}
.client-logo-wrap img:hover { filter: grayscale(0%); opacity: 1; }

/* ---- PROJECTS GRID REAL ---- */
.projects-grid--real {
  grid-template-columns: repeat(2, 1fr);
}
.project-card--real {
  min-height: 320px;
}
.project-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26,26,26,0.82) 100%);
  z-index: 1;
}

/* ---- BLOG / POSTS ---- */
.posts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.post-card { border-top: 3px solid #e69b00; padding-top: 20px; }
.post-card .post-meta {
  font-size: 0.75rem;
  color: #7a8694;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.post-card h3  { margin-bottom: 10px; font-size: 1.1rem; line-height: 1.35; }
.post-card p   { font-size: 0.875rem; color: #5a6472; margin-bottom: 16px; }
.post-card .post-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e69b00;
}

/* ---- PAGE HERO (páginas internas) ---- */
.page-hero { background: #484d50; padding: 60px 0 48px; border-bottom: 3px solid #e69b00; }
.page-hero h1 { color: #edf4f5; font-size: 2rem; }
.page-hero .breadcrumb {
  font-size: 0.75rem;
  color: rgba(237,244,245,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-hero .breadcrumb a    { color: #e69b00; }
.page-hero .breadcrumb span { margin: 0 8px; }

/* ---- TABELA ---- */
.services-table { width: 100%; border-collapse: collapse; }
.services-table th {
  background: #484d50;
  color: #edf4f5;
  padding: 16px 24px;
  text-align: left;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.services-table td { padding: 16px 24px; border-bottom: 1px solid #e0e4e6; font-size: 0.9rem; }
.services-table tr:hover td { background: #f5f7f8; }

/* ---- LISTA DE SERVIÇOS ---- */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2px;
  background: #d0d5d8;
}
.service-item {
  background: #fff;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.service-item .service-marker {
  width: 4px;
  height: 100%;
  min-height: 20px;
  background: #e69b00;
  flex-shrink: 0;
  margin-top: 3px;
}
.service-item p {
  font-size: 0.9rem;
  color: #1a1a1a;
  font-weight: 500;
  line-height: 1.5;
}

/* Categorias de serviços */
.service-category {
  margin-bottom: 48px;
}
.service-category-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e69b00;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e69b00;
}

/* ---- FORMULÁRIO ---- */
.contact-form { max-width: 640px; }
.form-group   { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #d0d5d8;
  background: #fff;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.15s;
  border-radius: 0;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: #484d50; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- FOOTER ---- */
/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.6);
}

.site-footer { background: #484d50; color: rgba(237,244,245,0.7); }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px 48px;
}
.footer-logo {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #edf4f5;
}
.footer-col h4 {
  color: #edf4f5;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col p,
.footer-col a { display: block; font-size: 0.875rem; color: rgba(237,244,245,0.65); line-height: 1.8; transition: color 0.15s; }
.footer-col a:hover { color: #e69b00; }
.footer-bottom { border-top: 1px solid rgba(237,244,245,0.08); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom span { font-size: 0.75rem; color: rgba(237,244,245,0.4); }

/* ---- CONTATO LAYOUT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-info-block { display: flex; flex-direction: column; gap: 32px; }
.contact-info-item h4 { margin-bottom: 8px; }
.contact-info-item p  { color: #5a6472; line-height: 1.8; }
.contact-highlight { margin-top: 48px; padding: 32px; background: #484d50; }
.contact-highlight h4 { color: #e69b00; margin-bottom: 12px; }
.contact-highlight p  { color: rgba(237,244,245,0.7); font-size: 0.875rem; line-height: 1.7; }

/* ---- SOBRE / INSTITUCIONAL ---- */
.about-intro { font-size: 1.15rem; color: #3a4450; line-height: 1.8; margin-bottom: 48px; max-width: 760px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #d0d5d8;
}
.value-card {
  background: #fff;
  padding: 40px 32px;
  border-top: 4px solid #e69b00;
}
.value-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.value-card p  { color: #5a6472; font-size: 0.9rem; line-height: 1.65; }

/* ---- ACRÔNIMO OBO ---- */
.acronym-wrap { display: flex; flex-direction: column; gap: 16px; max-width: 800px; }
.acronym-row  { display: flex; align-items: stretch; }
.acronym-letter {
  font-size: 5.5rem;
  font-weight: 900;
  font-style: italic;
  color: #e69b00;
  line-height: 1;
  min-width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.acronym-bar {
  flex: 1;
  background: #2d3135;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  border-left: 4px solid #e69b00;
}
.acronym-bar p        { color: #edf4f5; font-size: 1rem; font-weight: 400; line-height: 1.4; margin: 0; }
.acronym-bar p strong { color: #e69b00; font-weight: 800; }
.acronym-bar--alt         { background: #e69b00; border-left-color: #2d3135; }
.acronym-bar--alt p       { color: #1a1a1a; }
.acronym-bar--alt p strong { color: #1a1a1a; font-weight: 900; }

/* ---- PORTFÓLIO ---- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2px;
  background: #d0d5d8;
  margin-bottom: 32px;
}
.portfolio-card { background: #fff; display: flex; flex-direction: column; }
.portfolio-card-img {
  height: 240px;
  background-color: #484d50;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portfolio-card-img-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: #484d50;
}
.portfolio-card-img-fallback span {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(237,244,245,0.3);
}
.portfolio-card-body { padding: 28px 32px 32px; flex: 1; }
.portfolio-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e69b00;
  margin-bottom: 8px;
}
.portfolio-card-body h3 { margin-bottom: 12px; font-size: 1.1rem; }
.portfolio-card-body p  { color: #5a6472; font-size: 0.875rem; line-height: 1.65; }
.portfolio-note {
  padding: 20px 24px;
  border-left: 3px solid #e69b00;
  background: #f5f7f8;
}
.portfolio-note p { font-size: 0.875rem; color: #5a6472; font-style: italic; margin: 0; }

/* ---- MODAL ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.78);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }
body.modal-open { overflow: hidden; }
.modal-box {
  background: #fff;
  max-width: 640px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.22s;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.is-open .modal-box { transform: translateY(0); }
.modal-img { width: 100%; max-height: 320px; object-fit: contain; background: #f0f3f5; display: block; padding: 16px 0; }
.modal-body { padding: 32px; }
.modal-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e69b00;
  margin-bottom: 8px;
}
.modal-title   { font-size: 1.2rem; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; line-height: 1.3; }
.modal-description { font-size: 0.9rem; color: #5a6472; line-height: 1.75; }
.modal-close {
  position: absolute;
  top: 0; right: 0;
  width: 40px; height: 40px;
  background: #484d50;
  color: #edf4f5;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.15s;
}
.modal-close:hover { background: #e69b00; color: #1a1a1a; }
.service-item--clickable { cursor: pointer; transition: background 0.15s; }
.service-item--clickable:hover { background: #f5f7f8; }
.service-item--clickable:hover .service-marker { background: #484d50; }

/* ---- PDCA / METODOLOGIA ---- */
.methodology-wrap {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: center;
}
.pdca-wrap { display: flex; justify-content: center; }
.pdca-svg  { width: 100%; max-width: 420px; height: auto; }

.methodology-steps { display: flex; flex-direction: column; gap: 28px; }
.method-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.method-step-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: #e69b00;
  line-height: 1;
  min-width: 40px;
  padding-top: 2px;
}
.method-step h3 { color: #edf4f5; font-size: 1rem; margin-bottom: 4px; }
.method-step p  { color: rgba(237,244,245,0.6); font-size: 0.875rem; line-height: 1.6; }

/* ---- RESPONSIVO ---- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}
@media (max-width: 900px) {
  .projects-grid     { grid-template-columns: 1fr 1fr; }
  .contact-grid      { grid-template-columns: 1fr; gap: 48px; }
  .values-grid       { grid-template-columns: 1fr 1fr; }
  .experience-band-inner { grid-template-columns: 1fr; gap: 24px; }
  .methodology-wrap  { grid-template-columns: 1fr; }
  .pdca-svg          { max-width: 340px; }
}
@media (max-width: 768px) {
  .main-nav       { display: none; }
  .hero-stats     { flex-wrap: wrap; gap: 24px; }
  .split-section  { grid-template-columns: 1fr; }
  .split-content  { padding: 48px 24px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .footer-inner   { grid-template-columns: 1fr 1fr; }
  .services-list  { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .projects-grid { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr; gap: 32px; }
  .values-grid   { grid-template-columns: 1fr; }
}

/* ─────────── NAV DROPDOWN ─────────── */
.site-header { position: relative; z-index: 200; }
.nav-has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-arrow {
  font-size: 0.6rem;
  opacity: 0.65;
  transition: transform 0.2s;
  margin-top: 1px;
}
.nav-has-dropdown:hover .nav-arrow { transform: rotate(180deg); }
.nav-dropdown {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-top: 3px solid #e69b00;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  border-radius: 0 0 8px 8px;
  padding: 24px 28px 28px;
  min-width: 580px;
  z-index: 9999;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  white-space: nowrap;
  transition: opacity 0.18s, visibility 0.18s;
}
.nav-dropdown--sm { min-width: 440px; }
.nav-has-dropdown:hover .nav-dropdown { visibility: visible; opacity: 1; }
.nav-dropdown-col { display: flex; flex-direction: column; }
.nav-dropdown-group {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #484d50;
  margin: 18px 0 8px;
  padding-bottom: 6px;
  border-bottom: 2px solid #edf4f5;
}
.nav-dropdown-col .nav-dropdown-group:first-child { margin-top: 0; }
.nav-dropdown a {
  font-size: 0.8125rem;
  color: #5a6472;
  padding: 4px 0;
  text-decoration: none;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
}
.nav-dropdown a::before {
  content: '›';
  color: #e69b00;
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}
.nav-dropdown a:hover { color: #e69b00; }
