.cta-button-alt {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--background);
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.cta-button-alt:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 159, 28, 0.3);
}

.logo-hero {
    width: 100px;
    flex: 1;
    display: flex;
    align-items: center;
}

.logo-hero img {
    height: 55px;
    cursor: pointer;
}

.info-section h1 {
    margin-bottom: 0px;
}

.hero .cta-button-alt {
    padding: 15px 25px;
}

#pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 3px;
}
#pagination button {
    font-size: 15px;
    background: transparent;
    color: white;
    border: 1px solid #febe61;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

#pagination button.active {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--background);
}

#pagination button:disabled {
    background: #5555552e;
    border: 1px solid #494949;
    color: #ccc;
    cursor: not-allowed;
}
