body {
  font-family: 'Lato', sans-serif;  
}

html, body {
  height: 100%;
  margin: 0;
}

.d-flex-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

h1, h2, h5 {
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}

.card {
  transition: transform 0.2s ease;
}
.card:hover {
  transform: scale(1.03);
}

.experience-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

.logo-navbar {
  height: 40px;           /* Altura máxima del logo */
  width: auto;            /* Para que mantenga proporción */
  object-fit: contain;    /* Que se ajuste al espacio sin deformarse */
  max-width: 100%;        /* Nunca exceda su contenedor */
}

@media (max-width: 576px) {
  .logo-navbar {
    height: 30px;
  }
}
