/* PROKAT - HTML5 / CSS PURO - Sem WordPress */
:root {
  --bg: #0d0f12;
  --bg-soft: #14171c;
  --card: #191d24;
  /* Amarelo/Dourado Prokat extraído da logo */
  --primary: #e1a925;
  --primary-2: #f4d068;
  --text: #ffffff;
  --muted: #C5C7C9;
  --line: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 90%);
  margin-inline: auto;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 15, 18, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo img {
  height: auto;
  max-height: 50px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}

.nav__link.active,
.nav__link:hover {
  color: var(--primary-2);
}

.nav__link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* HAMBURGUER MENU */
.hamburger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 110;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animação do Hamburger para X */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 6px; /* Ajustado para visual mais corporativo moderno */
  font-weight: 700;
  letter-spacing: .01em;
  transition: all 0.25s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #000000;
  box-shadow: 0 4px 15px rgba(225, 169, 37, 0.2);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(225, 169, 37, 0.35);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
}

.btn--small {
  padding: 8px 16px;
  font-size: 13px;
}

.btn--large {
  padding: 14px 28px;
  font-size: 15px;
}

.btn--full {
  width: 100%;
}

/* HERO SECTION COM IMAGEM DE FUNDO E DEGRADÊ ESTILO A IMAGEM FORNECIDA */
.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  /* Imagem de prédios espelhados moderna */
  background-image: 
    linear-gradient(to bottom, rgba(13, 15, 18, 0.7) 0%, rgba(13, 15, 18, 0.95) 100%),
    url('img/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero__content {
  max-width: 800px;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 16px;
  border-left: 2px solid var(--primary);
  padding-left: 10px;
}

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(34px, 5.5vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary) 0%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}

.hero p {
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
  max-width: 62ch;
  margin: 0 0 32px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.hero__badges div {
  font-size: 13px;
  color: var(--muted);
}

.hero__badges strong {
  color: var(--primary-2);
  font-size: 16px;
  margin-right: 6px;
}

/* PARTNERS */
.partners {
  padding: 50px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #111111; /* Cor escura de fundo para destacar os blocos brancos */
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  margin: 0 0 30px;
  letter-spacing: -.02em;
}

.section-title--center {
  text-align: center;
}

.partners__track-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.partners__track {
  display: flex;
  gap: 20px; /* Espaçamento idêntico à imagem de referência */
  animation: marquee 30s linear infinite;
  will-change: transform;
  width: max-content;
  align-items: center;
}

/* Moldura Branca do Parceiro (Proporção e Cor Corrigidas) */
.partner {
  flex-shrink: 0;
  white-space: nowrap;
  width: 190px;         /* Largura maior para melhor visualização */
  height: 120px;        /* Altura proporcional aos logos do exemplo */
  background: #ffffff;  /* Fundo totalmente branco */
  border-radius: 4px;   /* Cantos levemente suavizados conforme o design */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transition: transform 0.2s ease;
}

.partner:hover {
  transform: scale(1.03); /* Leve feedback ao passar o mouse */
}

/* Garante que os logos originais fiquem coloridos e ocupem o tamanho correto */
.partner img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: none !important; /* Remove qualquer escala de cinza ou inversão */
  opacity: 1 !important;   /* Brilho total nas cores das marcas */
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); } /* Perfeito para o loop infinito do JS */
}

/* Ajuste de responsividade para telas menores */
@media (max-width: 600px) {
  .partner {
    width: 150px;
    height: 95px;
    padding: 10px;
  }
}

/* ABOUT */
.about {
  padding: 80px 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  margin: 0 0 20px;
}

.about__text p {
  color: var(--muted);
  margin-bottom: 16px;
}

.values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 30px 0;
}

.value-card {
  background: var(--card);
  border-left: 3px solid var(--primary);
  border-radius: 4px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.value-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--primary-2);
}

.value-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

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

.stat {
  background: linear-gradient(180deg, rgba(225, 169, 37, 0.05), transparent);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.stat span {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 850;
  color: var(--primary);
}

.stat small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.about__image-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about__image-frame img {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

.about__badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(13, 15, 18, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--muted);
}

.about__badge strong {
  color: var(--primary);
  display: block;
  font-size: 14px;
  margin-top: 2px;
}

/* SERVICES */
.services {
  padding: 80px 0;
  background: var(--bg-soft);
}

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

.services__head h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(26px, 4vw, 36px);
  margin: 10px 0;
}

.subtitle {
  color: var(--muted);
}

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

.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.service-card__img {
  height: 200px;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__img img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card__num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  color: var(--primary);
  font-size: 20px;
  letter-spacing: .1em;
}

