/* Hero Section */
.contato-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0f5fa0 100%);
  color: white;
  padding: 60px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contato-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom center no-repeat;
  background-size: cover;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 10px;
  opacity: 0.95;
}

.hero-description {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Contato Section */
.contato-section {
  padding: 80px 0;
  background: #f7f8fa;
}

.contato-wrapper {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Formulário */
.form-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-title {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.form-subtitle {
  color: var(--text-gray);
  margin-bottom: 30px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group label .icon {
  font-size: 1.2rem;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e4e8;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s;
  font-family: inherit;
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 117, 188, 0.1);
}

.form-control::placeholder {
  color: #adb5bd;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn-submit {
  flex: 1;
  background: linear-gradient(135deg, var(--primary), #0f5fa0);
  color: white;
  border: none;
  padding: 16px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(27, 117, 188, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 117, 188, 0.4);
}

.btn-submit .icon-arrow {
  font-size: 1.3rem;
  transition: transform 0.3s;
}

.btn-submit:hover .icon-arrow {
  transform: translateX(5px);
}

.btn-reset {
  background: white;
  color: var(--text-gray);
  border: 2px solid #e0e4e8;
  padding: 14px 25px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-reset:hover {
  border-color: var(--text-gray);
  color: var(--text-dark);
}

/* Informações de Contato */
.info-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  height: fit-content;
  position: sticky;
  top: 20px;
}

.info-card h3 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.info-card > p {
  color: var(--text-gray);
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e0e4e8;
}

.info-item:last-of-type {
  border-bottom: none;
  margin-bottom: 30px;
}

.info-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), #0f5fa0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(27, 117, 188, 0.2);
}

.info-icon.whatsapp-icon {
  background: transparent;
  box-shadow: none;
}

.info-icon-simple {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.info-content p {
  color: var(--text-gray);
  margin-bottom: 5px;
  line-height: 1.6;
}

.info-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.info-content a:hover {
  color: #0f5fa0;
  text-decoration: underline;
}

.btn-whatsapp {
  display: inline-block;
  background: #25D366;
  color: white !important;
  padding: 10px 20px;
  border-radius: 50px;
  margin-top: 10px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.social-links {
  margin-top: 20px;
  text-align: center;  
}
 
.social-links a {
  display: inline-block;
  margin-right: 15px;
  transition: transform 0.3s;
  img {
    width: 32px;
    height: 32px;
  }
}
/* Responsivo */
@media (max-width: 1024px) {
  .contato-wrapper {
    grid-template-columns: 1fr;
  }
  
  .info-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .contato-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .form-card, .info-card {
    padding: 25px 15px;
  }
  
  .form-control {
    padding: 12px 14px;
    font-size: 16px; /* Evita zoom automático no iOS */
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .btn-submit, .btn-reset {
    width: 100%;
  }
  
  .info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}