/* Estilos específicos para a página de Atuação */

.atuacao-hero {
  background-color: var(--primary-color);
  padding: 60px 0;
  color: var(--white-color);
  text-align: center;
}

.atuacao-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.divider-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: var(--white-color);
  border-radius: 50%;
}

.atuacao-content {
  padding: 80px 0;
  background-color: var(--white-color);
}

.atuacao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.atuacao-info {
  padding: 30px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 10px;
  position: relative;
}

.atuacao-text {
  font-size: 1.2rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.atuacao-text strong {
  font-weight: 700;
  color: var(--secondary-color);
}

.arrow-container {
  display: flex;
  margin-top: 40px;
}

.arrow-right {
  width: 30px;
  height: 30px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid var(--white-color);
  margin-right: 10px;
}

.atuacao-map {
  position: relative;
/*   background-color: var(--secondary-color); */
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.brasil-map {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.map-marker {
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: var(--primary-color);
  border-radius: 50%;
  border: 2px solid var(--white-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-marker:hover {
  transform: translate(-50%, -50%) scale(1.5);
  z-index: 10;
}

.map-marker::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  background-color: rgba(0, 178, 203, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.unidades-section {
  background-color: var(--light-color);
}

.unidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.unidade-card {
  background-color: var(--white-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.unidade-card:hover {
  transform: translateY(-10px);
}

.unidade-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.unidade-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.unidade-card p {
  color: var(--gray-color);
  margin-bottom: 5px;
}

.diferenciais-section {
  background-color: var(--white-color);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.diferencial-card {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.diferencial-card:hover {
  transform: translateY(-5px);
}

.diferencial-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.diferencial-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.diferencial-card p {
  color: var(--gray-color);
}

.cta-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/call_to_action_bg.png');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: var(--white-color);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.mt-40 {
  margin-top: 40px;
}

/* Responsividade */
@media (max-width: 992px) {
  .atuacao-grid {
    grid-template-columns: 1fr;
  }
  
  .atuacao-hero h1 {
    font-size: 2.5rem;
  }
  
  .atuacao-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .atuacao-hero h1 {
    font-size: 2rem;
  }
  
  .atuacao-info {
    padding: 20px;
  }
  
  .atuacao-text {
    font-size: 1rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .divider-dots {
    gap: 10px;
  }
  
  .dot {
    width: 8px;
    height: 8px;
  }
  
  .arrow-container {
    justify-content: center;
  }
}
