/*=========================================
  BANNER DA PÁGINA DE CONTATO
=========================================*/
.contact-banner {
  padding: 150px 0 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.contact-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.contact-banner h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}

.breadcrumbs {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumbs a:hover {
  color: var(--secondary);
}

.separator {
  margin: 0 8px;
}

.current {
  color: var(--secondary);
}

/*=========================================
  SEÇÃO DE CONTATO
=========================================*/
.contact-section {
  padding: 80px 0;
  background-color: var(--white);
}

.contact-container {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.contact-info {
  flex: 1;
  padding-right: 20px;
}

.contact-info h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.contact-info h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 3px;
}

.contact-description {
  font-size: 18px;
  color: var(--dark-gray);
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
  padding: 15px;
  border-radius: var(--border-radius);
}

.contact-method:hover {
  background-color: var(--medium-gray);
  transform: translateX(5px);
}

.method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(10, 77, 64, 0.2);
}

.method-details {
  flex: 1;
}

.method-details h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.method-details p {
  font-size: 16px;
  color: var(--dark-gray);
  line-height: 1.5;
  margin-bottom: 0;
}

.contact-card {
  flex: 0 0 380px;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  transition: var(--transition);
  transform: translateY(0);
  border: 1px solid var(--medium-gray);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--secondary);
}

.card-header {
  padding: 25px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 15px;
}

.card-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.card-header h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0;
}

.card-body {
  padding: 30px;
}

.card-body p {
  font-size: 16px;
  color: var(--dark-gray);
  margin-bottom: 25px;
  line-height: 1.6;
}

.response-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  padding: 10px 15px;
  background-color: rgba(241, 143, 28, 0.1);
  border-radius: var(--border-radius);
  color: var(--secondary);
  font-weight: 500;
}

.whatsapp-button {
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25D366; /* Cor oficial do WhatsApp */
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
  background-color: #1da851;
  transform: translateY(-3px);
}

.whatsapp-button i {
  font-size: 20px;
}

/*=========================================
  RESPONSIVIDADE
=========================================*/
@media (max-width: 1200px) {
  .contact-container {
    gap: 30px;
  }
  
  .contact-card {
    flex: 0 0 350px;
  }
}

@media (max-width: 992px) {
  .contact-banner h1 {
    font-size: 36px;
    padding-top: 70px;
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .contact-info {
    padding-right: 0;
  }
  
  .contact-card {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .contact-info h2 {
    font-size: 28px;
  }
  
  .contact-description {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .contact-banner {
    padding: 80px 0 40px;
  }
  
  .contact-banner h1 {
    font-size: 32px;
  }
  
  .contact-section, .faq-section {
    padding: 60px 0;
  }
  
  .contact-method {
    padding: 10px;
  }
  
  .method-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .method-details h3 {
    font-size: 17px;
  }
  
  .method-details p {
    font-size: 15px;
  }
  
  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .contact-banner {
    padding: 70px 0 35px;
  }
  
  .contact-banner h1 {
    font-size: 28px;
  }
  
  .contact-section, .faq-section {
    padding: 50px 0;
  }
  
  .contact-info h2 {
    font-size: 24px;
  }
  
  .contact-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  
  .card-header {
    padding: 20px;
  }
  
  .card-body {
    padding: 20px;
  }
  
  .whatsapp-button {
    padding: 14px 16px;
    font-size: 15px;
  }
  
  .section-title {
    font-size: 24px;
  }
}