:root {
  --primary-color: #616161;
  --secondary-color: #f5f5f5;
  --accent-color: #c72041;
  --light-color: #fafafa;
  --dark-color: #333;
  --text-color: #333;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* =========================
   FONTES
========================= */
@font-face {
  font-family: 'GalanoGrotesqueRegular';
  src: url('/assets/fonts/GalanoGrotesqueRegular.otf') format('opentype');
  font-weight: 500;
}
@font-face {
  font-family: 'GalanoGrotesqueBold';
  src: url('/assets/fonts/GalanoGrotesqueBold.otf') format('opentype');
  font-weight: 700;
}
@font-face {
  font-family: 'GalanoGrotesqueItalic';
  src: url('/assets/fonts/GalanoGrotesqueItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
}

/* =========================
   BASE
========================= */
html, body {
  margin: 0;
  font-family: 'GalanoGrotesqueRegular', sans-serif;
  background: #f9f9f9;
  color: var(--text-color);
}

/* =========================
   BREADCRUMB
========================= */
.breadcrumb-container {
  max-width: 1300px;
  margin: 20px auto 10px;
  padding: 0 25px;
}

.breadcrumb {
  font-size: 14px;
  color: #666;
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}
.breadcrumb .sep { margin: 0 6px; color: #aaa; }
.breadcrumb span { color: #333; font-weight: 600; }

/* =========================
   CONTAINER PRINCIPAL
========================= */
.main-content {
  padding: 20px;
  max-width: 1300px;
  margin: 0 auto;
}

.contact-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* =========================
   FORMULÁRIO (coluna esquerda)
========================= */
.page-title {
  font-family: 'GalanoGrotesqueBold';
  color: var(--dark-color);
  font-size: 2rem;
  margin-bottom: 15px;
  position: relative;
}
.page-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
}

.page-subtitle {
  font-size: 1rem;
  color: var(--text-color);
  margin-top: 5px;
  opacity: 0.9;
}

.formulario-container {
  background: var(--secondary-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

.form-group { margin-bottom: 18px; display: flex; flex-direction: column; }
.form-group label { font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; color: var(--dark-color); }

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(199, 32, 65, 0.2);
}

.btn-enviar {
  background: var(--accent-color);
  color: var(--white);
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-family: 'GalanoGrotesqueBold';
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  margin-top: 10px;
}
.btn-enviar:hover { background: #a81a34; transform: translateY(-2px); }

/* =========================
   INFORMAÇÕES (coluna direita)
========================= */
.contact-info { display: flex; flex-direction: column; justify-content: space-between; }
.contact-text { font-size: 1.05rem; line-height: 1.6; color: var(--dark-color); margin-bottom: 20px; }
.contact-text h2, .contact-text h3 {
  font-family: 'GalanoGrotesqueBold';
  color: var(--primary-color);
  margin-bottom: 10px;
}

.image-box { margin-top: 20px; text-align: center; }
.image-box img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 900px) {
  .contact-card { grid-template-columns: 1fr; }
}
