/* Botón Lee más personalizado */
.read-more-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 4.5rem; /* 72px = 3.125rem */
}

.read-more-btn {
    font-family: 'Poppins', Arial, sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border: 1px solid #008888;
    background: #008888;
    color: #fff !important;
    text-decoration: none;
    
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    position: relative;
    overflow: hidden;
}

.read-more-btn .arrow {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    margin-left: 0.5rem;
    font-size: 1.2em;
}

.read-more-btn:hover {
    background: #00a5a4;
    color: #fff !important;
}

.read-more-btn:hover .arrow {
    transform: translateX(10px);
}