.service-card h3 {
  margin: 12px 0 8px;
  font-size: 18px;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.service-card--cta {
  background: linear-gradient(135deg, #191d24 0%, #101217 100%);
  border: 1px dashed var(--primary);
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
}

.service-card__cta-content h3 {
  font-size: 20px;
  color: var(--primary-2);
}

.service-card__cta-content .small {
  margin: 10px 0 20px;
  font-size: 13px;
  color: var(--muted);
}

/* CONTACT */
.contact {
  padding: 80px 0 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 60px;
}

.contact h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 16px;
}

.contact__info p {
  color: var(--muted);
}

.contact__list {
  list-style: none;
  margin-top: 30px;
  display: grid;
  gap: 16px;
}

.contact__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.contact__list i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(225, 169, 37, 0.1);
  color: var(--primary);
  border-radius: 6px;
  font-style: normal;
  font-weight: bold;
}

.contact__list a {
  display: block;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}

.contact__list a:hover {
  color: var(--primary-2);
}

.contact__list span {
  color: var(--muted);
  font-size: 14px;
}

/* FORMULÁRIO */
.form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow);
}

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

.form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #0d0f12;
  color: var(--text);
  outline: 0;
  font: inherit;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(225, 169, 37, 0.15);
}

.form textarea {
  resize: vertical;
}

.form__feedback {
  min-height: 20px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
}

/* MAPA */
.map {
  height: 400px;
  border-top: 1px solid var(--line);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.5) invert(0.9) contrast(1.2); /* Tom escuro para se adequar ao site */
}

/* FOOTER */
.footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: #090a0d;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.logo--footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo--footer .logo__icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #000;
  border-radius: 4px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.logo--footer .logo__text {
  font-weight: 800;
  font-size: 14px;
}

.logo--footer .logo__text span {
  display: block;
  font-size: 9px;
  color: var(--muted);
}

.footer p {
  color: var(--muted);
  font-size: 13px;
}

/* BOTÃO FLUTUANTE WHATSAPP */
.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  background: #25d366;
  color: #000;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: transform 0.25s;
}

.whatsapp:hover {
  transform: translateY(-3px);
}

/* RESPONSIVIDADE TOTAL (PROVA DE FALHAS EM TODAS AS TELAS) */
@media (max-width: 1024px) {
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 15, 18, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 40px 20px;
    gap: 24px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.3s ease;
    z-index: 99;
    height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding-top: 80px;
    text-align: center;
    min-height: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__badges {
    justify-content: center;
  }

  .eyebrow {
    border-left: none;
    border-bottom: 2px solid var(--primary);
    padding-left: 0;
    padding-bottom: 4px;
  }

  .about__image-frame img {
    aspect-ratio: 16/10;
  }
}

@media (max-width: 600px) {
  .services__grid,
  .form__row,
  .stats {
    grid-template-columns: 1fr;
  }

  .stat {
    padding: 14px;
  }

  .form {
    padding: 20px;
  }

  .whatsapp span {
    display: none; /* Em telas muito pequenas exibe apenas o ícone ou encurta */
  }
  
  .whatsapp {
    padding: 12px;
    border-radius: 50%;
  }
}


/* DESIGN DE CONTATO FLUIDO */
.contact {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 50px; /* Espaço até o mapa */
}

/* Informações de Contato */
.contact__info h2 {
    font-size: 2.25rem;
    color: var(--primary-blue);
    margin: 10px 0 20px 0;
}

.contact__info p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Link de Destaque - Canal de Ética */
.contact__highlight-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 24px 0;
    padding: 16px;
    background: rgba(217, 179, 16, 0.08); /* Usando variável gold_accent de forma suave */
    border: 1px solid rgba(217, 179, 16, 0.25);
    border-radius: 8px;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 14px;
    transition: all 0.25s ease;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
}

.contact__highlight-link:hover {
    background: rgba(217, 179, 16, 0.15);
    border-color: var(--light-blue);
    transform: translateY(-2px);
}

.contact__highlight-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
}

.contact__highlight-text {
    display: flex; 
    flex-direction: column; 
    text-align: left;
}

.contact__highlight-tag {
    font-size: 10px; 
    text-transform: uppercase; 
    letter-spacing: 0.08em; 
    color: var(--text-muted); 
    font-weight: 600; 
    margin-bottom: 2px;
}

