/* Espaciado reducido entre párrafos */
.section-text {
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
}

/* Botones info */
.info-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 auto 2.5rem;
}

.info-button {
    padding: 0.75rem 1.5rem;
    background-color: #0e7c86;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    width: fit-content;
}

.info-button:hover {
    background-color: #095f66;
}

.autores-list {
    list-style-type: disc;
    /* padding-left: 0.5rem; */
    /* max-width: 600px; */
    margin: 0.5rem auto 2.5rem;
    color: #4b5563;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(1rem, 2.5dvw, 1.15rem);
    line-height: 1.75;
}

.autores-list li {
    margin-bottom: 0.6rem;
}

#link-optimi {
    font-weight: bold;
    color: inherit;
    text-decoration: none;
}

#link-optimi:hover,
#link-optimi:focus,
#link-optimi:active,
#link-optimi:visited {
    color: inherit;
    text-decoration: none;
}

.text-with-image {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.text-content {
    flex: 1 1 300px;
    min-width: 280px;
}

.image-content {
    flex: 0 0 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.text-with-image {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.text-content {
    flex: 1 1 55%;
    min-width: 280px;
}

.image-content {
    flex: 1 1 40%;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-content img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}