/* Transições suaves para o mapa */
.operate-map,
.operate-map iframe,
.operate-container {
  transition:
    padding 280ms ease,
    margin 280ms ease,
    width 280ms ease,
    height 320ms ease,
    border-radius 280ms ease,
    box-shadow 280ms ease,
    opacity 280ms ease;
}

/* Acessibilidade: respeitar quem prefere menos animação */
@media (prefers-reduced-motion: reduce) {
  .operate-map,
  .operate-map iframe,
  .operate-container {
    transition: none !important;
  }
}

/* ======= Configuração geral ======= */
body {
  background: #ffffff; /* fundo branco do site */
  margin: 0;
  font-family: "Poppins", sans-serif;
}

/* ======= Seção Amarela ======= */
.operate-full {
  width: 100vw;                  /* ocupa toda a largura da tela */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #ffffff;     /* amarelo/dourado igual ao print */
  padding: 10px 0;
}

/* ======= Layout Interno ======= */
.operate-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 50px;
}

/* ======= Mapa ======= */
.operate-map {
  flex: 1.2;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.operate-map iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 10px;
}

/* ======= Texto ======= */
.operate-text {
  flex: 1;
  color: #19443a;
}

.operate-text h2 {
  color: #145a3b;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  margin-bottom: 10px;
}

.operate-text hr {
  width: 60px;
  height: 4px;
  background: #1b6a48;
  border: none;
  margin: 12px 0 20px;
  border-radius: 4px;
}

.operate-text p {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.7;
  color: #333;
  margin-bottom: 30px;
}

/* ======= Botão ======= */
.btn-green {
  display: inline-block;
  background-color: #145a3b;
  color: #fff;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 28px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: 0.2s ease-in-out;
}

.btn-green:hover {
  background-color: #1b6a48;
  transform: translateY(-2px);
}

/* ======= Responsivo ======= */
@media (max-width: 950px) {
  .operate-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  /* Corrige o centramento e mantém largura total */
  .operate-map {
    width: 100%;
    margin: 0;
    left: 0;
    position: relative;
    border-radius: 0;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  }

  .operate-map iframe {
    display: block;
    width: 100%;
    height: 430px; /* ✅ altura ajustada — antes era 500px */
    border: none;
    border-radius: 0;
    margin: 0 auto;
    transition: all 0.3s ease-in-out;
  }

  /* Texto abaixo do mapa com espaçamento lateral */
  .operate-text {
    padding: 0 24px;
    text-align: center;
  }

  .operate-text hr {
    margin: 12px auto 20px;
  }
}

/* Altura extra em celulares menores */
@media (max-width: 600px) {
  .operate-map iframe {
    height: 480px; /* ✅ levemente maior pra celulares menores */
  }
}

