/* Font Faces */
@font-face {
  font-family: 'futura-heavy-font';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/futura-heavy-font.ttf);
}

@font-face {
  font-family: 'futura-medium-bt';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/futura-medium-bt.ttf);
}

/* Contato Section */
.contato-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  font-family: futura-medium-bt, Arial, sans-serif;
}

.contato-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contato-title {
  font-size: 2.5rem;
  color: #00264e;
  text-align: left;
  margin-bottom: 50px;
  font-weight: 700;
  font-family: futura-heavy-font, Arial, sans-serif;
  position: relative;
  padding-bottom: 15px;
}

.contato-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: #00264e;
  border-radius: 2px;
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.contato-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contato-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.contato-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid #00264e;
}

.contato-content {
  padding: 25px;
}

.contato-name {
  font-size: 1.5rem;
  color: #00264e;
  margin: 0 0 20px 0;
  font-weight: 600;
  font-family: futura-heavy-font, Arial, sans-serif;
}

.contato-info {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  font-family: futura-medium-bt, Arial, sans-serif;
  text-align: left;
}

.contato-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  white-space: nowrap;
}

.contato-link {
  color: #00264e;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contato-link:hover {
  color: #004a9c;
  text-decoration: underline;
}

.contato-map-container {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contato-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive */
@media (max-width: 768px) {
  .contato-section {
    padding: 40px 15px;
  }
  
  .contato-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .contato-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .contato-title {
    font-size: 1.75rem;
  }
  
  .contato-name {
    font-size: 1.25rem;
  }
  
  .contato-image {
    height: 180px;
  }
  
  .contato-content {
    padding: 20px;
  }
}
