/* ========================================
   PÁGINA CONTATO
======================================== */

.contato-page .section {
  padding: 96px 0;
}

/* ========================================
   HERO
======================================== */
.service-hero {
  padding: 110px 0 80px;
  background: linear-gradient(
    135deg,
    var(--azul-principal) 0%,
    var(--azul-secundario) 100%
  );
  color: var(--branco);
  position: relative;
  overflow: hidden;
}

.service-hero::after {
  content: '';
  position: absolute;
  width: 620px;
  height: 620px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -220px;
  right: -140px;
}

.service-hero .section-title {
  margin-bottom: 0;
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.service-hero .section-title span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--dourado-claro);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.service-hero .section-title h1 {
  font-size: 48px;
  line-height: 1.12;
  font-weight: 800;
  color: var(--branco);
  margin-bottom: 18px;
}

.service-hero .section-title p {
  max-width: 700px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

/* ========================================
   INTRO
======================================== */
.contact-intro {
  padding-top: 72px;
}

.contact-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 56px;
  align-items: start;
}

.contact-intro-text h2 {
  font-size: 34px;
  line-height: 1.2;
  color: var(--azul-principal);
  margin-bottom: 24px;
}

.contact-intro-text p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--texto);
  margin-bottom: 18px;
}

.contact-points {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-point {
  background: var(--branco);
  border: 1px solid rgba(18, 62, 99, 0.08);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 10px 25px rgba(18, 62, 99, 0.05);
}

.contact-point strong {
  display: block;
  font-size: 17px;
  color: var(--azul-principal);
  margin-bottom: 6px;
}

.contact-point span {
  display: block;
  font-size: 14px;
  color: var(--texto-suave);
}

.contact-side-card {
  background: var(--branco);
  border: 1px solid rgba(18, 62, 99, 0.08);
  border-radius: 20px;
  padding: 32px 30px;
  box-shadow: 0 18px 45px rgba(18, 62, 99, 0.08);
  position: sticky;
  top: 110px;
}

.contact-side-card h3 {
  font-size: 22px;
  line-height: 1.3;
  color: var(--azul-principal);
  margin-bottom: 22px;
}

.contact-side-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-side-card li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(18, 62, 99, 0.06);
  font-size: 16px;
  line-height: 1.6;
  color: var(--texto);
}

.contact-side-card li:last-child {
  border-bottom: none;
}

/* ========================================
   TITULOS CENTRALIZADOS
======================================== */
.section-title.center {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 54px;
}

.section-title.center span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--dourado);
}

.section-title.center h2 {
  font-size: 44px;
  line-height: 1.18;
  color: var(--azul-principal);
  margin-bottom: 18px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.section-title.center p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--texto-suave);
  max-width: 760px;
  margin: 0 auto;
}

/* ========================================
   FORMULÁRIO
======================================== */
.contact-section {
  padding-top: 72px;
}

.contact-form-card {
  max-width: 920px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 26px;
  padding: 45px;
  box-shadow: 0 18px 45px rgba(15, 76, 138, 0.08);
  border: 1px solid #e7edf3;
}

.contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form .form-group.full-width {
  grid-column: 1 / -1;
}

.contact-form label {
  font-size: 0.98rem;
  font-weight: 700;
  color: #17375e;
  margin-bottom: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9e2ec;
  border-radius: 14px;
  padding: 15px 16px;
  font-size: 1rem;
  color: #17375e;
  background: #fff;
  outline: none;
  transition: 0.25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #caa64b;
  box-shadow: 0 0 0 4px rgba(202, 166, 75, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 170px;
}

.free-analysis-box {
  margin-top: 24px;
  padding: 18px 20px;
  background: #fbf8ef;
  border: 1px solid rgba(202, 166, 75, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.free-analysis-box input[type='checkbox'] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #caa64b;
}

.free-analysis-box label {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #17375e;
  font-weight: 600;
}

.btn-contact-submit {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  border: none;
  border-radius: 14px;
  padding: 16px 28px;
  font-size: 1.05rem;
  font-weight: 700;
  background: #caa64b;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-contact-submit:hover {
  transform: translateY(-2px);
  background: #b79237;
}

/* ========================================
   BLOCO FINAL
======================================== */
.contact-final {
  padding-top: 70px;
  padding-bottom: 110px;
}

/* ========================================
   RESPONSIVO
======================================== */
@media (max-width: 1100px) {
  .service-hero .section-title h1 {
    font-size: 42px;
  }

  .section-title.center h2 {
    font-size: 38px;
  }
}

@media (max-width: 992px) {
  .contato-page .section {
    padding: 80px 0;
  }

  .service-hero {
    padding: 84px 0 56px;
  }

  .service-hero .section-title h1 {
    font-size: 36px;
  }

  .contact-intro-grid,
  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-side-card {
    position: static;
  }

  .section-title.center h2 {
    font-size: 34px;
  }

  .contact-form-card {
    padding: 32px 24px;
  }
}

@media (max-width: 640px) {
  .service-hero .section-title h1 {
    font-size: 30px;
  }

  .service-hero .section-title p,
  .section-title.center p,
  .contact-intro-text p {
    font-size: 16px;
  }

  .contact-intro-text h2,
  .section-title.center h2 {
    font-size: 29px;
  }

  .contact-side-card,
  .contact-point {
    padding: 24px 20px;
  }

  .btn-contact-submit {
    width: 100%;
    min-width: 100%;
  }
}
