.pakko-contato {
  font-family: 'Inter', sans-serif;
}

/* Hero Contato */
.pakko-contato-hero {
  background: linear-gradient(135deg, hsl(215, 65%, 20%) 0%, hsl(215, 55%, 35%) 100%);
  padding: 128px 16px 80px;
}

.pakko-contato-hero-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.pakko-contato-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .pakko-contato-hero h1 {
    font-size: 3rem;
  }
}

.pakko-contato-hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Conteúdo Contato */
.pakko-contato-content {
  padding: 64px 16px;
  background: hsl(210, 20%, 98%);
}

@media (min-width: 768px) {
  .pakko-contato-content {
    padding: 96px 24px;
  }
}

.pakko-contato-container {
  max-width: 1280px;
  margin: 0 auto;
}

.pakko-contato-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .pakko-contato-grid {
    grid-template-columns: 2fr 3fr;
    gap: 64px;
  }
}

/* Info Contato */
.pakko-contato-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(215, 25%, 15%);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .pakko-contato-info h2 {
    font-size: 2rem;
  }
}

.pakko-contato-info > p {
  color: hsl(215, 15%, 45%);
  margin-bottom: 32px;
  line-height: 1.75;
}

.pakko-contato-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pakko-contato-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pakko-contato-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(30, 58, 95, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pakko-contato-item-icon svg {
  width: 20px;
  height: 20px;
  color: hsl(215, 65%, 25%);
}

.pakko-contato-item-text span {
  font-size: 0.875rem;
  color: hsl(215, 15%, 45%);
  display: block;
}

.pakko-contato-item-text a,
.pakko-contato-item-text p {
  font-weight: 500;
  color: hsl(215, 25%, 15%);
  text-decoration: none;
  margin: 0;
}

.pakko-contato-item-text a:hover {
  color: #ca8a04;
}

.pakko-contato-cta-box {
  margin-top: 40px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(210, 215, 225, 0.5);
  border: 1px solid rgba(214, 220, 228, 0.5);
}

.pakko-contato-cta-box h3 {
  font-weight: 600;
  color: hsl(215, 25%, 15%);
  margin-bottom: 8px;
}

.pakko-contato-cta-box p {
  font-size: 0.875rem;
  color: hsl(215, 15%, 45%);
  margin: 0;
}

/* Formulário */
.pakko-contato-form-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 12px -2px rgba(26, 42, 68, 0.08);
  border: 1px solid rgba(214, 220, 228, 0.5);
}

@media (min-width: 768px) {
  .pakko-contato-form-wrapper {
    padding: 40px;
  }
}

.pakko-contato-form-wrapper h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(215, 25%, 15%);
  margin-bottom: 24px;
}

.pakko-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pakko-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .pakko-form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pakko-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pakko-form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(215, 25%, 15%);
}

.pakko-form-group input,
.pakko-form-group textarea {
  padding: 12px 16px;
  border: 1px solid hsl(210, 20%, 88%);
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: hsl(215, 25%, 15%);
  background: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pakko-form-group input:focus,
.pakko-form-group textarea:focus {
  outline: none;
  border-color: hsl(215, 65%, 25%);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.pakko-form-group input::placeholder,
.pakko-form-group textarea::placeholder {
  color: hsl(215, 15%, 60%);
}

.pakko-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.pakko-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, hsl(38, 70%, 50%) 0%, hsl(38, 80%, 60%) 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  width: 100%;
}

@media (min-width: 768px) {
  .pakko-form-submit {
    width: auto;
  }
}

.pakko-form-submit:hover {
  opacity: 0.9;
}

.pakko-form-submit svg {
  width: 16px;
  height: 16px;
}
