.contato-section {
    background: #f0f8ff;
    padding: 80px 20px;
  }
  
  .contato-container {
    max-width: 700px;
    margin: auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
  
  .titulo-contato {
    font-size: 32px;
    color: #0d47a1;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .subtitulo-contato {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .form-contato .campo-form {
    margin-bottom: 20px;
  }
  
  .campo-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
  }
  
  .campo-form i {
    margin-right: 6px;
    color: #0d47a1;
  }
  
  .campo-form input,
  .campo-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 8px;
    transition: border 0.3s;
    font-size: 16px;
  }
  
  .campo-form input:focus,
  .campo-form textarea:focus {
    border-color: #0d47a1;
    outline: none;
  }
  
  .btn-enviar {
    background: #0d47a1;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
  }
  
  .btn-enviar:hover {
    background: #1565c0;
  }
  
  /* Responsivo */
  @media (max-width: 600px) {
    .contato-container {
      padding: 20px;
    }
  }
  
  .info-contato {
    background: #e3f2fd;
    padding: 60px 20px;
  }
  
  .info-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
  }
  
  .titulo-info {
    font-size: 32px;
    color: #0d47a1;
    margin-bottom: 40px;
  }
  
  .info-itens {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .info-box {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .info-box:hover {
    transform: translateY(-5px);
  }
  
  .info-box i {
    font-size: 32px;
    color: #0d47a1;
    margin-bottom: 15px;
  }
  
  .info-box h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #333;
  }
  
  .info-box p,
  .info-box a {
    font-size: 16px;
    color: #555;
    text-decoration: none;
  }
  
  .horario-atendimento {
    background: #ffffff;
    padding: 60px 20px;
    text-align: center;
  }
  
  .horario-container {
    max-width: 700px;
    margin: auto;
  }
  
  .titulo-horario {
    font-size: 30px;
    color: #0d47a1;
    margin-bottom: 10px;
  }
  
  .descricao-horario {
    color: #555;
    font-size: 16px;
    margin-bottom: 25px;
  }
  
  .lista-horario {
    list-style: none;
    padding: 0;
    font-size: 18px;
    color: #333;
  }
  
  .lista-horario li {
    margin-bottom: 12px;
  }
  
  .lista-horario i {
    color: #0d47a1;
    margin-right: 10px;
    font-size: 20px;
  }
  
  .relogio-animado {
    animation: girarRelogio 2s infinite linear;
  }
  
  @keyframes girarRelogio {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .fale-conosco {
    background: #e3f2fd;
    padding: 60px 20px;
  }
  
  .container-fale {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  
  .fale-texto {
    flex: 1;
    min-width: 280px;
  }
  
  .fale-texto h2 {
    font-size: 32px;
    color: #0d47a1;
    margin-bottom: 15px;
  }
  
  .fale-texto p {
    font-size: 16px;
    color: #333;
    margin-bottom: 25px;
  }
  
  .btn-fale {
    background: #0d47a1;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .btn-fale:hover {
    background: #1565c0;
  }
  
  .fale-imagem {
    flex: 1;
    min-width: 280px;
    text-align: center;
  }
  
  .fale-imagem img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
  }
  
  .agendar-reuniao {
    background: #f5faff;
    padding: 60px 20px;
    text-align: center;
  }
  
  .agendar-container {
    max-width: 800px;
    margin: auto;
  }
  
  .agendar-reuniao h2 {
    font-size: 30px;
    color: #0d47a1;
    margin-bottom: 15px;
  }
  
  .agendar-reuniao p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
  }
  
  .btn-agendar {
    background: #0d47a1;
    color: #fff;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
  }
  
  .btn-agendar i {
    margin-right: 8px;
  }
  
  .btn-agendar:hover {
    background: #1565c0;
  }
  
  .mapa-localizacao {
    background-color: #e3f2fd;
    padding: 60px 20px;
    text-align: center;
  }
  
  .container-mapa {
    max-width: 1000px;
    margin: auto;
  }
  
  .mapa-localizacao h2 {
    font-size: 30px;
    color: #0d47a1;
    margin-bottom: 10px;
  }
  
  .mapa-localizacao p {
    color: #555;
    margin-bottom: 30px;
    font-size: 16px;
  }
  
  .mapa-iframe iframe {
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
 
  .intro-contato {
  position: relative;
    background: linear-gradient(135deg, #068beb, #ffffff);
  overflow: hidden;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.intro-contato::before,
.intro-contato::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(4, 0, 255, 0.178) 20%, transparent 20%);
  background-size: 50px 50px;
  animation: bubbles 35s linear infinite;
  z-index: 0;
}

.intro-contato::after {
  animation-delay: 4s;
}

@keyframes bubbles {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-100%) rotate(360deg);
  }
}

.intro-contato > * {
  position: relative;
  z-index: 1;
}

.intro-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.intro-texto {
  flex: 1;
  min-width: 300px;
}

.intro-texto h1 {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 20px;
}

.intro-texto p {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 30px;
}

.btn-intro-contato {
  background: #0d47a1;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-intro-contato:hover {
  background: #1565c0;
}

.intro-imagem {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.intro-imagem img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
