/* Carta de información */
.info-card {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh; /* Ocupa la altura de la ventana */
    padding-top: 5%; /* Ajusta la separación desde la parte superior */
    margin: 0 auto; /* Centra horizontalmente la sección */
    text-align: center;
}

.card {
    background-color: rgba(255, 255, 255, 0.10);
    /*border: 2px solid #4a6c50; !* Borde más marcado *!*/
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Sombra más visible */
    max-width: 500px; /* Ajusta el ancho de la carta */
    padding: 2rem 1.5rem;
    margin: auto;
}

.card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #4a6c50; /* Título en color verde oscuro */
    font-weight: bold;
}

.card p {
    font-size: 1.1rem;
    color: whitesmoke;
    margin-bottom: 1.8rem;
    line-height: 1.6;
}
.card a {
    font-weight: bold;
    color: whitesmoke;
    text-decoration: none;
}
/* Lapas “Par projektu” papildstili */

.project-card {
    max-width: 760px;
    text-align: center;
}

.project-card p {
    margin-bottom: 0;
}

.project-link {
    color: #4a6c50;
    font-weight: 700;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: color 0.25s ease;
}

.project-link:hover,
.project-link:focus-visible {
    color: #5b8363;
}

