/* contact.css - Inspirado na CrowdStrike, com cores da BaseShield IT */

/* =========================
   HERO SECTION
========================= */
.contact-hero {
  padding: 8rem 1.5rem 4rem;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid #eef2f6;
}

.contact-hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: #475569;
  font-size: 1.2rem;
  line-height: 1.7;
  font-weight: 400;
}

.highlight {
  color: #2563eb;
  font-weight: 600;
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0) 80%);
  padding: 0 4px;
}

.desktop-only {
  display: block;
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 6rem 1rem 3rem;
  }
  
  .contact-hero h1 {
    font-size: 2.4rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .desktop-only {
    display: none;
  }
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
  padding: 5rem 1.5rem 6rem;
  background-color: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* =========================
   FORM COLUMN (LEFT)
========================= */
.form-column {
  background-color: #ffffff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-field {
  width: 100%;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1.5px solid #e2e8f0;
  background-color: #ffffff;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
  color: #1e293b;
}

.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form select {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%2364748b" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  cursor: pointer;
}

.consent-text {
  margin: 1rem 0 0.5rem;
}

.consent-text p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.6;
}

.consent-text a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.consent-text a:hover {
  text-decoration: underline;
}

.submit-btn {
  padding: 16px 24px;
  border-radius: 8px;
  border: none;
  background-color: #0f172a;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: fit-content;
  min-width: 200px;
  border: 1px solid #1e293b;
}

.submit-btn i {
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.submit-btn:hover {
  background-color: #1e293b;
  border-color: #334155;
}

.submit-btn:hover i {
  transform: translateX(4px);
}

/* =========================
   INFO COLUMN (RIGHT) - Estilo CrowdStrike
========================= */
.info-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-block {
  border-bottom: 1px solid #eef2f6;
  padding-bottom: 2rem;
}

.info-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-block h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-block h3 i {
  color: #2563eb;
  font-size: 1rem;
}

.info-item-compact {
  margin-bottom: 1.2rem;
}

.info-item-compact:last-child {
  margin-bottom: 0;
}

.info-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.info-email,
.info-phone {
  display: block;
  color: #0f172a;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.info-email:hover,
.info-phone:hover {
  color: #2563eb;
}

.support-text {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.support-link i {
  font-size: 0.8rem;
}

.support-link:hover {
  border-bottom-color: #2563eb;
}

.support-link:hover i {
  transform: translateX(2px);
}

/* =========================
   RESPONSIVIDADE
========================= */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .submit-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 1rem 4rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .info-block h3 {
    font-size: 1rem;
  }
  
  .info-email,
  .info-phone {
    font-size: 0.9rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 2rem;
  }
  
  .submit-btn {
    min-width: 100%;
  }
}