/* =============================================
   ESTILOS GLOBALES - CSS SIN TAILWIND
   ============================================= */

/* Reset y estilos base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Estilos del body */
body {
  background-color: #FAFAFA;
  color: #1A1A1A;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.5;
}

/* =============================================
   CONTENIDO PRINCIPAL - PERFIL
   ============================================= */

.perfil-main {
  flex-grow: 1;
  padding-top: 6rem;
  padding-bottom: 6rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =============================================
   UTILIDADES ADICIONALES
   ============================================= */

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Asegurar que el contenido principal ocupe el espacio disponible */
#main-content {
  flex: 1;
}