/**
 * Estilos Específicos da Página Contato - IR Log Transportes
 * Arquivo: contact.css
 * 
 * Contém estilos exclusivos para:
 * - Hero Section
 * - Formulário de contato
 * - Informações de contato
 * - Mapa
 */

/* ===== HERO CONTATO ===== */
.hero-contato {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 27, 0.9) 0%,
    rgba(227, 29, 36, 0.8) 50%,
    rgba(26, 26, 27, 0.9) 100%
  );
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-contato::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 50L50 0L100 50L50 100Z" fill="rgba(227,29,36,0.03)"/></svg>');
  animation: patternMove 20s linear infinite;
  pointer-events: none;
}

.hero-contato-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white-color);
  max-width: 800px;
  padding: 2rem;
}

.hero-contato-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-contato-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  opacity: 0.95;
  line-height: 1.8;
  text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.5);
}

/* ===== ANIMAÇÕES ===== */
@keyframes patternMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 100px;
  }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
  .hero-contato {
    height: 50vh;
    min-height: 350px;
  }

  .hero-contato-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-contato {
    height: 40vh;
    min-height: 300px;
  }
}
