/* =========================================
   PÁGINA DE CONTACTO
   Reutiliza los tokens de diseño de home_moises.css
   ========================================= */

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

.contacto-section {
  padding: 64px 20px;
  display: flex;
  justify-content: center;
}

.contacto-container {
  width: 100%;
  max-width: 640px;
  text-align: center;
}

/* El footer fluye con el contenido (no fixed).
   body flex-column + main flex:1 lo empuja al fondo. */

.contacto-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.contacto-subtitle {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.contacto-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.contacto-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  padding: 20px 22px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.contacto-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark3);
  color: var(--green);
}

.contacto-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

.contacto-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.contacto-label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.contacto-value {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
}

a.contacto-value {
  text-decoration: none;
  transition: color var(--transition);
}

a.contacto-value:hover {
  color: var(--green);
}

@media (max-width: 480px) {
  .contacto-item {
    padding: 16px 18px;
  }
  .contacto-value {
    font-size: 15px;
    word-break: break-word;
  }
}
