/* 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;
}

.contact-card {
    max-width: 700px;
    text-align: center;
}

.contact-text {
    margin-bottom: 0.75rem;
}

.contact-email {
    margin-bottom: 0;
}

.contact-email a {
    display: inline-block;
    padding: 0.8rem 1.2rem;
    color: #ffffff;
    font-weight: 700;
    overflow-wrap: anywhere;
    text-decoration: none;
    background-color: #4a6c50;
    border-radius: 8px;
    transition:
            background-color 0.25s ease,
            transform 0.2s ease,
            box-shadow 0.25s ease;
}

.contact-email a:hover,
.contact-email a:focus-visible {
    background-color: #5b8363;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(34, 66, 42, 0.22);
}