.contact-section {
  margin-bottom: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 390px);
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
   justify-content: center;
}

.contact-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.contact-details {
text-align: center;
}

.contact-details p{
margin-bottom: 10px;
line-height: 1.6;
}
.contact-icon {
    font-size: 2.8rem;
    color: #c91414;
    margin-bottom: 20px;
}
.contact-card i {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.contact-card h3 {
  margin-bottom: 10px;
  color: var(--dark-color);
}

.contact-card p {
  font-size: 0.95rem;
  color: #555;
}

.contact-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #cf0404;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 15px;
  background: #f9f9f9;
  border-radius: 8px;
  margin: 15px 0;
  transition: all 0.3s ease;
}

.section-title{
margin-top: 10px;
text-align: left;
}

.contact-link:hover {
  background: #eee;
  transform: scale(1.03);
}


.contact-hours {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  border-left: 4px solid #cf0404;
}

.contact-hours p {
  margin: 5px 0;
  color: #444;
}

.contact-details small {
  display: block;
  color: #777;
  font-size: 0.85rem;
  margin-top: 8px;
  font-style: italic;
  text-align: center;
}

.mini-map{
  margin-top:20px;
  border-radius:10px;
  overflow:hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.mini-map iframe{
  width:100%;
  height:160px;
  border:5px;
    cursor: pointer;
}

/* Responsivo */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-card {
    padding: 25px 20px;
  }
}