/* Lista de Endereço, Telefone, Email */
.contact__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact__list li i {
    color: var(--light-blue);
    flex-shrink: 0;
    background: rgba(50, 140, 193, 0.1);
    padding: 10px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact__list li div {
    display: flex;
    flex-direction: column;
}

.contact__list li strong {
    font-size: 0.9rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact__list li a, .contact__list li span {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.contact__list li a:hover {
    color: var(--light-blue);
}

/* Formulário de Contato */
.form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.form input, .form select, .form textarea {
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form input:focus, .form select:focus, .form textarea:focus {
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(50, 140, 193, 0.15);
}

/* CONTAINER DO MAPA MODERNO */
.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 400px;
    width: 100%;
}

#map {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* FOOTER COMPLETO E PREMIUM */
.footer {
    background: var(--primary-blue);
    color: #e2e8f0;
    padding: 70px 0 0 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer__col h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.footer__col h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--light-blue);
    margin-top: 8px;
}

.footer__desc {
    margin-top: 15px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cbd5e1;
    max-width: 320px;
}

.footer__socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer__socials a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer__socials a:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer__links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer__links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer__bottom {
    background: #062235; /* Tom ligeiramente mais escuro que primary-blue */
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* RESPONSIVIDADE */
@media (max-width: 968px) {
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form {
        padding: 20px;
    }
    
    .form__row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .map-container {
        height: 300px;
    }
}

/* CONTAINER GERAL */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* SUBTÍTULOS / SINALIZADORES */
.eyebrow {
    color: var(--light-blue);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

/* ==========================================================================
   SEÇÃO OBRAS REALIZADAS & MAPA
   ========================================================================== */
.completed-works {
    background-color: var(--bg-dark); /* Fundo escuro para destacar o mapa */
    color: var(--white);
    padding: 80px 0;
}

.works__grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.works__info h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 700;
}

.works__map-wrapper {
    width: 100%;
    height: 450px;
    position: relative;
}

.works__map {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #1a1a1a;
}

/* ==========================================================================
   SEÇÃO DE SERVIÇOS (GRID)
   ========================================================================== */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.services__header {
    margin-bottom: 50px;
    text-align: center;
}

.services__header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 700;
}

/* Grid de Exibição dos Serviços */
.services__cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Layout de Bloco de Serviço Individual */
.service-block {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid #eef2f5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--light-blue);
}

.service-block__image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-block__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-block:hover .service-block__image img {
    transform: scale(1.05);
}

.service-block__content {
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-block__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(50, 140, 193, 0.15); /* Cor primária com transparência */
    line-height: 1;
    margin-bottom: 10px;
}

.service-block__content h3 {
    font-size: 1.35rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-block__content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   SEÇÃO CTA (CHAMADA PARA AÇÃO)
   ========================================================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #051c2c 100%);
    color: var(--white);
    padding: 60px 0;
}

.cta__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta__content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta__content p {
    color: #e0e0e0;
}

/* Botões Customizados */
.btn--cta {
    background-color: var(--light-blue);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.btn--cta:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateX(5px); /* Suave animação herdada do Jkit original */
}

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 968px) {
    .works__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .works__map-wrapper {
        height: 350px;
    }

    .cta__container {
        flex-direction: column;
        text-align: center;
    }
    
    .btn--cta {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .services__cards-grid {
        grid-template-columns: 1fr;
    }
}
.works__map-wrapper {
    width: 100%;
    height: 450px; /* Garante que o mapa tenha espaço para renderizar */
    position: relative;
}

.works__map {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #1a1a1a; /* Cor de fundo enquanto o mapa carrega */
}

.lista-cidades.duas-colunas {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Divide em 2 colunas de larguras iguais */
  gap: 12px 24px; /* Espaçamento entre linhas (12px) e colunas (24px) */
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Responsivo para telas menores/mobile (ficar em uma coluna só se necessário) */
@media (max-width: 576px) {
  .lista-cidades.duas-colunas {
    grid-template-columns: 1fr;
  }
}
/* Container de Destaque para a Instrução */
.map-instruction {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03); /* Glassmorphism sutil */
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  border-radius: 30px; /* Bordas bem arredondadas (estilo pílula) */
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Estilo do Texto */
.map-instruction .subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85); /* Texto claro e legível */
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Área do Ícone */
.map-instruction .instruction-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(213,167,32,1.00); /* Tom azul/ciano suave de destaque */
  border-radius: 50%;
  color: #F90004; /* Cor do ícone */
  flex-shrink: 0;
  animation: pulse-icon 2s infinite ease-in-out; /* Efeito de pulso discreto */
}

.map-instruction .instruction-icon svg {
  width: 14px;
  height: 14px;
}

/* Animação de Pulso */
@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255,243,91,1.00);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 8px 2px rgba(236,162,3,1.00);
  }
}

/* Responsivo */
@media (max-width: 480px) {
  .map-instruction {
    display: flex;
    border-radius: 12px; /* Em telas muito pequenas vira um bloco clássico */
    padding: 12px;
  }
}
/* Container de Seleção Personalizada */
.custom-select-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin-top: 15px;
}

