#titulo_jaxresume {
    margin: 20px 0; 
    text-align: center; 
}

#cards_jaxresume {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 20px; 
}

.jaxresume_home {
    background-color: #007BFF;
    color: white; 
    font-size: 18px; 
    padding: 15px 30px;
    margin: 10px 15px; 
    border: none;
    border-radius: 5px; 
    cursor: pointer; 
    transition: background-color 0.3s ease, transform 0.2s ease; 
}

.jaxresume_home:hover {
    background-color: #0056b3; 
    transform: scale(1.1); 
}

.jaxresume_home:focus {
    outline: none; 
}

.jaxresume_home a {
    text-decoration: none; 
    color: white; 
    display: block; 
    width: 100%; 
    height: 100%;
    text-align: center;
    line-height: 1.5; 
}

#container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.post {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.post-image-lista img {
    width: 150px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.post-details {
    flex-grow: 1;
    margin-left: 20px;
}

.post-details h2 {
    font-size: 22px;
    color: #333;
}

.post-details h3 {
    font-size: 18px;
    color: #555;
}

.post-details p {
    font-size: 14px;
    color: #777;
}

.post-read-more a {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
}

.post-read-more a:hover {
    background-color: #0056b3;
}

.post-read-more a:focus {
    outline: none;
}

.post-full {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.post-full h1, .post-full h3 {
    text-align: center;
    margin-bottom: 20px;
}

.post-meta {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

.post-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.post-content {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.comments {
    margin-top: 40px;
}

.comments h3 {
    font-size: 18px;
    color: #007BFF;
    margin-bottom: 20px;
}

.comment {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.comment-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.comment-details {
    flex-grow: 1;
}

.comment-details p {
    margin: 5px 0;
}

.add-comment {
    margin-top: 30px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.add-comment h3 {
    margin-bottom: 10px;
}

.add-comment label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.add-comment input, .add-comment textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.add-comment button {
    padding: 10px 15px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.add-comment button:hover {
    background-color: #0056b3;
}

