/**
 * Fale Conosco Page Styles
 *
 * @package BIM_Works
 */

/* Container global e alinhamento */
.fale-conosco-page {
  background-color: #0a0a0b;
  color: #e5e5e5;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
}

.fc-container {
  max-width: 1096px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Seção do topo / Hero */
.fc-hero {
  padding-top: 80px;
  padding-bottom: 60px;
}

.fc-title {
  color: #e5e5e5;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 48px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 32px;
}

.fc-subtitle {
  max-width: 760px;
  margin-inline: auto;
  color: #99a1af;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 29.25px;
  margin-top: 0;
  margin-bottom: 0;
}

/* Seção de informações + formulário */
.fc-content {
  padding-bottom: 80px;
}

.fc-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* Boxes/Cards individuais */
.fc-info-card,
.fc-form-card {
  border-radius: 12px;
  border: 1px solid #7c3aed;
  background: #000000;
  padding: 56px 40px 76px;
  flex: 1;
}

.fc-info-card {
  max-width: 468px; /* 388px inner width + 80px padding */
}

.fc-form-card {
  max-width: 588px; /* 508px inner width + 80px padding */
}

/* Coluna 1: Informações */
.fc-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.fc-info__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fc-info__title {
  max-width: 393px;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
  margin: 0;
}

.fc-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fc-info__item {
  color: #d1d5dc;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  position: relative;
  padding-left: 14px;
}

.fc-info__item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #7c3aed;
}

.fc-info__contacts {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}

.fc-info__block {
  margin-bottom: 48px;
  border-bottom: 1px solid #262626;
  padding-bottom: 16px;
}

.fc-info__block:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.fc-info__label {
  color: #6a7282;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  margin-bottom: 6px;
}

.fc-info__value {
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.fc-info__value a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.fc-info__value a:hover {
  color: #7c3aed;
}

/* Coluna 2: Formulário */
.fc-form__title {
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
  margin-top: 0;
  margin-bottom: 32px;
}

.fc-form {
  display: flex;
  flex-direction: column;
}

.fc-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 28px;
  row-gap: 24px;
}

.fc-form__group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.fc-form__group--full {
  grid-column: span 2;
}

.fc-form__label {
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  margin-bottom: 8px;
}

.fc-form__input,
.fc-form__textarea {
  border-radius: 6px;
  border: 1px solid rgba(124, 58, 237, 0.40);
  background: #1a1a1a;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 0 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.fc-form__input {
  height: 44px;
}

.fc-form__textarea {
  height: 120px;
  padding: 12px 16px;
  resize: none;
}

.fc-form__input:focus,
.fc-form__textarea:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.2);
}

.fc-form__submit-wrap {
  margin-top: 42px;
  grid-column: span 2;
}

.fc-form__button {
  width: 100%;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(270deg, #0a0a0b 0%, #472876 75%, #7c3aed 100%);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
  
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  
  transition: transform 300ms ease-out, box-shadow 300ms ease-out, opacity 300ms ease-out;
}

.fc-form__button svg {
  height: 20px;
  width: auto;
  transition: transform 300ms ease-out;
}

.fc-form__button:hover {
  transform: translateY(-2px);
  opacity: 0.96;
  box-shadow:
    0 14px 24px -4px rgba(124, 58, 237, 0.22),
    0 8px 12px -6px rgba(124, 58, 237, 0.16);
}

.fc-form__button:hover svg {
  transform: translateX(3px);
}

/* Responsividade */
@media (max-width: 991px) {
  .fc-grid {
    flex-direction: column;
    gap: 40px;
  }

  .fc-info-card,
  .fc-form-card {
    max-width: 100%;
    width: 100%;
    padding: 40px 24px 56px;
  }
}

@media (max-width: 768px) {
  .fc-hero {
    padding-top: 50px;
    padding-bottom: 40px;
  }

  .fc-title {
    font-size: 36px;
    line-height: 38px;
    margin-bottom: 20px;
  }

  .fc-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .fc-form__grid {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .fc-form__group--full {
    grid-column: span 1;
  }

  .fc-form__submit-wrap {
    grid-column: span 1;
    margin-top: 32px;
  }

  .fc-info__title,
  .fc-form__title {
    font-size: 24px;
    line-height: 32px;
  }

  .fc-info__block {
    margin-bottom: 32px;
  }
}

/* Honeypot & Alerts */
.fc-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.fc-form__alert {
  padding: 16px 20px;
  border-radius: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 24px;
  font-weight: 400;
}

.fc-form__alert--success {
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #10b981;
}

.fc-form__alert--error {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
}