/* O Campo Select Real */
.select-cidades {
  width: 100%;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  appearance: none; /* Remove estilo padrão do navegador */
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Estilo ao Focar/Clicar no Select */
.select-cidades:focus {
  outline: none;
  border-color: #00c6fb; /* Cor de destaque */
  box-shadow: 0 0 12px rgba(0, 198, 251, 0.25);
  background: rgba(15, 15, 25, 0.95);
}

/* Estilizando as opções dentro do dropdown */
.select-cidades option {
  background: #11141a; /* Fundo escuro para combinar com o layout */
  color: #fff;
  padding: 12px;
}

/* Seta Customizada para o Dropdown */
.select-arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-left: 2px solid rgba(255, 255, 255, 0.6);
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  transform: translateY(-70%) rotate(-45deg);
  transition: all 0.3s ease;
  pointer-events: none; /* Impede a seta de travar o clique */
}

/* Rotaciona a seta quando o select estiver focado */
.select-cidades:focus + .select-arrow {
  border-color: #00c6fb;
  transform: translateY(-30%) rotate(135deg);
}

/* Layout Geral das Obras */
.works__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) {
  .works__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* Container do marcador personalizado - CORRIGIDO PARA LARANJA PROKAT */
.custom-marker {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent !important;
  border: none !important;
}

/* O corpo do Pin (formato de gota) - LARANJA OFICIAL #e1a925 */
.marker-pin {
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  background: #e1a925; /* Laranja/dourado oficial Prokat - var(--primary) */
  background: linear-gradient(135deg, #e1a925, #f4d068);
  position: absolute;
  transform: rotate(-45deg);
  left: 50%;
  top: 50%;
  margin: -15px 0 0 -15px;
  box-shadow: 0 4px 12px rgba(225, 169, 37, 0.5), 0 2px 6px rgba(0, 0, 0, 0.4);
  transition: all 0.25s ease;
  border: 2px solid #111;
}

/* O círculo interno do Pin */
.marker-pin::after {
  content: '';
  width: 12px;
  height: 12px;
  margin: 7px 0 0 7px;
  background: #111111;
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
}

/* Efeito hover - brilho laranja mais forte */
.custom-marker:hover .marker-pin {
  background: #f4d068;
  transform: rotate(-45deg) scale(1.15);
  box-shadow: 0 6px 18px rgba(225, 169, 37, 0.7), 0 3px 8px rgba(0, 0, 0, 0.4);
  z-index: 1000 !important;
}


/* ==========================================================================
   MAPA ESTÁTICO - IMAGEM COM BORDAS ARREDONDADAS IGUAIS AO MAPA (12px)
   ========================================================================== */
.works__map-wrapper {
  width: 100%;
  height: 450px;
  position: relative;
  border-radius: 12px !important;
  overflow: hidden !important;
  border: 1px solid rgba(225, 169, 37, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.map-locked-wrapper {
  background: #1a1a1a;
}

.map-locked-wrapper #map {
  width: 100% !important;
  height: 100% !important;
  border-radius: 12px !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  border: none !important;
  box-shadow: none !important;
}

.map-locked-wrapper.map-unlocked #map {
  opacity: 1;
  pointer-events: all;
}

/* Leaflet precisa herdar o radius */
.leaflet-container,
#map .leaflet-pane,
#map .leaflet-tile-pane {
  border-radius: 12px !important;
}

/* Preview estático - IMAGEM COM BORDAS ARREDONDADAS */
.map-static-preview {
  position: absolute;
  inset: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px !important;
  border: 1px solid rgba(225, 169, 37, 0.15);
  cursor: default;
  transition: all 0.6s ease;
}

.map-static-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px !important;
  display: block;
  filter: brightness(0.98) contrast(1.02);
  transition: transform 0.6s ease;
}

.map-static-preview:hover img {
  transform: scale(1.02);
}

.map-static-preview.map-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.03);
}

/* Aviso abaixo da lista (não sobre o mapa) */
.map-status-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid #e1a925;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: #C5C7C9;
  transition: all 0.3s ease;
}

.map-status-info svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.map-status-info.map-unlocked-info {
  background: rgba(225, 169, 37, 0.08);
  border-color: rgba(225, 169, 37, 0.25);
  border-left-color: #e1a925;
  color: #fff;
}

.map-unlocked::after {
  content: '✓ Mapa interativo liberado';
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 20;
  background: rgba(225, 169, 37, 0.92);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  opacity: 0;
  animation: fadeInOutBadge 4s ease forwards;
  pointer-events: none;
}

@keyframes fadeInOutBadge {
  0% { opacity: 0; transform: translateY(10px); }
  15% { opacity: 1; transform: translateY(0); }
  85% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-10px); }
}

/* Remover estilos antigos de overlay que bloqueava o mapa */
.map-overlay,
.map-overlay-content,
.map-overlay-icon,
.map-overlay-badge {
  display: none !important;
}

