/* ============================================================
   contato.css — Pousada Juquiriquerê
   Estilos específicos para a página de contato
   ============================================================ */

body {
  background-color: #F8F7F5; /* Matches the left side */
}

/* ── LAYOUT DIVIDIDO ───────────────────────────────────────── */
.ct-split {
  display: flex;
  min-height: 100vh;
  /* O offset do header será contornado pelos paddings */
}

/* ── LADO ESQUERDO ─────────────────────────────────────────── */
.ct-left {
  flex: 1;
  background-color: #F4F2EE; /* Cor exata de fundo do Figma (esquerda) */
  padding: 180px 8% 100px 5%; /* Top padding for header */
  display: flex;
  justify-content: flex-end; /* Alinha o conteúdo à direita dentro da metade esquerda */
}

.ct-left-content {
  max-width: 480px;
  width: 100%;
}

/* ── LADO DIREITO ──────────────────────────────────────────── */
.ct-right {
  flex: 1;
  background-color: #F9F8F6; /* Cor exata de fundo do Figma (direita) */
  padding: 180px 5% 100px 8%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

/* ── TIPOGRAFIA LADO ESQUERDO ──────────────────────────────── */
.ct-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: #332720; /* Cor escura */
  line-height: 1;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ct-desc {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  color: #554A44;
  margin-bottom: 60px;
  line-height: 1.5;
  font-weight: 300;
}

.ct-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8C847E;
  margin-bottom: 20px;
  font-weight: 600;
}

.ct-info-group {
  margin-bottom: 50px;
}

.ct-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ct-links li {
  margin-bottom: 20px;
}

.ct-links a {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #332720;
  font-family: var(--font-sans);
  font-weight: 400;
  text-decoration: none;
  font-size: 1.05rem;
  transition: opacity 0.3s ease;
}

.ct-links a:hover {
  opacity: 0.6;
}

.ct-address {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #332720;
  line-height: 1.6;
  font-weight: 300;
}

/* ── CARD DO FORMULÁRIO ────────────────────────────────────── */
.ct-form-card {
  background-color: var(--color-white);
  padding: 60px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 30px 60px rgba(51, 39, 32, 0.05); /* Sombra suave */
}

.ct-form-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: #332720;
  margin-bottom: 40px;
  font-weight: 700;
}

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ct-input-group input,
.ct-input-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #E2DDD7;
  padding: 12px 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #332720;
  background: transparent;
  transition: border-color 0.3s ease;
  resize: vertical;
}

.ct-input-group input:focus,
.ct-input-group textarea:focus {
  outline: none;
  border-bottom-color: #332720;
}

.ct-input-group input::placeholder,
.ct-input-group textarea::placeholder {
  color: #A39B95;
  font-weight: 300;
}

.ct-submit-btn {
  background-color: #332720; /* Dark brown */
  color: var(--color-white);
  border: none;
  padding: 18px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.ct-submit-btn:hover {
  background-color: #1A130F;
}

/* ── RESPONSIVIDADE ────────────────────────────────────────── */
@media (max-width: 1000px) {
  .ct-split {
    flex-direction: column;
  }
  
  .ct-left {
    justify-content: center;
    padding: 140px 24px 60px; /* Offset de header */
  }

  .ct-left-content {
    max-width: 100%;
  }
  
  .ct-right {
    justify-content: center;
    padding: 60px 24px 100px;
  }

  .ct-form-card {
    max-width: 100%;
    padding: 40px 30px;
  }
}

@media (max-width: 600px) {
  .ct-title {
    font-size: 3rem;
  }

  .ct-desc {
    font-size: 1.05rem;
  }
}

@media (max-width: 400px) {
  .ct-title {
    font-size: 2.5rem;
  }
  
  .ct-form-card {
    padding: 30px 20px;
  }
}
