.contatos-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
}

.card-unidade {
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.card-unidade:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2) !important;
}

.form-card {
  position: sticky;
  top: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  border-radius: 6px;
  border: 1px solid #ddd;
  transition: border-color 0.3s;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #a10308;
  box-shadow: 0 0 0 0.2rem rgba(211, 37, 37, 0.25);
  outline: none;
}

.contact-form button:hover {
  background-color: #a10308 !important;
  transform: scale(1.02);
  transition: all 0.3s;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* ÍCONES DAS REDES SOCIAIS */
.d-flex.gap-3 {
  gap: 2rem !important;
}

/* DESKTOP */
@media (min-width: 993px) {
  .col-lg-8 {
    flex: 0 0 66.66%;
  }
  
  .col-lg-4 {
    flex: 0 0 33.33%;
  }
  
  .form-card {
    position: sticky;
    top: 20px;
  }
}

/* TABLET */
@media (max-width: 992px) and (min-width: 769px) {
  .contatos-section {
    padding: 50px 15px;
  }

  .form-card {
    position: relative;
    top: auto;
  }

  .col-lg-8 {
    flex: 0 0 100% !important;
  }
  
  .col-lg-4 {
    flex: 0 0 100% !important;
  }

  .card-unidade {
    margin-bottom: 20px;
  }

  iframe {
    height: 250px !important;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .contatos-section {
    padding: 20px 10px;
  }

  .map-container {
    display: none !important;
  }

  .col-lg-8 {
    flex: 0 0 100% !important;
  }

  .col-lg-4 {
    flex: 0 0 100% !important;
  }

@media (max-width: 768px) {
  .col-md-6 {
    margin-bottom: 40px !important;
  }

  .col-md-6:last-of-type {
    margin-bottom: -20px !important;
  }

  .card-unidade {
    margin-bottom: 0px !important;
  }

  .form-card {
    position: relative;
    top: auto;
    margin-top: 0px;
  }
}

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 16px;
  }

  .d-md-none {
    display: flex !important;
  }
}

.social-icons i {
  vertical-align: middle;
  line-height: 1;
}

.contatos-section {
  overflow: hidden;
}

.contatos-section .row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.contatos-section .col-lg-4 {
  display: flex;
  flex-direction: column;
  margin-bottom: 80px;
}

.map-container {
  position: relative;
  width: 100%;
  height: 300px;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

